blob: c7adbbf59a31416fc958858471d5b0873cd2b9b3 (
plain)
1
2
3
4
5
6
7
8
9
|
import { client } from "../client";
/**
* Decrement prosecution health point.
*/
export function redHPP() {
client.sender.sendHP(2, client.hp[1] - 1);
}
window.redHPP = redHPP;
|