mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
59 lines
855 B
TypeScript
59 lines
855 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
dexId: [246],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Embrylex",
|
|
en: "Larvitar",
|
|
es: "Larvitar",
|
|
it: "Larvitar",
|
|
pt: "Larvitar",
|
|
de: "Larvitar"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting"],
|
|
|
|
name: {
|
|
fr: "Poing Tire-Bouchon",
|
|
en: "Corkscrew Punch",
|
|
es: "Puño Tirabuzón",
|
|
it: "Pugno Rotante",
|
|
pt: "Soco Saca-rolha",
|
|
de: "Korkenzieherhieb"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Fighting", "Fighting"],
|
|
|
|
name: {
|
|
fr: "Confrontation",
|
|
en: "Confront",
|
|
es: "Confrontar",
|
|
it: "Confronto",
|
|
pt: "Confrontar",
|
|
de: "Konfrontieren"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |