1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +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

96 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "xy10-23",
localId: 23,
// Card informations
name: {
en: "Barbaracle",
fr: "Golgopathe",
},
hp: 100,
type: [
Type.WATER,
],
dexId: 689,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy10/23/low",
fr: "https://assets.tcgdex.net/fr/xy/xy10/23/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy10/23/high",
fr: "https://assets.tcgdex.net/fr/xy/xy10/23/high",
},
},
evolveFrom: {
en: "Binacle",
fr: "Opermine",
},
tags: [
Tag.STAGE1,
],
illustrator: "Shin Nagasawa",
abilities: [{
id: 1417,
type: AbilityType.TALENT,
name: {
en: "Hand Block",
fr: "Blocage Manuel",
},
text: {
en: "If you have a Stadium card in play, your opponent can't attach any Special Energy cards from his or her hand to his or her Pokémon.",
fr: "Si vous avez une carte Stade en jeu, votre adversaire ne peut pas attacher de carte Énergie spéciale de sa main à ses Pokémon.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS
],
name: {
en: "Claw Slash",
fr: "Tranch'Griffe",
},
damage: 70
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Fates Collide",
code: "xy10"
}
}
export default card