1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

67 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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'
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 opponents Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card