mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
63 lines
1022 B
TypeScript
63 lines
1022 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
dexId: [850],
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Grillepattes",
|
||
en: "Sizzlipede",
|
||
es: "Sizzlipede",
|
||
it: "Sizzlipede",
|
||
pt: "Sizzlipede",
|
||
de: "Thermopod"
|
||
},
|
||
|
||
illustrator: "Shigenori Negishi",
|
||
rarity: "Shiny rare",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Fire"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Morsure",
|
||
en: "Bite",
|
||
es: "Mordisco",
|
||
it: "Morso",
|
||
pt: "Mordida",
|
||
de: "Biss"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
fr: "Fournaise",
|
||
en: "Combustion",
|
||
es: "Combustión",
|
||
it: "Fuoco Continuo",
|
||
pt: "Combustão",
|
||
de: "Glühen"
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Fire", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Water",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "It stores flammable gas in its body and uses it to generate heat. The yellow sections on its belly get particularly hot."
|
||
}
|
||
}
|
||
|
||
export default card |