aboutsummaryrefslogtreecommitdiff
path: root/webAO/dom/redHPD.ts
blob: d2e7b3aabaef0928a04fefce68b6b4f1eb34d6fc (plain)
1
2
3
4
5
6
7
8
9
import { client } from "../client";

/**
 * Decrement defense health point.
 */
export function redHPD() {
  client.sender.sendHP(1, client.hp[0] - 1);
}
window.redHPD = redHPD;