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

94
cards/ecard/ecard3/H4.ts Normal file
View File

@ -0,0 +1,94 @@
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: "ecard3-H4",
localId: "H4",
// Card informations
name: {
en: "Beedrill",
},
hp: 80,
type: [
Type.GRASS,
],
dexId: 15,
image: {
low: {
en: "https://assets.tcgdex.net/en/ecard/ecard3/H4/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ecard/ecard3/H4/high.png",
},
},
evolveFrom: {
en: "Kakuna",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 74,
name: "Hikaru Koike"
},
abilities: [{
id: 1307,
type: AbilityType.POKEPOWER,
name: {
en: "Venom Spray",
},
text: {
en: "When you play Beedrill from your hand to evolve your Active Pokémon, the Defending Pokémon is now Paralyzed and Poisoned.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Needle Rush",
},
text: {
en: "Flip 4 coins. If you get 1 heads, this attack does 10 damage plus 10 more damage. If you get 2 heads, this attack does 10 damage plus 20 more damage. If you get 3 heads, this attack does 10 damage plus 50 more damage. If you get 4 heads, this attack does 10 damage plus 90 more damage.",
},
damage: 10
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Skyridge",
code: "ecard3"
}
}
export default card