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

100 lines
1.6 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: "dp5-61",
localId: 61,
// Card informations
name: {
en: "Drifloon",
fr: "Baudrive",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 425,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp5/61/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp5/61/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp5/61/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp5/61/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
name: {
en: "Delivery",
fr: "Livraison",
},
text: {
en: "Flip a coin. If heads, put any 1 card from your discard pile into your hand.",
fr: "Lancez une pièce. Si c'est face, placez dans votre main n'importe quelle carte de votre pile de défausse.",
},
},{
cost: [
Type.PSYCHIC
],
name: {
en: "Reaction",
fr: "Réagir",
},
text: {
en: "Switch Drifloon with 1 of your Benched Pokémon.",
fr: "Échangez Baudrive avec 1 des Pokémon de votre Banc.",
},
damage: 20
}],
weaknesses: [{
type: Type.DARKNESS,
value: "+10"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Majestic Dawn",
code: "dp5"
}
}
export default card