Files
seagull-game/pak/static/js/seagull-cheats.mjs

13 lines
511 B
JavaScript
Raw Normal View History

2025-10-05 11:11:54 -07:00
export function cheat_resources() {
hnd_direction = document.querySelector("#dev-resource-direction");
hnd_restype = document.querySelector("#dev-resource-type");
hnd_amount = document.querySelector("#dev-resource-amount");
if (!isEmpty(hnd_amount.value)) {
if (hnd_direction == "+") {
gamestate[hnd_restype.value] += Number(hnd_amount.value);
} else if (hnd_direction == "-") {
gamestate[hnd_restype.value] -= Number(hnd_amount.value);
}
}
}