mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 04:42:11 +00:00
90 lines
1.4 KiB
TypeScript
90 lines
1.4 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "xy12-2",
|
||
localId: 2,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "M Venusaur-EX",
|
||
fr: "M-Florizarre-EX",
|
||
},
|
||
|
||
hp: 230,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 3,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy12/2/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy12/2/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy12/2/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy12/2/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Venusaur-EX",
|
||
fr: "Florizarre-EX",
|
||
},
|
||
|
||
tags: [
|
||
Tag.MEGA,
|
||
],
|
||
|
||
illustrator: "5ban Graphics",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.GRASS,
|
||
Type.GRASS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Crisis Vine",
|
||
fr: "Crise-Lianes",
|
||
},
|
||
text: {
|
||
en: "Your opponent's Active Pokémon is now Paralyzed and Poisoned.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Paralysé et Empoisonné.",
|
||
},
|
||
damage: 120
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 4,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Evolutions",
|
||
code: "xy12"
|
||
}
|
||
}
|
||
|
||
export default card
|