1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 08:09:54 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

118 lines
3.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../SM Black Star Promos'
const card: Card = {
name: {
en: "Porygon-Z GX",
fr: "Porygon-Z GX",
es: "Porygon-Z GX",
it: "Porygon-Z GX",
pt: "Porygon-Z GX",
de: "Porygon-Z GX"
},
illustrator: undefined,
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
474,
],
hp: 240,
types: [
"Colorless",
],
evolveFrom: {
en: "Porygon2",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Troubleshooting",
fr: "Résolution de Problèmes",
es: "Resolución de Problemas",
it: "Risoluzione dei Problemi",
pt: "Detecção de Defeitos",
de: "Fehlerbehebung"
},
effect: {
en: "Once during your turn (before your attack), you may discard a Special Energy from this Pokémon. If you do, heal 80 damage from it.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une Énergie spéciale de ce Pokémon. Dans ce cas, soignez 80 dégâts à ce Pokémon.",
es: "Una vez durante tu turno (antes de tu ataque), puedes descartar 1 Energía Especial de este Pokémon. Si lo haces, cúrale 80 puntos de daño.",
it: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une Énergie spéciale de ce Pokémon. Dans ce cas, soignez 80 dégâts à ce Pokémon.",
pt: "Uma vez durante a sua vez de jogar (antes de atacar), você pode descartar 1 Energia Especial deste Pokémon. Se fizer isto, cure 80 pontos de dano dele.",
de: "Einmal während deines Zuges (bevor du angreifst) kannst du 1 Spezial-Energie von diesem Pokémon auf deinen Ablagestapel legen. Wenn du das machst, heile 80 Schadenspunkte bei ihm."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Abnormal Overheating",
fr: "Surchauffe Anormale",
es: "Sobrecalentamiento Anómalo",
it: "Surriscaldamento Anomalo",
pt: "Superaquecimento Anormal",
de: "Ungewöhnliche Überhitzung"
},
effect: {
en: "This Pokémon is now Burned.",
fr: "Ce Pokémon est maintenant Brûlé.",
es: "Este Pokémon pasa a estar Quemado.",
it: "Ce Pokémon est maintenant Brûlé.",
pt: "Este Pokémon agora está Queimado.",
de: "Dieses Pokémon ist jetzt verbrannt."
},
damage: 160,
},
{
cost: [
"Colorless",
],
name: {
en: "Critical Error GX",
fr: "Erreur Critique GX",
es: "Error Crítico GX",
it: "Errore Critico GX",
pt: "Erro Crítico GX",
de: "Kritischer Fehler GX"
},
effect: {
en: "Search your deck for up to 10 cards and discard them. Then, shuffle your deck. (You cant use more than 1 GX attack in a game.)",
fr: "Cherchez jusquà 10 cartes dans votre deck et défaussez-les. Mélangez ensuite votre deck. (Vous ne pouvez utiliser quune attaque GX par partie.)",
es: "Busca en tu baraja hasta 10 cartas y descártalas. Después, baraja las cartas de tu baraja. (No puedes usar más de 1 ataque GX en una partida).",
it: "Cherchez jusquà 10 cartes dans votre deck et défaussez-les. Mélangez ensuite votre deck. (Vous ne pouvez utiliser quune attaque GX par partie.)",
pt: "Procure por até 10 cartas no seu baralho e descarte-as. Em seguida, embaralhe o seu baralho (você não pode usar mais de 1 ataque GX por partida).",
de: "Durchsuche dein Deck nach bis zu 10 Karten und lege sie auf deinen Ablagestapel. Mische anschließend dein Deck. (Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2
}
export default card