mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
62 lines
762 B
TypeScript
62 lines
762 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Phantom Forces'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Yanma",
|
||
fr: "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",
|
||
},
|
||
effect: {
|
||
en: "Discard an Energy attached to this Pokémon.",
|
||
fr: "Défaussez une Énergie attachée à ce Pokémon.",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|