Skip to main content

✅ Gomita bribe triggers valefar passive

CategoryInteraction
StatusPassing
Testtests/test_abilities_actions.py::test_gomita_bribe_triggers_valefar_passive

Gomita Bribe triggers Valefar's passive when P1 gains the Time Token.

Preconditions

  • P1 Main Phase, P1 has 3 AP

  • Lane 0: P1's Gomita (#035) — READIED

  • Lane 1: P1's Valefar (#007) — READIED

  • P2 has Time Token, P1 does not

  • Valefar passive: "When you gain the Time Token, also gain 1 AP"

Action

  1. Gomita uses Bribe (1 AP): P2 gains 1 AP, P1 takes Time Token

  2. Valefar passive fires: P1 gains 1 AP

Expected Postconditions

  • P1 AP = 3 (3 - 1 Bribe cost + 1 Valefar passive = 3)

  • P1 has Time Token

Assertions

assert state_after.players[Side.PLAYER_1].has_time_token == True
assert state_after.players[Side.PLAYER_1].ap == 3