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

94 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: "xy9-89",
localId: 89,
// Card informations
name: {
en: "Raticate BREAK",
fr: "Rattatac TURBO",
},
hp: 110,
type: [
Type.COLORLESS,
],
dexId: 20,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy9/89/low",
fr: "https://assets.tcgdex.net/fr/xy/xy9/89/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy9/89/high",
fr: "https://assets.tcgdex.net/fr/xy/xy9/89/high",
},
},
evolveFrom: {
en: "Raticate",
fr: "Rattatac",
},
tags: [
Tag.BREAK,
],
illustrator: "5ban Graphics",
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Super Fang",
fr: "Règle des Évolutions TURBO",
},
text: {
en: "Put damage counters on your opponent's Active Pokémon until its remaining HP is 10.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
fr: "Croc Fatal",
},
text: {
fr: "Placez des marqueurs de dégâts sur le Pokémon Actif de votre adversaire jusqu'à ce qu'il ait 10 PV.",
},
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "BREAKpoint",
code: "xy9"
}
}
export default card