1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

100
cards/dp/dp2/13.ts Normal file
View File

@ -0,0 +1,100 @@
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: "dp2-13",
localId: 13,
// Card informations
name: {
en: "Meganium",
},
hp: 130,
type: [
Type.GRASS,
],
dexId: 154,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/13/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/13/high.png",
},
},
evolveFrom: {
en: "Bayleef",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 94,
name: "Daisuke Ito"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Ultra Powder",
},
text: {
en: "Flip 3 coins. If the first coin is heads, the Defending Pokémon is now Poisoned. If the second coin is heads, the Defending Pokémon is now Burned. If the third coin is heads, the Defending Pokémon is now Paralyzed.",
},
damage: 20
},{
cost: [
Type.GRASS,
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Fire Counterattack",
},
text: {
en: "If your opponent has any Fire Pokémon in play, this attack does 60 damage plus 30 more damage.",
},
damage: 60
}],
weaknesses: [{
type: Type.FIRE,
value: "+30"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card