1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 13:52:13 +00:00

62 lines
1007 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Shining Fates'
const card: Card = {
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