Player prog

This commit is contained in:
2026-01-11 20:22:15 -06:00
parent 7defac68c4
commit 8a599a054c
6 changed files with 32 additions and 10 deletions

View File

@@ -33,4 +33,20 @@ static var MOVE_PUNCH = BattleMove.new({
"power": 15,
"accuracy": 0.95,
"moveType": MoveType.PHYSICAL
})
static var MOVE_FIRE1 = BattleMove.new({
"name": "Fire",
"power": 25,
"mpCost": 5,
"accuracy": 0.9,
"moveType": MoveType.MAGICAL
})
static var MOVE_HEAL1 = BattleMove.new({
"name": "Heal",
"power": -20,
"mpCost": 8,
"accuracy": 1.0,
"moveType": MoveType.ABILITY
})