mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
68
data/Sword & Shield/Lost Origin/023.ts
Normal file
68
data/Sword & Shield/Lost Origin/023.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Torkoal",
|
||||
fr: "Chartor",
|
||||
es: "Torkoal",
|
||||
it: "Torkoal",
|
||||
pt: "Torkoal",
|
||||
de: "Qurtel"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Stampede",
|
||||
fr: "Ruée",
|
||||
es: "Estampida",
|
||||
it: "Fuggi Fuggi",
|
||||
pt: "Estouro",
|
||||
de: "Zertrampeln"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fire", "Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Flamethrower",
|
||||
fr: "Lance-Flammes",
|
||||
es: "Lanzallamas",
|
||||
it: "Lanciafiamme",
|
||||
pt: "Lança-chamas",
|
||||
de: "Flammenwurf"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||
es: "Descarta 1 Energía de este Pokémon.",
|
||||
it: "Scarta un'Energia da questo Pokémon.",
|
||||
pt: "Descarte 1 Energia deste Pokémon.",
|
||||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F",
|
||||
variants: {
|
||||
"normal": true,
|
||||
"reverse": true,
|
||||
"holo": false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user