1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49: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

97
cards/xy/xyp/XY71.ts Normal file
View File

@ -0,0 +1,97 @@
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: "xyp-XY71",
localId: "XY71",
// Card informations
name: {
en: "Hoopa-EX",
fr: "Hoopa-EX",
},
hp: 170,
type: [
Type.PSYCHIC,
],
dexId: 720,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xyp/XY71/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY71/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xyp/XY71/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY71/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 38,
name: "Eske Yoshinob"
},
abilities: [{
id: 1080,
type: AbilityType.TALENT,
name: {
en: "Scoundrel Ring",
fr: "Anneau Malicieux",
},
text: {
en: "When you play this Pokémon from your hand onto your Bench, you may search your deck for up to 3 Pokémon-EX (except for Hoopa-EX), reveal them, and put them into your hand. Shuffle your deck afterward.",
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc, vous pouvez chercher jusqu'à 3 Pokémon-EX(à part Hoopa-EX) dans votre deck, les montrer et les ajouter à votre main. Mélangez ensuite votre deck.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.PSYCHIC
],
name: {
en: "Hyperspace Fury",
},
text: {
en: "Discard 2 Energy attached to this Pokémon. This attack does 100 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "XY Black Star Promos",
code: "xyp"
}
}
export default card