1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 04:49:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,74 @@
import { Card } from '../../../interfaces'
import Set from '../Plasma Freeze'
const card: Card = {
name: {
en: "Vanilluxe",
fr: "Sorbouboul",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
584,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Vanillish",
fr: "Sorboul",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "ChillMAX",
fr: "Gel Maximal",
},
effect: {
en: "Flip a coin for each Energy attached to this Pokémon. This attack does 60 damage times the number of heads.",
fr: "Lancez une pièce pour chaque Énergie attachée à ce Pokémon. Cette attaque inflige 60 dégâts multipliés par le nombre de côtés face.",
},
damage: 60,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Cold Breath",
fr: "Souffle Froid",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
}
export default card