1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

69 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Centiskorch",
fr: "Scolocendre",
es: "Centiskorch",
it: "Centiskorch",
pt: "Centiskorch",
de: "Infernopod"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Fire"],
evolveFrom: {
en: "Sizzlipede",
fr: "Grillepattes",
es: "Sizzlipede",
it: "Sizzlipede",
pt: "Sizzlipede",
de: "Thermopod"
},
stage: "Stage1",
retreat: 2,
regulationMark: "E",
illustrator: "Hasuno",
description: {
en: "While its burning body is already dangerous on its own, this excessively hostile Pokémon also has large and very sharp fangs."
},
attacks: [{
cost: ["Fire", "Colorless"],
name: {
en: "Coil"
},
damage: 30,
effect: {
en: "During your next turn, this Pokémon's attacks do 90 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance)."
}
}, {
cost: ["Fire", "Fire", "Colorless"],
name: {
en: "Burning Train"
},
damage: 120
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card