1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

65 lines
888 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Yanma",
en: "Yanma",
es: "Yanma",
it: "Yanma",
pt: "Yanma",
de: "Yanma"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Grass"],
attacks: [{
name: {
fr: "Charge",
en: "Tackle",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 10,
cost: ["Grass"]
}, {
name: {
fr: "Cru-Ailes",
en: "Wing Attack",
es: "Ataque Ala",
it: "Attacco dAla",
pt: "Ataque de Asa",
de: "Flügelschlag"
},
damage: 30,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card