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