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

99 lines
1.7 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: "bw3-52",
localId: 52,
// Card informations
name: {
en: "Reuniclus",
fr: "Symbios",
},
hp: 90,
type: [
Type.PSYCHIC,
],
dexId: 579,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw3/52/low",
fr: "https://assets.tcgdex.net/fr/bw/bw3/52/low",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw3/52/high",
fr: "https://assets.tcgdex.net/fr/bw/bw3/52/high",
},
},
evolveFrom: {
en: "Duosion",
fr: "Méios",
},
tags: [
Tag.STAGE2,
],
illustrator: "Kagemaru Himeno",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Future Sight",
fr: "Prescience",
},
text: {
en: "Look at the top 5 cards of your deck and put them back on top of your deck in any order.",
fr: "Regardez les 5 cartes du dessus de votre deck et replacez-les sur le dessus de votre deck dans l'ordre de votre choix.",
},
},{
cost: [
Type.PSYCHIC
],
name: {
en: "Net Force",
fr: "Force Accrue",
},
text: {
en: "Does 40 damage times the number of Reuniclus you have in play.",
fr: "Inflige 40 dégâts multipliés par le nombre de Symbios que vous avez en jeu.",
},
damage: 40
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Noble Victories",
code: "bw3"
}
}
export default card