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

97 lines
1.8 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: "xy9-88",
localId: 88,
// Card informations
name: {
en: "Raticate",
fr: "Rattatac",
},
hp: 70,
type: [
Type.COLORLESS,
],
dexId: 20,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy9/88/low",
fr: "https://assets.tcgdex.net/fr/xy/xy9/88/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy9/88/high",
fr: "https://assets.tcgdex.net/fr/xy/xy9/88/high",
},
},
evolveFrom: {
en: "Rattata",
fr: "Rattata",
},
tags: [
Tag.STAGE1,
],
illustrator: "Kagemaru Himeno",
abilities: [{
id: 1351,
type: AbilityType.TALENT,
name: {
en: "Antibodies",
fr: "Anticorps",
},
text: {
en: "This Pokémon can't be affected by any Special Conditions. (Remove any Special Conditions affecting this Pokémon.)",
fr: "Ce Pokémon ne peut être affecté par aucun État Spécial. (Retirez tous les États Spéciaux affectant ce Pokémon.)",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Dirty Shock",
fr: "Choc Crasseux",
},
text: {
en: "Your opponent's Active Pokémon is now Poisoned. Discard all Pokémon Tool cards attached to that Pokémon.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Défaussez toutes les cartes Outil Pokémon attachées au Pokémon ciblé.",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "BREAKpoint",
code: "xy9"
}
}
export default card