Skip to main content

✅ Naberius reckless charge deals fixed damage to self and moves

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_naberius_reckless_charge_deals_fixed_damage_to_self_and_moves

Naberius uses Reckless Charge — takes 3 Fixed Damage, moves to lane 2.

Preconditions

  • P1 Main Phase, P1 has 5 AP

  • Lane 0: P1's Naberius (#033) — HP=12, 0 damage, READIED

Action

  • Execute Naberius's Reckless Charge (ability[1], Quick, 0 AP, 1x)
result = execute_ability(
state, naberius_on_field, ability_idx=1, targets=None, choices={"lane": 2}
)
naberius_after = next(d for d in result.demons if d.unit_id == "033")

Expected Postconditions

  • Naberius: 3 Fixed Damage taken (damage=3)

  • Naberius: moved to lane 2

  • Naberius: NOT exhausted (ability has no exhaust cost)

  • P1 AP: 5 (0 AP cost — unchanged)

Assertions

assert naberius_after.damage == 3
assert naberius_after.lane == 2
assert result.players[Side.PLAYER_1].ap == 5