mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 22:02:15 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
46 lines
573 B
TypeScript
46 lines
573 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Yanma",
|
||
en: "Yanma"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 80,
|
||
types: ["Grass"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Charge",
|
||
en: "Tackle"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Grass"]
|
||
}, {
|
||
name: {
|
||
fr: "Cru-Ailes",
|
||
en: "Wing Attack"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Grass", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|