1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

116 lines
2.5 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 '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "hgss4-100",
localId: 100,
// Card informations
name: {
en: "Darkrai & Cresselia LEGEND",
fr: "Darkrai & Cresselia LÉGENDE",
},
type: [
Type.DARKNESS,
Type.PSYCHIC,
],
dexId: 488,
image: {
low: {
en: "https://assets.tcgdex.net/en/hgss/hgss4/100/low.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/100/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/hgss/hgss4/100/high.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/100/high.png",
},
},
evolveFrom: {},
tags: [
Tag.LEGEND,
],
attacks: [{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Lost Crisis",
fr: "Crise perdue",
},
text: {
en: "Choose 2 Energy attached to Darkrai & Cresselia LEGEND and put them in the Lost Zone. If any of your opponent's Pokémon would be Knocked Out by damage from this attack, put that Pokémon and all cards attached to it in the Lost Zone instead of discarding it.",
fr: "Choisissez 2 cartes Énergie attachées à Darkrai & Cresselia LÉGENDE et placez-les dans la Zone Perdue. Si l'un des Pokémon de votre adversaire est mis K.O. par cette attaque, placez ce Pokémon et toutes les cartes qui lui sont attachées dans la Zone Perdue au lieu de le défausser.",
},
damage: 100
},{
cost: [
Type.PSYCHIC
],
name: {
en: "Moon's Invite",
fr: "Invitation lunaire",
},
text: {
en: "Move as many damage counters on your opponent's Pokémon as you like to any of your opponent's other Pokémon in any way you like.",
fr: "Retirez autant de marqueurs de dégât que vous le voulez aux Pokémon de votre adversaire et attribuez-les comme bon vous semble aux autres Pokémon de votre adversaire.",
},
},{
name: {
fr: "",
},
text: {
fr: "Placez cette carte sur votre Banc uniquement avec l'autre moitié de Darkrai & Cresselia LÉGENDE.",
},
},{
name: {},
text: {
fr: "Lorsque ce Pokémon est mis K.O., votre adversaire prend 2 cartes Récompense.",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
},{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.LEGEND,
category: Category.POKEMON,
set: {
name: "HS—Triumphant",
code: "hgss4"
}
}
export default card