mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
65
data/Sword & Shield/Fusion Strike/49.ts
Normal file
65
data/Sword & Shield/Fusion Strike/49.ts
Normal file
@ -0,0 +1,65 @@
|
||||
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: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Sizzlipede",
|
||||
fr: "Grillepattes",
|
||||
es: "Sizzlipede",
|
||||
it: "Sizzlipede",
|
||||
pt: "Sizzlipede",
|
||||
de: "Thermopod"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 3,
|
||||
regulationMark: "E",
|
||||
illustrator: "Misa Tsutsui",
|
||||
|
||||
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"],
|
||||
|
||||
name: {
|
||||
en: "Steady Firebreathing"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Heat Blast"
|
||||
},
|
||||
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user