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

97 lines
1.7 KiB
TypeScript
Raw Blame History

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: "xy1-36",
localId: 36,
// Card informations
name: {
en: "Corsola",
fr: "Corayon",
},
hp: 70,
type: [
Type.WATER,
],
dexId: 222,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy1/36/low",
fr: "https://assets.tcgdex.net/fr/xy/xy1/36/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy1/36/high",
fr: "https://assets.tcgdex.net/fr/xy/xy1/36/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Kyoko Umemoto",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Refresh",
fr: "Régénération",
},
text: {
en: "Heal 30 damage and remove all Special Conditions from this Pokémon.",
fr: "Soignez 30 dégâts et retirez tous les États Spéciaux de ce Pokémon.",
},
},{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Spiny Rush",
fr: "Assaut Épineux",
},
text: {
en: "Flip a coin until you get tails. This attack does 20 more damage for each heads.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.",
},
damage: 20
}],
weaknesses: [{
type: Type.GRASS,
value: "<22><>2"
}],
retreat: 1,
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "XY",
code: "xy1"
}
}
export default card