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

103 lines
2.0 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: "hgss2-91",
localId: 91,
// Card informations
name: {
en: "Entei & Raikou LEGEND",
fr: "Entei & Raikou LÉGENDE (bas)",
},
hp: 140,
type: [
Type.FIRE,
Type.LIGHTNING,
],
dexId: 243,
image: {
low: {
en: "https://assets.tcgdex.net/en/hgss/hgss2/91/low.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss2/91/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/hgss/hgss2/91/high.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss2/91/high.png",
},
},
evolveFrom: {},
tags: [
Tag.LEGEND,
],
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Detonation Spin",
fr: "Détonations en pagaille",
},
text: {
en: "Discard a Fire Energy attached to Entei & Raikou LEGEND.",
fr: "Défaussez une carte Énergie Fire attachée à Entei & Raikou LÉGENDE.",
},
damage: 90
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Thunder Fall",
fr: "Cascatonnerre",
},
text: {
en: "Discard all Energy attached to Entei & Raikou LEGEND. This attack does 80 damage to each Pokémon that has any Poké-Powers (both yours and your opponent's). This attack's damage isn't affected by Weakness or Resistance.",
fr: "Défaussez toutes les cartes Énergie attachées à Entei & Raikou LÉGENDE. Cette attaque inflige 80 dégâts à chaque Pokémon ayant des Poké-Powers (les vôtres et ceux de votre adversaire). Les dégâts infligés par cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
},
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
},{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.LEGEND,
category: Category.POKEMON,
set: {
name: "HS—Unleashed",
code: "hgss2"
}
}
export default card