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

100 lines
1.9 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: "xy3-85",
localId: 85,
// Card informations
name: {
en: "Watchog",
fr: "Miradar",
},
hp: 80,
type: [
Type.COLORLESS,
],
dexId: 505,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy3/85/low",
fr: "https://assets.tcgdex.net/fr/xy/xy3/85/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy3/85/high",
fr: "https://assets.tcgdex.net/fr/xy/xy3/85/high",
},
},
evolveFrom: {
en: "Patrat",
fr: "Ratentif",
},
tags: [
Tag.STAGE1,
],
illustrator: "Midori Harada",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Held-Item Inspection",
fr: "Inspection des Bagages",
},
text: {
en: "Your opponent reveals his or her hand. Choose an Item card you find there. Your opponent shuffles that card into his or her deck.",
fr: "Votre adversaire montre sa main. Choisissez une carte Objet que vous y trouvez. Votre adversaire mélange la carte choisie avec son deck.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Thorough Crunch",
fr: "Mâchouille Impitoyable",
},
text: {
en: "Flip 2 coins. For each heads, discard an Energy attached to your opponent's Active Pokémon.",
fr: "Lancez 2 pièces. Pour chaque côté face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 1,
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Furious Fists",
code: "xy3"
}
}
export default card