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