mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 11:51:59 +00:00
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
53
data/Sword & Shield/Battle Styles/13.ts
Normal file
53
data/Sword & Shield/Battle Styles/13.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
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
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user