mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
93 lines
1.5 KiB
TypeScript
93 lines
1.5 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: "si1-17",
|
||
localId: 17,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Vileplume",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 45,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/neo/si1/17/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/neo/si1/17/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Gloom",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: "Naoyo Kimura",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.GRASS
|
||
],
|
||
name: {
|
||
en: "Paradise Pollen",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, remove 2 damage counters from Vileplume (1 if it only has 1). Then, if you have any Benched Pokémon with damage counters on them, choose 1 of them and remove 2 damage counters from it (1 if it only has 1).",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.GRASS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Horrid Pollen",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, the Defending Pokémon is now Confused.",
|
||
},
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.COMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Southern Islands",
|
||
code: "si1"
|
||
}
|
||
}
|
||
|
||
export default card
|