mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
54 lines
781 B
TypeScript
54 lines
781 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Vivillon",
|
||
fr: "Prismillon"
|
||
},
|
||
|
||
illustrator: "miki kudo",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Grass"],
|
||
|
||
evolveFrom: {
|
||
en: "Spewpa",
|
||
fr: "Pérégrain"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Vital Powder",
|
||
fr: "Poudre Vitale"
|
||
},
|
||
|
||
effect: {
|
||
en: "Heal all damage from 2 of your Benched Pokémon.",
|
||
fr: "Soignez tous les dégâts de 2 de vos Pokémon de Banc."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Gust",
|
||
fr: "Tornade"
|
||
},
|
||
|
||
damage: 90,
|
||
cost: ["Grass", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |