1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32:11 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

99 lines
1.5 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "pl3-103",
localId: 103,
// Card informations
name: {
en: "Drifloon",
fr: "Baudrive",
},
hp: 40,
type: [
Type.PSYCHIC,
],
dexId: 425,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/103/low",
fr: "https://assets.tcgdex.net/fr/pl/pl3/103/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/103/high",
fr: "https://assets.tcgdex.net/fr/pl/pl3/103/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Mitsuhiro Arita",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Reckless Charge",
fr: "Attaque imprudente",
},
text: {
en: "Drifloon does 10 damage to itself.",
fr: "Baudrive s'inflige 10 dégâts.",
},
damage: 20
},{
cost: [
Type.PSYCHIC
],
name: {
en: "Collect",
fr: "Collectionner",
},
text: {
en: "Draw a card.",
fr: "Piochez une carte.",
},
}],
weaknesses: [{
type: Type.DARKNESS,
value: "+10"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 1,
rarity: Rarity.COMMON,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card