1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

70 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [851],
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