mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
79 lines
930 B
TypeScript
79 lines
930 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Cosmic Eclipse'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Tepig",
|
||
fr: "Gruikui",
|
||
es: "Tepig",
|
||
it: "Tepig",
|
||
pt: "Tepig",
|
||
de: "Floink"
|
||
},
|
||
illustrator: "Mina Nakai",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
498,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
],
|
||
name: {
|
||
en: "Live Coal",
|
||
fr: "Charbon Mutant",
|
||
es: "Carbón Activado",
|
||
it: "Carboni Ardenti",
|
||
pt: "Carvão Vivo",
|
||
de: "Glühende Kohlen"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Rollout",
|
||
fr: "Roulade",
|
||
es: "Desenrollar",
|
||
it: "Rotolamento",
|
||
pt: "Rolagem",
|
||
de: "Walzer"
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|