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

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