Skip to content

Commit

Permalink
update health
Browse files Browse the repository at this point in the history
  • Loading branch information
dpinones committed Oct 31, 2024
1 parent a2c160e commit f3d4d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/level.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fn create_beast_level(world: IWorldDispatcher, ref store: Store, game: Game) {
let game_mode_beast = GameModeBeast { game_id: game.id, cost_discard: 2, cost_play: 1, energy_max_player: 3 };
GameModeBeastStore::set(@game_mode_beast, world);

let beast = Beast { game_id: game.id, tier: 5, level: 5, health: 100, attack: 15 };
let beast = Beast { game_id: game.id, tier: 5, level: 5, health: 1000, attack: 15 };
BeastStore::set(@beast, world);

let player_beast = PlayerBeast { game_id: game.id, health: 100, energy: game_mode_beast.energy_max_player };
Expand Down

0 comments on commit f3d4d8d

Please sign in to comment.