mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
96
cards/neo/si1/17.ts
Normal file
96
cards/neo/si1/17.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../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.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/si1/17/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gloom",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 23,
|
||||
name: "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
|
||||
|
Reference in New Issue
Block a user