mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
87 lines
1.2 KiB
TypeScript
87 lines
1.2 KiB
TypeScript
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
|