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

97 lines
2.4 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: "dp6-24",
localId: 24,
// Card informations
name: {
en: "Deoxys Attack Forme",
fr: "Deoxys Forme Attaque",
},
hp: 80,
type: [
Type.PSYCHIC,
],
dexId: 386,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp6/24/low",
fr: "https://assets.tcgdex.net/fr/dp/dp6/24/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp6/24/high",
fr: "https://assets.tcgdex.net/fr/dp/dp6/24/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Kent Kanetsuna",
abilities: [{
id: 43,
type: AbilityType.POKEPOWER,
name: {
en: "Form Change",
fr: "Changement de forme",
},
text: {
en: "Once during your turn (before your attack), you may search your deck for any Deoxys and switch it with Deoxys Attack Forme. (Any cards attached to Deoxys Attack Forme, damage counters, Special Conditions, and effects on it are now on the new Pokémon.) If you do, put Deoxys Attack Forme on top of your deck. Shuffle your deck afterward. You can't use more than 1 Form Change Poké-Power each turn.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez chercher dans votre deck une autre Deoxys et l'échanger avec Deoxys Forme Attaque. (Toutes les cartes qui lui sont attachées, marqueurs de dégât, États Spéciaux et autres effets se trouvent maintenant sur le nouveau Pokémon.) Placez alors Deoxys Forme Attaque au dessus de votre deck. Ensuite, mélangez votre deck. Vous ne pouvez pas utiliser plus d'1 Poké-Power Changement de forme par tour.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Psychic Boost",
fr: "Psycho Boost",
},
text: {
en: "During your next turn, Deoxys's Psychic Boost attack's base damage is 20.",
fr: "Lors de votre prochain tour, les dégâts de base de l'attaque Psycho Boost de Deoxys sont de 20.",
},
damage: 80
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Legends Awakened",
code: "dp6"
}
}
export default card