mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
74 lines
1.1 KiB
TypeScript
74 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Phantom Forces'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Yanma",
|
||
fr: "Yanma",
|
||
es: "Yanma",
|
||
it: "Yanma",
|
||
pt: "Yanma",
|
||
de: "Yanma"
|
||
},
|
||
illustrator: "Shin Nagasawa",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
193,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Air Slash",
|
||
fr: "Lame d'Air",
|
||
es: "Tajo Aéreo",
|
||
it: "Eterelama",
|
||
pt: "Golpe de Ar",
|
||
de: "Luftschnitt"
|
||
},
|
||
effect: {
|
||
en: "Discard an Energy attached to this Pokémon.",
|
||
fr: "Défaussez une Énergie attachée à ce Pokémon.",
|
||
es: "Descarta 1 Energía unida a este Pokémon.",
|
||
it: "Scarta un'Energia assegnata a questo Pokémon.",
|
||
pt: "Descarte uma Energia ligada a este Pokémon.",
|
||
de: "Lege 1 an dieses Pokémon angelegte Energie auf deinen Ablagestapel."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|