1 2 3 4 5 6 7 8 9
import { client } from "../client"; /** * Increment defense health point. */ export function addHPD() { client.sendHP(1, client.hp[0] + 1); } window.addHPD = addHPD;