mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
69
data/Sword & Shield/Fusion Strike/35.ts
Normal file
69
data/Sword & Shield/Fusion Strike/35.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Magcargo",
|
||||
fr: "Volcaropod",
|
||||
es: "Magcargo",
|
||||
it: "Magcargo",
|
||||
pt: "Magcargo",
|
||||
de: "Magcargo"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Slugma",
|
||||
fr: "Limagma",
|
||||
es: "Slugma",
|
||||
it: "Slugma",
|
||||
pt: "Slugma",
|
||||
de: "Schneckmag"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 3,
|
||||
regulationMark: "E",
|
||||
illustrator: "Eri Yamaki",
|
||||
|
||||
description: {
|
||||
en: "Its body is as hot as lava and is always billowing. Flames will occasionally burst from its shell."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rock Throw"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Body Splash"
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
|
||||
effect: {
|
||||
en: "Flip 3 coins. For each tails, discard an Energy from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user