1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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

97 lines
1.7 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: "dp6-80",
localId: 80,
// Card informations
name: {
en: "Unown W",
fr: "Zarbi W",
},
hp: 90,
type: [
Type.PSYCHIC,
],
dexId: 201,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp6/80/low",
fr: "https://assets.tcgdex.net/fr/dp/dp6/80/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp6/80/high",
fr: "https://assets.tcgdex.net/fr/dp/dp6/80/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Kazuaki Aihara",
abilities: [{
id: 1078,
type: AbilityType.POKEBODY,
name: {
en: "WALL",
fr: "WALL",
},
text: {
en: "As long as Unown W is your Active Pokémon, any damage done to your Pokémon by an opponent's attack is reduced by 10 (after applying Weakness and Resistance).",
fr: "Tant que Zarbi V est votre Pokémon Actif, tous dégâts infligés à vos Pokémon par une attaque de votre adversaire sont réduits de 10 (après application de la Faiblesse et de la Résistance).",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Hidden Power",
fr: "Puissance cachée",
},
text: {
en: "Draw a card.",
fr: "Piochez une carte.",
},
damage: 50
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+30"
}],
retreat: 3,
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Legends Awakened",
code: "dp6"
}
}
export default card