Sabnock
The Pestilence
Unit #003
| HP | PWR | CP | Speed | Range | Tier |
|---|---|---|---|---|---|
| 15 (+9) | 2 | 4 (+3) | Fast | Any | B |
Abilities
Pink Haze — 1 AP
g: Pink Haze: 1 AP - a: e: Target Demon has -3k and -2n.
Engine Implementation
def _sabnock_pink_haze(state: GameState, demon: DemonInstance, targets, choices, rng) -> GameState:
"""#003 Sabnock — Pink Haze
Quick, 1 AP, (exhaust): Status: Target Demon has -3 PWR and -2 DEF.
Status expires end of current main phase.
Targets: [target_demon]
"""
target = targets[0]
state = apply_status(state, demon, target, "pwr", -3)
state = apply_status(state, demon, target, "def", -2)
return state
register_ability("003", 0, _sabnock_pink_haze)