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

112 lines
2.3 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: "sm12-255",
localId: 255,
// Card informations
name: {
en: "Oricorio-GX",
fr: "Plumeline-GX",
},
hp: 170,
type: [
Type.PSYCHIC,
],
dexId: 741,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm12/255/low",
fr: "https://assets.tcgdex.net/fr/sm/sm12/255/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm12/255/high",
fr: "https://assets.tcgdex.net/fr/sm/sm12/255/high",
},
},
evolveFrom: {},
tags: [
Tag.GX,
Tag.BASIC,
],
illustrator: "PLANETA Tsuji",
abilities: [{
id: 1376,
type: AbilityType.TALENT,
name: {
en: "Dance of Tribute",
fr: "Danse Respectueuse",
},
text: {
en: "Once during your turn (before your attack), if any of your Pokémon were Knocked Out during your opponent's last turn, you may draw 3 cards. You can't use more than 1 Dance of Tribute Ability each turn.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si lun de vos Pokémon a été mis K.O. pendant le dernier tour de votre adversaire, vous pouvez piocher 3 cartes. Vous ne pouvez pas utiliser plus dun talent Danse Respectueuse par tour.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Razor Wing",
fr: "Aile Tranchante",
},
damage: 80
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Strafe GX",
fr: "Bombarder-GX",
},
text: {
en: "Switch this Pokémon with 1 of your Benched Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Échangez ce Pokémon avec lun de vos Pokémon de Banc. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 100
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Cosmic Eclipse",
code: "sm12"
}
}
export default card