1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

106 lines
1.7 KiB
TypeScript

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: "dp4-13",
localId: 13,
// Card informations
name: {
en: "Beedrill",
fr: "Dardargnan",
},
hp: 110,
type: [
Type.GRASS,
],
dexId: 15,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp4/13/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp4/13/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp4/13/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp4/13/high.png",
},
},
evolveFrom: {
en: "Kakuna",
fr: "Coconfort",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Band Attack",
fr: "Attaque de groupe",
},
text: {
en: "Does 30 damage times the number of Beedrill you have in play.",
fr: "Inflige 30 dégâts multipliés par le nombre de Dardargnan que vous avez en jeu.",
},
damage: 30
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Twineedle",
fr: "Double-dard",
},
text: {
en: "Flip 2 coins. This attack does 50 damage times the number of heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de faces.",
},
damage: 50
}],
weaknesses: [{
type: Type.FIRE,
value: "+30"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Great Encounters",
code: "dp4"
}
}
export default card