mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 13:22:15 +00:00
67 lines
1.3 KiB
TypeScript
67 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../XY Black Star Promos'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Hoopa EX",
|
||
fr: "Hoopa EX",
|
||
},
|
||
illustrator: "Eske Yoshinob",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
720,
|
||
],
|
||
hp: 170,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
|
||
suffix: "EX",
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Scoundrel Ring",
|
||
fr: "Anneau Malicieux",
|
||
},
|
||
effect: {
|
||
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: [
|
||
"Psychic",
|
||
"Psychic",
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Hyperspace Fury",
|
||
},
|
||
effect: {
|
||
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: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|