mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
92 lines
1.4 KiB
TypeScript
92 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: "ex6-17",
|
||
localId: 17,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Victreebel",
|
||
},
|
||
|
||
hp: 110,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 71,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex6/17/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex6/17/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Weepinbell",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: "Tomokazu Komiya",
|
||
|
||
abilities: [{
|
||
id: 136,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Acid Sampler",
|
||
},
|
||
text: {
|
||
en: "As long as Victreebel is your Active Pokémon, put 1 damage counter on each Defending Pokémon between turns. Acid Sampler stops working if your other Active Pokémon is not a Victreebel.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Acid",
|
||
},
|
||
text: {
|
||
en: "The Defending Pokémon can't retreat until the end of your opponent's next turn.",
|
||
},
|
||
damage: 50
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "FireRed & LeafGreen",
|
||
code: "ex6"
|
||
}
|
||
}
|
||
|
||
export default card
|