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

87 lines
1.2 KiB
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 '../Champion\'s Path'
const card: Card = {
dexId: [850],
name: {
en: "Sizzlipede",
fr: "Grillepattes",
es: "Sizzlipede",
it: "Sizzlipede",
pt: "Sizzlipede",
de: "Thermopod"
},
illustrator: "Akira Komayama",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 70,
types: [
"Fire",
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
es: "Mordisco",
it: "Morso",
pt: "Mordida",
de: "Biss"
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Combustion",
fr: "Fournaise",
es: "Combustión",
it: "Fuoco Continuo",
pt: "Combustão",
de: "Glühen"
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
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