mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
102
cards/base/base2/33.ts
Normal file
102
cards/base/base2/33.ts
Normal file
@ -0,0 +1,102 @@
|
||||
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: "base2-33",
|
||||
localId: 33,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Butterfree",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 12,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/base/base2/33/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/base/base2/33/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Metapod",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Whirlwind",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. (Do the damage before switching the Pokémon.)",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Mega Drain",
|
||||
},
|
||||
text: {
|
||||
en: "Remove a number of damage counters from Butterfree equal to half the damage done to the Defending Pokémon (after applying Weakness and Resistance) (rounded up to the nearest 10).",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Jungle",
|
||||
code: "base2"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user