Fix scraper to preserve energy types in effect text
The source website uses <span class='energy-text energy-text--type-fire'> to render inline energy icons. BeautifulSoup's get_text() was stripping these spans, losing the energy type information and causing merged text like 'Discard aEnergy' instead of 'Discard a Fire Energy'. Changes: - Add ENERGY_TEXT_TYPES mapping for inline energy references - Add replace_energy_text_spans() to convert spans to text before extraction - Add extract_effect_text() helper with proper text joining (separator=' ') - Update parse_attack(), parse_ability(), _parse_trainer_details() to use it - Fix JSON encoding in convert_cards.py to use UTF-8 (ensure_ascii=False) Before: 'Discard an Energy from this Pokémon' After: 'Discard a Fire Energy from this Pokémon' Re-scraped all 372 cards and regenerated 382 definitions.
This commit is contained in:
parent
c6e3695760
commit
adb55dec12
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"generated_at": "2026-01-27T20:34:43.561514+00:00",
|
"generated_at": "2026-01-27T21:09:09.422912+00:00",
|
||||||
"schema_version": "1.0",
|
"schema_version": "1.0",
|
||||||
"total_cards": 382,
|
"total_cards": 382,
|
||||||
"sets": {
|
"sets": {
|
||||||
@ -1016,7 +1016,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "a1-166-nidoran",
|
"id": "a1-166-nidoran",
|
||||||
"name": "Nidoran\u2640",
|
"name": "Nidoran♀",
|
||||||
"card_type": "pokemon",
|
"card_type": "pokemon",
|
||||||
"set_id": "a1"
|
"set_id": "a1"
|
||||||
},
|
},
|
||||||
@ -1034,7 +1034,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "a1-169-nidoran",
|
"id": "a1-169-nidoran",
|
||||||
"name": "Nidoran\u2642",
|
"name": "Nidoran♂",
|
||||||
"card_type": "pokemon",
|
"card_type": "pokemon",
|
||||||
"set_id": "a1"
|
"set_id": "a1"
|
||||||
},
|
},
|
||||||
@ -1208,7 +1208,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "a1-198-farfetchd",
|
"id": "a1-198-farfetchd",
|
||||||
"name": "Farfetch\u2019d",
|
"name": "Farfetch’d",
|
||||||
"card_type": "pokemon",
|
"card_type": "pokemon",
|
||||||
"set_id": "a1"
|
"set_id": "a1"
|
||||||
},
|
},
|
||||||
@ -1952,7 +1952,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "a1a-036-flabebe",
|
"id": "a1a-036-flabebe",
|
||||||
"name": "Flab\u00e9b\u00e9",
|
"name": "Flabébé",
|
||||||
"card_type": "pokemon",
|
"card_type": "pokemon",
|
||||||
"set_id": "a1a"
|
"set_id": "a1a"
|
||||||
},
|
},
|
||||||
@ -2120,7 +2120,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "a1a-064-pokemon-flute",
|
"id": "a1a-064-pokemon-flute",
|
||||||
"name": "Pok\u00e9mon Flute",
|
"name": "Pokémon Flute",
|
||||||
"card_type": "trainer",
|
"card_type": "trainer",
|
||||||
"set_id": "a1a"
|
"set_id": "a1a"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Narumi Sato",
|
"illustrator": "Narumi Sato"
|
||||||
"image_path": "pokemon/a1/001-bulbasaur.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/001-bulbasaur.webp"
|
|
||||||
}
|
}
|
||||||
@ -26,7 +26,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Kurata So",
|
"illustrator": "Kurata So"
|
||||||
"image_path": "pokemon/a1/002-ivysaur.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/002-ivysaur.webp"
|
|
||||||
}
|
}
|
||||||
@ -21,14 +21,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 80,
|
"damage": 80,
|
||||||
"damage_display": "80",
|
"damage_display": "80",
|
||||||
"effect_description": "Heal 30 damage from this Pok\u00e9mon."
|
"effect_description": "Heal 30 damage from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Ryota Murayama",
|
"illustrator": "Ryota Murayama"
|
||||||
"image_path": "pokemon/a1/003-venusaur.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/003-venusaur.webp"
|
|
||||||
}
|
}
|
||||||
@ -31,14 +31,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 100,
|
"damage": 100,
|
||||||
"damage_display": "100",
|
"damage_display": "100",
|
||||||
"effect_description": "Heal 30 damage from this Pok\u00e9mon."
|
"effect_description": "Heal 30 damage from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "PLANETA CG Works",
|
"illustrator": "PLANETA CG Works"
|
||||||
"image_path": "pokemon/a1/004-venusaur-ex.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/004-venusaur-ex.webp"
|
|
||||||
}
|
}
|
||||||
@ -16,14 +16,12 @@
|
|||||||
"colorless"
|
"colorless"
|
||||||
],
|
],
|
||||||
"damage": 0,
|
"damage": 0,
|
||||||
"effect_description": "Put 1 randomPok\u00e9mon from your deck into your hand."
|
"effect_description": "Put 1 random Grass Pokémon from your deck into your hand."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Miki Tanaka",
|
"illustrator": "Miki Tanaka"
|
||||||
"image_path": "pokemon/a1/005-caterpie.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/005-caterpie.webp"
|
|
||||||
}
|
}
|
||||||
@ -25,7 +25,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Yuka Morii",
|
"illustrator": "Yuka Morii"
|
||||||
"image_path": "pokemon/a1/006-metapod.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/006-metapod.webp"
|
|
||||||
}
|
}
|
||||||
@ -26,14 +26,12 @@
|
|||||||
{
|
{
|
||||||
"name": "Powder Heal",
|
"name": "Powder Heal",
|
||||||
"effect_id": "unimplemented",
|
"effect_id": "unimplemented",
|
||||||
"effect_description": "Once during your turn, you may heal 20 damage from each of your Pok\u00e9mon."
|
"effect_description": "Once during your turn, you may heal 20 damage from each of your Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Shin Nagasawa",
|
"illustrator": "Shin Nagasawa"
|
||||||
"image_path": "pokemon/a1/007-butterfree.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/007-butterfree.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Hajime Kusajima",
|
"illustrator": "Hajime Kusajima"
|
||||||
"image_path": "pokemon/a1/008-weedle.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/008-weedle.webp"
|
|
||||||
}
|
}
|
||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "miki kudo",
|
"illustrator": "miki kudo"
|
||||||
"image_path": "pokemon/a1/009-kakuna.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/009-kakuna.webp"
|
|
||||||
}
|
}
|
||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "You Iribi",
|
"illustrator": "You Iribi"
|
||||||
"image_path": "pokemon/a1/010-beedrill.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/010-beedrill.webp"
|
|
||||||
}
|
}
|
||||||
@ -25,7 +25,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Anesaki Dynamic",
|
"illustrator": "Anesaki Dynamic"
|
||||||
"image_path": "pokemon/a1/012-gloom.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/012-gloom.webp"
|
|
||||||
}
|
}
|
||||||
@ -20,14 +20,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 80,
|
"damage": 80,
|
||||||
"damage_display": "80",
|
"damage_display": "80",
|
||||||
"effect_description": "Your opponent\u2019s Active Pok\u00e9mon is now Asleep."
|
"effect_description": "Your opponent’s Active Pokémon is now Asleep."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Kyoko Umemoto",
|
"illustrator": "Kyoko Umemoto"
|
||||||
"image_path": "pokemon/a1/013-vileplume.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/013-vileplume.webp"
|
|
||||||
}
|
}
|
||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Naoyo Kimura",
|
"illustrator": "Naoyo Kimura"
|
||||||
"image_path": "pokemon/a1/014-paras.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/014-paras.webp"
|
|
||||||
}
|
}
|
||||||
@ -26,7 +26,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Eri Yamaki",
|
"illustrator": "Eri Yamaki"
|
||||||
"image_path": "pokemon/a1/015-parasect.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/015-parasect.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "HYOGONOSUKE",
|
"illustrator": "HYOGONOSUKE"
|
||||||
"image_path": "pokemon/a1/016-venonat.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/016-venonat.webp"
|
|
||||||
}
|
}
|
||||||
@ -18,14 +18,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 30,
|
"damage": 30,
|
||||||
"damage_display": "30",
|
"damage_display": "30",
|
||||||
"effect_description": "Your opponent\u2019s Active Pok\u00e9mon is now Poisoned."
|
"effect_description": "Your opponent’s Active Pokémon is now Poisoned."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Mina Nakai",
|
"illustrator": "Mina Nakai"
|
||||||
"image_path": "pokemon/a1/017-venomoth.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/017-venomoth.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "HYOGONOSUKE",
|
"illustrator": "HYOGONOSUKE"
|
||||||
"image_path": "pokemon/a1/018-bellsprout.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/018-bellsprout.webp"
|
|
||||||
}
|
}
|
||||||
@ -25,7 +25,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Miki Tanaka",
|
"illustrator": "Miki Tanaka"
|
||||||
"image_path": "pokemon/a1/019-weepinbell.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/019-weepinbell.webp"
|
|
||||||
}
|
}
|
||||||
@ -25,14 +25,12 @@
|
|||||||
{
|
{
|
||||||
"name": "Fragrance Trap",
|
"name": "Fragrance Trap",
|
||||||
"effect_id": "unimplemented",
|
"effect_id": "unimplemented",
|
||||||
"effect_description": "If this Pok\u00e9mon is in the Active Spot, once during your turn, you may switch in 1 of your opponent\u2019s Benched Basic Pok\u00e9mon to the Active Spot."
|
"effect_description": "If this Pokémon is in the Active Spot, once during your turn, you may switch in 1 of your opponent’s Benched Basic Pokémon to the Active Spot."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Sumiyoshi Kizuki",
|
"illustrator": "Sumiyoshi Kizuki"
|
||||||
"image_path": "pokemon/a1/020-victreebel.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/020-victreebel.webp"
|
|
||||||
}
|
}
|
||||||
@ -28,7 +28,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "PLANETA CG Works",
|
"illustrator": "PLANETA CG Works"
|
||||||
"image_path": "pokemon/a1/023-exeggutor-ex.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/023-exeggutor-ex.webp"
|
|
||||||
}
|
}
|
||||||
@ -18,7 +18,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 40,
|
"damage": 40,
|
||||||
"damage_display": "40",
|
"damage_display": "40",
|
||||||
"effect_description": "Heal 10 damage from this Pok\u00e9mon."
|
"effect_description": "Heal 10 damage from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
|
|||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Hasuno",
|
"illustrator": "Hasuno"
|
||||||
"image_path": "pokemon/a1/025-scyther.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/025-scyther.webp"
|
|
||||||
}
|
}
|
||||||
@ -28,7 +28,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Eri Yamaki",
|
"illustrator": "Eri Yamaki"
|
||||||
"image_path": "pokemon/a1/026-pinsir.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/026-pinsir.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Kanako Eo",
|
"illustrator": "Kanako Eo"
|
||||||
"image_path": "pokemon/a1/027-cottonee.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/027-cottonee.webp"
|
|
||||||
}
|
}
|
||||||
@ -17,7 +17,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 10,
|
"damage": 10,
|
||||||
"damage_display": "10",
|
"damage_display": "10",
|
||||||
"effect_description": "Heal 10 damage from this Pok\u00e9mon."
|
"effect_description": "Heal 10 damage from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
|
|||||||
@ -19,7 +19,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 50,
|
"damage": 50,
|
||||||
"damage_display": "50",
|
"damage_display": "50",
|
||||||
"effect_description": "Take an Energy from your Energy Zone and attach it to 1 of your Benched Pok\u00e9mon."
|
"effect_description": "Take a Grass Energy from your Energy Zone and attach it to 1 of your Benched Grass Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
|
|||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Naoki Saito",
|
"illustrator": "Naoki Saito"
|
||||||
"image_path": "pokemon/a1/031-skiddo.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/031-skiddo.webp"
|
|
||||||
}
|
}
|
||||||
@ -26,7 +26,5 @@
|
|||||||
"energy_type": "fire",
|
"energy_type": "fire",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "You Iribi",
|
"illustrator": "You Iribi"
|
||||||
"image_path": "pokemon/a1/032-gogoat.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/032-gogoat.webp"
|
|
||||||
}
|
}
|
||||||
@ -17,7 +17,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 30,
|
"damage": 30,
|
||||||
"damage_display": "30",
|
"damage_display": "30",
|
||||||
"effect_description": "Discard an Energy from this Pok\u00e9mon."
|
"effect_description": "Discard a Fire Energy from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
|
|||||||
@ -21,14 +21,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 150,
|
"damage": 150,
|
||||||
"damage_display": "150",
|
"damage_display": "150",
|
||||||
"effect_description": "Discard 2 Energy from this Pok\u00e9mon."
|
"effect_description": "Discard 2 Fire Energy from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "water",
|
"energy_type": "water",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "takuyoa",
|
"illustrator": "takuyoa"
|
||||||
"image_path": "pokemon/a1/035-charizard.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/035-charizard.webp"
|
|
||||||
}
|
}
|
||||||
@ -31,14 +31,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 200,
|
"damage": 200,
|
||||||
"damage_display": "200",
|
"damage_display": "200",
|
||||||
"effect_description": "Discard 2 Energy from this Pok\u00e9mon."
|
"effect_description": "Discard 2 Fire Energy from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "water",
|
"energy_type": "water",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "PLANETA Mochizuki",
|
"illustrator": "PLANETA Mochizuki"
|
||||||
"image_path": "pokemon/a1/036-charizard-ex.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/036-charizard-ex.webp"
|
|
||||||
}
|
}
|
||||||
@ -16,14 +16,12 @@
|
|||||||
"colorless"
|
"colorless"
|
||||||
],
|
],
|
||||||
"damage": 0,
|
"damage": 0,
|
||||||
"effect_description": "Flip a coin. If heads, the Defending Pok\u00e9mon can\u2019t attack during your opponent\u2019s next turn."
|
"effect_description": "Flip a coin. If heads, the Defending Pokémon can’t attack during your opponent’s next turn."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "water",
|
"energy_type": "water",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Toshinao Aoki",
|
"illustrator": "Toshinao Aoki"
|
||||||
"image_path": "pokemon/a1/037-vulpix.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/037-vulpix.webp"
|
|
||||||
}
|
}
|
||||||
@ -19,7 +19,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 90,
|
"damage": 90,
|
||||||
"damage_display": "90",
|
"damage_display": "90",
|
||||||
"effect_description": "Discard an Energy from this Pok\u00e9mon."
|
"effect_description": "Discard a Fire Energy from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
|
|||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "water",
|
"energy_type": "water",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Mizue",
|
"illustrator": "Mizue"
|
||||||
"image_path": "pokemon/a1/039-growlithe.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/039-growlithe.webp"
|
|
||||||
}
|
}
|
||||||
@ -20,14 +20,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 100,
|
"damage": 100,
|
||||||
"damage_display": "100",
|
"damage_display": "100",
|
||||||
"effect_description": "This Pok\u00e9mon also does 20 damage to itself."
|
"effect_description": "This Pokémon also does 20 damage to itself."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "water",
|
"energy_type": "water",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "kodama",
|
"illustrator": "kodama"
|
||||||
"image_path": "pokemon/a1/040-arcanine.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/040-arcanine.webp"
|
|
||||||
}
|
}
|
||||||
@ -20,14 +20,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 120,
|
"damage": 120,
|
||||||
"damage_display": "120",
|
"damage_display": "120",
|
||||||
"effect_description": "This Pok\u00e9mon also does 20 damage to itself."
|
"effect_description": "This Pokémon also does 20 damage to itself."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "water",
|
"energy_type": "water",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "PLANETA Saito",
|
"illustrator": "PLANETA Saito"
|
||||||
"image_path": "pokemon/a1/041-arcanine-ex.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/041-arcanine-ex.webp"
|
|
||||||
}
|
}
|
||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "water",
|
"energy_type": "water",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Ryuta Fuse",
|
"illustrator": "Ryuta Fuse"
|
||||||
"image_path": "pokemon/a1/044-magmar.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/044-magmar.webp"
|
|
||||||
}
|
}
|
||||||
@ -20,14 +20,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 110,
|
"damage": 110,
|
||||||
"damage_display": "110",
|
"damage_display": "110",
|
||||||
"effect_description": "Discard an Energy from this Pok\u00e9mon."
|
"effect_description": "Discard a Fire Energy from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "water",
|
"energy_type": "water",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "sui",
|
"illustrator": "sui"
|
||||||
"image_path": "pokemon/a1/045-flareon.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/045-flareon.webp"
|
|
||||||
}
|
}
|
||||||
@ -26,7 +26,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Hitoshi Ariga",
|
"illustrator": "Hitoshi Ariga"
|
||||||
"image_path": "pokemon/a1/046-moltres.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/046-moltres.webp"
|
|
||||||
}
|
}
|
||||||
@ -16,7 +16,7 @@
|
|||||||
"fire"
|
"fire"
|
||||||
],
|
],
|
||||||
"damage": 0,
|
"damage": 0,
|
||||||
"effect_description": "Flip 3 coins. Take an amount of Energy from your Energy Zone equal to the number of heads and attach it to your Benched Pok\u00e9mon in any way you like."
|
"effect_description": "Flip 3 coins. Take an amount of Fire Energy from your Energy Zone equal to the number of heads and attach it to your Benched Fire Pokémon in any way you like."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Heat Blast",
|
"name": "Heat Blast",
|
||||||
@ -33,7 +33,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "PLANETA Tsuji",
|
"illustrator": "PLANETA Tsuji"
|
||||||
"image_path": "pokemon/a1/047-moltres-ex.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/047-moltres-ex.webp"
|
|
||||||
}
|
}
|
||||||
@ -25,7 +25,5 @@
|
|||||||
"energy_type": "water",
|
"energy_type": "water",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "hatachu",
|
"illustrator": "hatachu"
|
||||||
"image_path": "pokemon/a1/050-salazzle.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/050-salazzle.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "water",
|
"energy_type": "water",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Teeziro",
|
"illustrator": "Teeziro"
|
||||||
"image_path": "pokemon/a1/051-sizzlipede.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/051-sizzlipede.webp"
|
|
||||||
}
|
}
|
||||||
@ -21,7 +21,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 130,
|
"damage": 130,
|
||||||
"damage_display": "130",
|
"damage_display": "130",
|
||||||
"effect_description": "Discard an Energy from this Pok\u00e9mon."
|
"effect_description": "Discard a Fire Energy from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
|
|||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Mizue",
|
"illustrator": "Mizue"
|
||||||
"image_path": "pokemon/a1/053-squirtle.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/053-squirtle.webp"
|
|
||||||
}
|
}
|
||||||
@ -25,7 +25,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Nelnal",
|
"illustrator": "Nelnal"
|
||||||
"image_path": "pokemon/a1/054-wartortle.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/054-wartortle.webp"
|
|
||||||
}
|
}
|
||||||
@ -20,7 +20,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 80,
|
"damage": 80,
|
||||||
"damage_display": "80x",
|
"damage_display": "80x",
|
||||||
"effect_description": "If this Pok\u00e9mon has at least 2 extra Energy attached, this attack does 60 more damage.",
|
"effect_description": "If this Pokémon has at least 2 extra Water Energy attached, this attack does 60 more damage.",
|
||||||
"effect_params": {
|
"effect_params": {
|
||||||
"damage_modifier": "x"
|
"damage_modifier": "x"
|
||||||
}
|
}
|
||||||
@ -30,7 +30,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Nurikabe",
|
"illustrator": "Nurikabe"
|
||||||
"image_path": "pokemon/a1/055-blastoise.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/055-blastoise.webp"
|
|
||||||
}
|
}
|
||||||
@ -29,7 +29,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 100,
|
"damage": 100,
|
||||||
"damage_display": "100x",
|
"damage_display": "100x",
|
||||||
"effect_description": "If this Pok\u00e9mon has at least 2 extra Energy attached, this attack does 60 more damage.",
|
"effect_description": "If this Pokémon has at least 2 extra Water Energy attached, this attack does 60 more damage.",
|
||||||
"effect_params": {
|
"effect_params": {
|
||||||
"damage_modifier": "x"
|
"damage_modifier": "x"
|
||||||
}
|
}
|
||||||
@ -39,7 +39,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "PLANETA Tsuji",
|
"illustrator": "PLANETA Tsuji"
|
||||||
"image_path": "pokemon/a1/056-blastoise-ex.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/056-blastoise-ex.webp"
|
|
||||||
}
|
}
|
||||||
@ -17,14 +17,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 10,
|
"damage": 10,
|
||||||
"damage_display": "10",
|
"damage_display": "10",
|
||||||
"effect_description": "Your opponent can\u2019t use any Supporter cards from their hand during their next turn."
|
"effect_description": "Your opponent can’t use any Supporter cards from their hand during their next turn."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Shibuzoh.",
|
"illustrator": "Shibuzoh."
|
||||||
"image_path": "pokemon/a1/057-psyduck.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/057-psyduck.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Shibuzoh.",
|
"illustrator": "Shibuzoh."
|
||||||
"image_path": "pokemon/a1/059-poliwag.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/059-poliwag.webp"
|
|
||||||
}
|
}
|
||||||
@ -25,7 +25,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Yuka Morii",
|
"illustrator": "Yuka Morii"
|
||||||
"image_path": "pokemon/a1/060-poliwhirl.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/060-poliwhirl.webp"
|
|
||||||
}
|
}
|
||||||
@ -26,14 +26,12 @@
|
|||||||
{
|
{
|
||||||
"name": "Counterattack",
|
"name": "Counterattack",
|
||||||
"effect_id": "unimplemented",
|
"effect_id": "unimplemented",
|
||||||
"effect_description": "If this Pok\u00e9mon is in the Active Spot and is damaged by an attack from your opponent\u2019s Pok\u00e9mon, do 20 damage to the Attacking Pok\u00e9mon."
|
"effect_description": "If this Pokémon is in the Active Spot and is damaged by an attack from your opponent’s Pokémon, do 20 damage to the Attacking Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Akira Komayama",
|
"illustrator": "Akira Komayama"
|
||||||
"image_path": "pokemon/a1/061-poliwrath.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/061-poliwrath.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Shinya Komatsu",
|
"illustrator": "Shinya Komatsu"
|
||||||
"image_path": "pokemon/a1/062-tentacool.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/062-tentacool.webp"
|
|
||||||
}
|
}
|
||||||
@ -19,14 +19,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 50,
|
"damage": 50,
|
||||||
"damage_display": "50",
|
"damage_display": "50",
|
||||||
"effect_description": "Your opponent\u2019s Active Pok\u00e9mon is now Poisoned."
|
"effect_description": "Your opponent’s Active Pokémon is now Poisoned."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "kodama",
|
"illustrator": "kodama"
|
||||||
"image_path": "pokemon/a1/063-tentacruel.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/063-tentacruel.webp"
|
|
||||||
}
|
}
|
||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Masako Yamashita",
|
"illustrator": "Masako Yamashita"
|
||||||
"image_path": "pokemon/a1/064-seel.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/064-seel.webp"
|
|
||||||
}
|
}
|
||||||
@ -26,7 +26,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Kanako Eo",
|
"illustrator": "Kanako Eo"
|
||||||
"image_path": "pokemon/a1/065-dewgong.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/065-dewgong.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Sumiyoshi Kizuki",
|
"illustrator": "Sumiyoshi Kizuki"
|
||||||
"image_path": "pokemon/a1/066-shellder.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/066-shellder.webp"
|
|
||||||
}
|
}
|
||||||
@ -26,14 +26,12 @@
|
|||||||
{
|
{
|
||||||
"name": "Shell Armor",
|
"name": "Shell Armor",
|
||||||
"effect_id": "unimplemented",
|
"effect_id": "unimplemented",
|
||||||
"effect_description": "This Pok\u00e9mon takes \u221210 damage from attacks."
|
"effect_description": "This Pokémon takes −10 damage from attacks."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Saya Tsuruta",
|
"illustrator": "Saya Tsuruta"
|
||||||
"image_path": "pokemon/a1/067-cloyster.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/067-cloyster.webp"
|
|
||||||
}
|
}
|
||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Tomokazu Komiya",
|
"illustrator": "Tomokazu Komiya"
|
||||||
"image_path": "pokemon/a1/068-krabby.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/068-krabby.webp"
|
|
||||||
}
|
}
|
||||||
@ -30,7 +30,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Shigenori Negishi",
|
"illustrator": "Shigenori Negishi"
|
||||||
"image_path": "pokemon/a1/069-kingler.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/069-kingler.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Saya Tsuruta",
|
"illustrator": "Saya Tsuruta"
|
||||||
"image_path": "pokemon/a1/070-horsea.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/070-horsea.webp"
|
|
||||||
}
|
}
|
||||||
@ -19,14 +19,12 @@
|
|||||||
"water"
|
"water"
|
||||||
],
|
],
|
||||||
"damage": 0,
|
"damage": 0,
|
||||||
"effect_description": "This attack does 50 damage to 1 of your opponent\u2019s Pok\u00e9mon."
|
"effect_description": "This attack does 50 damage to 1 of your opponent’s Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Sanosuke Sakuma",
|
"illustrator": "Sanosuke Sakuma"
|
||||||
"image_path": "pokemon/a1/071-seadra.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/071-seadra.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Kyoko Umemoto",
|
"illustrator": "Kyoko Umemoto"
|
||||||
"image_path": "pokemon/a1/072-goldeen.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/072-goldeen.webp"
|
|
||||||
}
|
}
|
||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Yukiko Baba",
|
"illustrator": "Yukiko Baba"
|
||||||
"image_path": "pokemon/a1/075-starmie.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/075-starmie.webp"
|
|
||||||
}
|
}
|
||||||
@ -21,14 +21,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 100,
|
"damage": 100,
|
||||||
"damage_display": "100",
|
"damage_display": "100",
|
||||||
"effect_description": "Discard a random Energy from your opponent\u2019s Active Pok\u00e9mon."
|
"effect_description": "Discard a random Energy from your opponent’s Active Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Mitsuhiro Arita",
|
"illustrator": "Mitsuhiro Arita"
|
||||||
"image_path": "pokemon/a1/078-gyarados.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/078-gyarados.webp"
|
|
||||||
}
|
}
|
||||||
@ -17,7 +17,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 20,
|
"damage": 20,
|
||||||
"damage_display": "20x",
|
"damage_display": "20x",
|
||||||
"effect_description": "If this Pok\u00e9mon has at least 3 extra Energy attached, this attack does 70 more damage.",
|
"effect_description": "If this Pokémon has at least 3 extra Water Energy attached, this attack does 70 more damage.",
|
||||||
"effect_params": {
|
"effect_params": {
|
||||||
"damage_modifier": "x"
|
"damage_modifier": "x"
|
||||||
}
|
}
|
||||||
@ -27,7 +27,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Sekio",
|
"illustrator": "Sekio"
|
||||||
"image_path": "pokemon/a1/079-lapras.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/079-lapras.webp"
|
|
||||||
}
|
}
|
||||||
@ -20,14 +20,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 60,
|
"damage": 60,
|
||||||
"damage_display": "60",
|
"damage_display": "60",
|
||||||
"effect_description": "Heal 30 damage from this Pok\u00e9mon."
|
"effect_description": "Heal 30 damage from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Kagemaru Himeno",
|
"illustrator": "Kagemaru Himeno"
|
||||||
"image_path": "pokemon/a1/080-vaporeon.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/080-vaporeon.webp"
|
|
||||||
}
|
}
|
||||||
@ -20,14 +20,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 70,
|
"damage": 70,
|
||||||
"damage_display": "70",
|
"damage_display": "70",
|
||||||
"effect_description": "During your opponent\u2019s next turn, the Defending Pok\u00e9mon can\u2019t attack."
|
"effect_description": "During your opponent’s next turn, the Defending Pokémon can’t attack."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "kirisAki",
|
"illustrator": "kirisAki"
|
||||||
"image_path": "pokemon/a1/082-omastar.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/082-omastar.webp"
|
|
||||||
}
|
}
|
||||||
@ -19,14 +19,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 60,
|
"damage": 60,
|
||||||
"damage_display": "60",
|
"damage_display": "60",
|
||||||
"effect_description": "Flip a coin. If heads, your opponent\u2019s Active Pok\u00e9mon is now Paralyzed."
|
"effect_description": "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Hitoshi Ariga",
|
"illustrator": "Hitoshi Ariga"
|
||||||
"image_path": "pokemon/a1/083-articuno.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/083-articuno.webp"
|
|
||||||
}
|
}
|
||||||
@ -28,14 +28,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 80,
|
"damage": 80,
|
||||||
"damage_display": "80",
|
"damage_display": "80",
|
||||||
"effect_description": "This attack also does 10 damage to each of your opponent\u2019s Benched Pok\u00e9mon."
|
"effect_description": "This attack also does 10 damage to each of your opponent’s Benched Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "PLANETA Saito",
|
"illustrator": "PLANETA Saito"
|
||||||
"image_path": "pokemon/a1/084-articuno-ex.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/084-articuno-ex.webp"
|
|
||||||
}
|
}
|
||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Yumi",
|
"illustrator": "Yumi"
|
||||||
"image_path": "pokemon/a1/085-ducklett.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/085-ducklett.webp"
|
|
||||||
}
|
}
|
||||||
@ -26,7 +26,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "sui",
|
"illustrator": "sui"
|
||||||
"image_path": "pokemon/a1/086-swanna.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/086-swanna.webp"
|
|
||||||
}
|
}
|
||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Akira Komayama",
|
"illustrator": "Akira Komayama"
|
||||||
"image_path": "pokemon/a1/088-frogadier.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/088-frogadier.webp"
|
|
||||||
}
|
}
|
||||||
@ -25,14 +25,12 @@
|
|||||||
{
|
{
|
||||||
"name": "Water Shuriken",
|
"name": "Water Shuriken",
|
||||||
"effect_id": "unimplemented",
|
"effect_id": "unimplemented",
|
||||||
"effect_description": "Once during your turn, you may do 20 damage to 1 of your opponent\u2019s Pok\u00e9mon."
|
"effect_description": "Once during your turn, you may do 20 damage to 1 of your opponent’s Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "5ban Graphics",
|
"illustrator": "5ban Graphics"
|
||||||
"image_path": "pokemon/a1/089-greninja.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/089-greninja.webp"
|
|
||||||
}
|
}
|
||||||
@ -18,7 +18,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 10,
|
"damage": 10,
|
||||||
"damage_display": "10x",
|
"damage_display": "10x",
|
||||||
"effect_description": "If your opponent\u2019s Active Pok\u00e9mon has damage on it, this attack does 60 more damage.",
|
"effect_description": "If your opponent’s Active Pokémon has damage on it, this attack does 60 more damage.",
|
||||||
"effect_params": {
|
"effect_params": {
|
||||||
"damage_modifier": "x"
|
"damage_modifier": "x"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "metal",
|
"energy_type": "metal",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "ryoma uratsuka",
|
"illustrator": "ryoma uratsuka"
|
||||||
"image_path": "pokemon/a1/092-snom.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/092-snom.webp"
|
|
||||||
}
|
}
|
||||||
@ -19,14 +19,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 40,
|
"damage": 40,
|
||||||
"damage_display": "40",
|
"damage_display": "40",
|
||||||
"effect_description": "Your opponent\u2019s Active Pok\u00e9mon is now Asleep."
|
"effect_description": "Your opponent’s Active Pokémon is now Asleep."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "metal",
|
"energy_type": "metal",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "aoki",
|
"illustrator": "aoki"
|
||||||
"image_path": "pokemon/a1/093-frosmoth.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/093-frosmoth.webp"
|
|
||||||
}
|
}
|
||||||
@ -20,14 +20,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 140,
|
"damage": 140,
|
||||||
"damage_display": "140",
|
"damage_display": "140",
|
||||||
"effect_description": "Discard all Energy from this Pok\u00e9mon."
|
"effect_description": "Discard all Energy from this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "fighting",
|
"energy_type": "fighting",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "AKIRA EGAWA",
|
"illustrator": "AKIRA EGAWA"
|
||||||
"image_path": "pokemon/a1/095-raichu.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/095-raichu.webp"
|
|
||||||
}
|
}
|
||||||
@ -18,7 +18,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 30,
|
"damage": 30,
|
||||||
"damage_display": "30+",
|
"damage_display": "30+",
|
||||||
"effect_description": "This attack does 30 damage for each of your Benched Pok\u00e9mon.",
|
"effect_description": "This attack does 30 damage for each of your Benched Lightning Pokémon.",
|
||||||
"effect_params": {
|
"effect_params": {
|
||||||
"damage_modifier": "+"
|
"damage_modifier": "+"
|
||||||
}
|
}
|
||||||
@ -28,7 +28,5 @@
|
|||||||
"energy_type": "fighting",
|
"energy_type": "fighting",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "PLANETA CG Works",
|
"illustrator": "PLANETA CG Works"
|
||||||
"image_path": "pokemon/a1/096-pikachu-ex.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/096-pikachu-ex.webp"
|
|
||||||
}
|
}
|
||||||
@ -27,14 +27,12 @@
|
|||||||
{
|
{
|
||||||
"name": "Volt Charge",
|
"name": "Volt Charge",
|
||||||
"effect_id": "unimplemented",
|
"effect_id": "unimplemented",
|
||||||
"effect_description": "Once during your turn, you may take an Energy from your Energy Zone and attach it to this Pok\u00e9mon."
|
"effect_description": "Once during your turn, you may take a Lightning Energy from your Energy Zone and attach it to this Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "fighting",
|
"energy_type": "fighting",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "kirisAki",
|
"illustrator": "kirisAki"
|
||||||
"image_path": "pokemon/a1/098-magneton.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/098-magneton.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "fighting",
|
"energy_type": "fighting",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "SATOSHI NAKAI",
|
"illustrator": "SATOSHI NAKAI"
|
||||||
"image_path": "pokemon/a1/099-voltorb.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/099-voltorb.webp"
|
|
||||||
}
|
}
|
||||||
@ -25,7 +25,5 @@
|
|||||||
"energy_type": "fighting",
|
"energy_type": "fighting",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Asako Ito",
|
"illustrator": "Asako Ito"
|
||||||
"image_path": "pokemon/a1/100-electrode.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/100-electrode.webp"
|
|
||||||
}
|
}
|
||||||
@ -18,7 +18,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 40,
|
"damage": 40,
|
||||||
"damage_display": "40x",
|
"damage_display": "40x",
|
||||||
"effect_description": "Flip a coin. If heads, this attack does 40 more damage. If tails, this Pok\u00e9mon also does 20 damage to itself.",
|
"effect_description": "Flip a coin. If heads, this attack does 40 more damage. If tails, this Pokémon also does 20 damage to itself.",
|
||||||
"effect_params": {
|
"effect_params": {
|
||||||
"damage_modifier": "x"
|
"damage_modifier": "x"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,7 +29,5 @@
|
|||||||
"energy_type": "fighting",
|
"energy_type": "fighting",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Kouki Saitou",
|
"illustrator": "Kouki Saitou"
|
||||||
"image_path": "pokemon/a1/102-jolteon.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/102-jolteon.webp"
|
|
||||||
}
|
}
|
||||||
@ -19,14 +19,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 100,
|
"damage": 100,
|
||||||
"damage_display": "100",
|
"damage_display": "100",
|
||||||
"effect_description": "This attack also does 30 damage to 1 of your Benched Pok\u00e9mon."
|
"effect_description": "This attack also does 30 damage to 1 of your Benched Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Hitoshi Ariga",
|
"illustrator": "Hitoshi Ariga"
|
||||||
"image_path": "pokemon/a1/103-zapdos.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/103-zapdos.webp"
|
|
||||||
}
|
}
|
||||||
@ -37,7 +37,5 @@
|
|||||||
"energy_type": "lightning",
|
"energy_type": "lightning",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "PLANETA CG Works",
|
"illustrator": "PLANETA CG Works"
|
||||||
"image_path": "pokemon/a1/104-zapdos-ex.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/104-zapdos-ex.webp"
|
|
||||||
}
|
}
|
||||||
@ -17,14 +17,12 @@
|
|||||||
"lightning"
|
"lightning"
|
||||||
],
|
],
|
||||||
"damage": 0,
|
"damage": 0,
|
||||||
"effect_description": "This attack does 30 damage to 1 of your opponent\u2019s Pok\u00e9mon."
|
"effect_description": "This attack does 30 damage to 1 of your opponent’s Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "fighting",
|
"energy_type": "fighting",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Misa Tsutsui",
|
"illustrator": "Misa Tsutsui"
|
||||||
"image_path": "pokemon/a1/106-zebstrika.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/106-zebstrika.webp"
|
|
||||||
}
|
}
|
||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "fighting",
|
"energy_type": "fighting",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Asako Ito",
|
"illustrator": "Asako Ito"
|
||||||
"image_path": "pokemon/a1/107-tynamo.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/107-tynamo.webp"
|
|
||||||
}
|
}
|
||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "fighting",
|
"energy_type": "fighting",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Midori Harada",
|
"illustrator": "Midori Harada"
|
||||||
"image_path": "pokemon/a1/108-eelektrik.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/108-eelektrik.webp"
|
|
||||||
}
|
}
|
||||||
@ -20,14 +20,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 80,
|
"damage": 80,
|
||||||
"damage_display": "80",
|
"damage_display": "80",
|
||||||
"effect_description": "Flip a coin. If heads, your opponent\u2019s Active Pok\u00e9mon is now Paralyzed."
|
"effect_description": "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "fighting",
|
"energy_type": "fighting",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "hatachu",
|
"illustrator": "hatachu"
|
||||||
"image_path": "pokemon/a1/109-eelektross.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/109-eelektross.webp"
|
|
||||||
}
|
}
|
||||||
@ -18,7 +18,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 30,
|
"damage": 30,
|
||||||
"damage_display": "30",
|
"damage_display": "30",
|
||||||
"effect_description": "Flip a coin. If heads, your opponent\u2019s Active Pok\u00e9mon is now Paralyzed."
|
"effect_description": "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
|
|||||||
@ -23,7 +23,5 @@
|
|||||||
"energy_type": "metal",
|
"energy_type": "metal",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "kirisAki",
|
"illustrator": "kirisAki"
|
||||||
"image_path": "pokemon/a1/113-clefairy.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/113-clefairy.webp"
|
|
||||||
}
|
}
|
||||||
@ -24,7 +24,5 @@
|
|||||||
"energy_type": "metal",
|
"energy_type": "metal",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Sanosuke Sakuma",
|
"illustrator": "Sanosuke Sakuma"
|
||||||
"image_path": "pokemon/a1/114-clefable.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/114-clefable.webp"
|
|
||||||
}
|
}
|
||||||
@ -16,14 +16,12 @@
|
|||||||
"colorless"
|
"colorless"
|
||||||
],
|
],
|
||||||
"damage": 0,
|
"damage": 0,
|
||||||
"effect_description": "Switch this Pok\u00e9mon with 1 of your Benched Pok\u00e9mon."
|
"effect_description": "Switch this Pokémon with 1 of your Benched Pokémon."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "darkness",
|
"energy_type": "darkness",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Aya Kusube",
|
"illustrator": "Aya Kusube"
|
||||||
"image_path": "pokemon/a1/115-abra.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/115-abra.webp"
|
|
||||||
}
|
}
|
||||||
@ -20,7 +20,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 60,
|
"damage": 60,
|
||||||
"damage_display": "60x",
|
"damage_display": "60x",
|
||||||
"effect_description": "This attack does 30 more damage for each Energy attached to your opponent\u2019s Active Pok\u00e9mon.",
|
"effect_description": "This attack does 30 more damage for each Energy attached to your opponent’s Active Pokémon.",
|
||||||
"effect_params": {
|
"effect_params": {
|
||||||
"damage_modifier": "x"
|
"damage_modifier": "x"
|
||||||
}
|
}
|
||||||
@ -30,7 +30,5 @@
|
|||||||
"energy_type": "darkness",
|
"energy_type": "darkness",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Kouki Saitou",
|
"illustrator": "Kouki Saitou"
|
||||||
"image_path": "pokemon/a1/117-alakazam.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/117-alakazam.webp"
|
|
||||||
}
|
}
|
||||||
@ -18,14 +18,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 50,
|
"damage": 50,
|
||||||
"damage_display": "50",
|
"damage_display": "50",
|
||||||
"effect_description": "Your opponent can\u2019t use any Supporter cards from their hand during their next turn."
|
"effect_description": "Your opponent can’t use any Supporter cards from their hand during their next turn."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "darkness",
|
"energy_type": "darkness",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Naoyo Kimura",
|
"illustrator": "Naoyo Kimura"
|
||||||
"image_path": "pokemon/a1/122-gengar.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/122-gengar.webp"
|
|
||||||
}
|
}
|
||||||
@ -26,14 +26,12 @@
|
|||||||
{
|
{
|
||||||
"name": "Shadowy Spellbind",
|
"name": "Shadowy Spellbind",
|
||||||
"effect_id": "unimplemented",
|
"effect_id": "unimplemented",
|
||||||
"effect_description": "As long as this Pok\u00e9mon is in the Active Spot, your opponent can\u2019t use any Supporter cards from their hand."
|
"effect_description": "As long as this Pokémon is in the Active Spot, your opponent can’t use any Supporter cards from their hand."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "darkness",
|
"energy_type": "darkness",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "PLANETA CG Works",
|
"illustrator": "PLANETA CG Works"
|
||||||
"image_path": "pokemon/a1/123-gengar-ex.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/123-gengar-ex.webp"
|
|
||||||
}
|
}
|
||||||
@ -26,14 +26,12 @@
|
|||||||
{
|
{
|
||||||
"name": "Sleep Pendulum",
|
"name": "Sleep Pendulum",
|
||||||
"effect_id": "unimplemented",
|
"effect_id": "unimplemented",
|
||||||
"effect_description": "Once during your turn, you may flip a coin. If heads, your opponent\u2019s Active Pok\u00e9mon is now Asleep."
|
"effect_description": "Once during your turn, you may flip a coin. If heads, your opponent’s Active Pokémon is now Asleep."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "darkness",
|
"energy_type": "darkness",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Shigenori Negishi",
|
"illustrator": "Shigenori Negishi"
|
||||||
"image_path": "pokemon/a1/125-hypno.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/125-hypno.webp"
|
|
||||||
}
|
}
|
||||||
@ -18,14 +18,12 @@
|
|||||||
],
|
],
|
||||||
"damage": 30,
|
"damage": 30,
|
||||||
"damage_display": "30",
|
"damage_display": "30",
|
||||||
"effect_description": "During your opponent\u2019s next turn, this Pok\u00e9mon takes \u221220 damage from attacks."
|
"effect_description": "During your opponent’s next turn, this Pokémon takes −20 damage from attacks."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"weakness": {
|
"weakness": {
|
||||||
"energy_type": "darkness",
|
"energy_type": "darkness",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Kagemaru Himeno",
|
"illustrator": "Kagemaru Himeno"
|
||||||
"image_path": "pokemon/a1/126-mr-mime.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/126-mr-mime.webp"
|
|
||||||
}
|
}
|
||||||
@ -18,7 +18,7 @@
|
|||||||
],
|
],
|
||||||
"damage": 30,
|
"damage": 30,
|
||||||
"damage_display": "30x",
|
"damage_display": "30x",
|
||||||
"effect_description": "This attack does 20 more damage for each Energy attached to your opponent\u2019s Active Pok\u00e9mon.",
|
"effect_description": "This attack does 20 more damage for each Energy attached to your opponent’s Active Pokémon.",
|
||||||
"effect_params": {
|
"effect_params": {
|
||||||
"damage_modifier": "x"
|
"damage_modifier": "x"
|
||||||
}
|
}
|
||||||
@ -28,7 +28,5 @@
|
|||||||
"energy_type": "darkness",
|
"energy_type": "darkness",
|
||||||
"value": 20
|
"value": 20
|
||||||
},
|
},
|
||||||
"illustrator": "Oswaldo KATO",
|
"illustrator": "Oswaldo KATO"
|
||||||
"image_path": "pokemon/a1/127-jynx.webp",
|
|
||||||
"image_url": "https://cdn.mantimon.com/cards/pokemon/a1/127-jynx.webp"
|
|
||||||
}
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user