1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +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

104
cards/hgss/hgss2/95.ts Normal file
View File

@ -0,0 +1,104 @@
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-95",
localId: 95,
// Card informations
name: {
en: "Suicune & Entei LEGEND",
fr: "Suicune & Entei LÉGENDE (bas)",
},
hp: 160,
type: [
Type.WATER,
Type.FIRE,
],
dexId: 244,
image: {
low: {
en: "https://assets.tcgdex.net/en/hgss/hgss2/95/low.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss2/95/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/hgss/hgss2/95/high.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss2/95/high.png",
},
},
evolveFrom: {},
tags: [
Tag.LEGEND,
],
attacks: [{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS
],
name: {
en: "Torrent Blade",
fr: "Croc torrentiel",
},
text: {
en: "Return 2 Water Energy attached to Suicune & Entei LEGEND to your hand. Choose one of your opponent's Benched Pokémon. This attack does 100 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Reprenez dans votre main 2 cartes Énergie Water attachées à Suicune & Entei LÉGENDE. Cette attaque inflige 100 dégâts à l'un des Pokémon se trouvant sur le Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Bursting Inferno",
fr: "Enfer explosif",
},
text: {
en: "The Defending Pokémon is now Burned.",
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
},
damage: 80
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
},{
type: Type.WATER,
value: "×2"
}],
retreat: 1,
rarity: Rarity.LEGEND,
category: Category.POKEMON,
set: {
name: "HS—Unleashed",
code: "hgss2"
}
}
export default card