UNPKG

warriors-of-wrath

Version:

Warriors Of Wrath is a text-based fighting game where you can fight against a computer in single-player or someone else at your computer in local two-player.

9 lines (7 loc) 242 B
function StamValue(guard, totalGuard, basicAttack, heavyAttack) { this.guard = guard; this.totalGuard = totalGuard; this.basicAttack = basicAttack; this.heavyAttack = heavyAttack; } export const values = new StamValue(5, 8, 15, 30);