1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +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

63 lines
1022 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 = {
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