1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

102 lines
1.9 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: "dp3-14",
localId: 14,
// Card informations
name: {
en: "Lugia",
fr: "Lugia",
},
hp: 90,
type: [
Type.COLORLESS,
],
dexId: 249,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp3/14/low",
fr: "https://assets.tcgdex.net/fr/dp/dp3/14/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp3/14/high",
fr: "https://assets.tcgdex.net/fr/dp/dp3/14/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Kazuyuki Kano",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Silver Wing",
fr: "Battement argenté",
},
text: {
en: "Flip a coin. If heads, choose an Energy card attached to the Defending Pokémon and return it to your opponent's hand.",
fr: "Lancez une pièce. Si c'est face, choisissez une carte Énergie attachée au Pokémon Défenseur et replacez-la dans la main de votre adversaire.",
},
damage: 20
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Psychic Destruction",
fr: "Destruction psy",
},
text: {
en: "If the Defending Pokémon has any Energy cards attached to it, this attack's base damage is 40 instead of 120.",
fr: "Si le Pokémon Défenseur possède des cartes Énergie, les dégâts de base de cette attaque sont de 40 au lieu de 120.",
},
damage: 120
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+20"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Secret Wonders",
code: "dp3"
}
}
export default card