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

101 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "sm9-126",
localId: 126,
// Card informations
name: {
en: "Persian",
fr: "Persian",
},
hp: 100,
type: [
Type.COLORLESS,
],
dexId: 53,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm9/126/low",
fr: "https://assets.tcgdex.net/fr/sm/sm9/126/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/126/high",
fr: "https://assets.tcgdex.net/fr/sm/sm9/126/high",
},
},
evolveFrom: {
en: "Meowth",
fr: "Miaouss",
},
tags: [
Tag.STAGE1,
],
illustrator: "Yukiko Baba",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Make 'Em Pay",
fr: "Ça Va Payer",
},
text: {
en: "If your opponent has 4 or more cards in their hand, they reveal their hand. Discard cards you find there until your opponent has exactly 4 cards in their hand.",
fr: "Si votre adversaire a 4 cartes ou plus dans sa main, il montre sa main. Défaussez des cartes que vous y trouvez jusquà ce quil reste exactement 4 cartes dans la main de votre adversaire.",
},
damage: 20
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sharp Claws",
fr: "Griffes Affûtées",
},
text: {
en: "Flip a coin. If heads, this attack does 60 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 1,
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card