Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,169 @@
{
"name": "Ant-Man, Elusive Avenger",
"mana_cost": {
"type": "Cost",
"shards": [
"Blue",
"Red"
],
"generic": 1
},
"card_type": {
"supertypes": [
"Legendary"
],
"core_types": [
"Creature"
],
"subtypes": [
"Human",
"Rogue",
"Hero"
]
},
"power": {
"type": "Fixed",
"value": 1
},
"toughness": {
"type": "Fixed",
"value": 2
},
"loyalty": null,
"defense": null,
"oracle_text": "Ant-Man can't be blocked by creatures with greater power.\nWhenever Ant-Man deals combat damage to a player, create that many Treasure tokens.",
"non_ability_text": null,
"flavor_name": null,
"keywords": [],
"abilities": [],
"triggers": [
{
"mode": "DamageDone",
"execute": {
"kind": "Spell",
"effect": {
"type": "Token",
"name": "Treasure",
"power": {
"type": "Fixed",
"value": 0
},
"toughness": {
"type": "Fixed",
"value": 0
},
"types": [
"Artifact",
"Treasure"
],
"colors": [],
"keywords": [],
"tapped": false,
"count": {
"type": "Ref",
"qty": {
"type": "EventContextAmount"
}
},
"owner": {
"type": "Controller"
},
"enters_attacking": false
},
"cost": null,
"sub_ability": null,
"duration": null,
"description": null,
"target_prompt": null,
"condition": null,
"optional_targeting": false,
"optional": false,
"forward_result": false
},
"valid_card": null,
"origin": null,
"destination": null,
"trigger_zones": [
"Battlefield"
],
"phase": null,
"optional": false,
"damage_kind": "CombatOnly",
"secondary": false,
"valid_target": {
"type": "Player"
},
"valid_source": {
"type": "SelfRef"
},
"description": "Whenever ~ deals combat damage to a player, create that many Treasure tokens.",
"constraint": null,
"condition": null,
"batched": false
}
],
"static_abilities": [
{
"mode": {
"CantBeBlockedBy": {
"filter": {
"type": "Typed",
"type_filters": [
"Creature"
],
"controller": null,
"properties": [
{
"type": "PowerGTSource"
}
]
}
}
},
"affected": {
"type": "SelfRef"
},
"modifications": [],
"condition": null,
"affected_zone": null,
"effect_zone": null,
"active_zones": [],
"characteristic_defining": false,
"description": "~ can't be blocked by creatures with greater power."
}
],
"replacements": [],
"color_override": [
"Red",
"Blue"
],
"color_identity": [
"Red",
"Blue"
],
"scryfall_oracle_id": "f334087a-deda-4e9e-ab58-68f7e226d7ce",
"brawl_commander": true,
"is_commander": true,
"metadata": {
"related_token_ids": [
"50aae3ed-fa82-5258-9a21-31f5988f6b8f"
],
"source_printing_ids": [
"18e2b0a4-0ed3-48e6-8334-198a19e54bff",
"3a38b622-4129-4d84-908f-35c223c7c61b"
]
},
"legalities": {
"commander": "legal",
"duel": "legal",
"legacy": "legal",
"oathbreaker": "legal",
"vintage": "legal"
},
"printings": [
"MSC"
],
"rarities": [
"rare"
]
}
1 change: 1 addition & 0 deletions crates/engine/src/game/coverage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12723,6 +12723,7 @@ mod tests {
Effect::CreateDelayedTrigger {
condition: DelayedTriggerCondition::WheneverEvent {
trigger: Box::new(delayed_trigger),
expiry: crate::types::ability::WheneverEventExpiry::EndOfTurn,
},
effect: Box::new(delayed_effect),
uses_tracked_set: false,
Expand Down
Loading
Loading