1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

102
cards/hgss/hgss2/91.ts Normal file
View File

@ -0,0 +1,102 @@
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