1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39: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

109 lines
3.1 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 '../Sun & Moon'
const card: Card = {
name: {
en: "Gumshoos GX",
fr: "Argouste GX",
es: "Gumshoos GX",
it: "Gumshoos GX",
pt: "Gumshoos GX",
de: "Manguspektor GX"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
735,
],
hp: 210,
types: [
"Colorless",
],
evolveFrom: {
en: "Yungoos",
fr: "Manglouton",
},
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Search the Premises",
fr: "Perquisition",
es: "Registrar el Lugar",
it: "Sopralluogo",
pt: "Busca Local",
de: "Hausdurchsuchung"
},
effect: {
en: "Once during your turn (before your attack), you may have your opponent reveal their hand.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez demander à votre adversaire de dévoiler sa main.",
es: "Una vez durante tu turno (antes de tu ataque), puedes hacer que tu rival enseñe las cartas de su mano.",
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi far mostrare al tuo avversario le carte che ha in mano.",
pt: "Uma vez durante a sua vez de jogar (antes de atacar), você pode fazer com que o seu oponente revele a própria mão.",
de: "Einmal während deines Zuges (bevor du angreifst) kannst du deinen Gegner dazu veranlassen, dir seine Handkarten zu zeigen."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Headbutt Bounce",
fr: "Culbute Surprise",
es: "Bote Cabezazo",
it: "Rimbalzo Bottintesta",
pt: "Cabeçada Ricochete",
de: "Abrupter Kopfstoß"
},
damage: 100,
},
{
cost: [
"Colorless",
],
name: {
en: "Gumshoe Chance GX",
fr: "Chance dArgousin GX",
es: "Oportunidad Detective GX",
it: "Occasione Investigativa-GX",
pt: "Sorte do Detetive GX",
de: "Manguspektorfall GX"
},
effect: {
en: "This attack does 50 more damage times the amount of Energy attached to your opponents Active Pokémon. (You cant use more than 1 GX attack in a game.)",
fr: "Cette attaque inflige 50 dégâts supplémentaires multipliés par le nombre dÉnergies attachées au Pokémon Actif de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
es: "Este ataque hace 50 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival. (No puedes usar más de 1 ataque GX en una partida).",
it: "Questo attacco infligge 50 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario. Non puoi usare più di un attacco GX a partita.",
pt: "Este ataque causa 50 pontos de dano a mais vezes a quantidade de Energia ligada ao Pokémon Ativo do seu oponente (você não pode usar mais de 1 ataque GX por partida).",
de: "Diese Attacke fügt 50 Schadenspunkte mehr mal der Anzahl der an das Aktive Pokémon deines Gegners angelegten Energien zu. (Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
},
damage: "10+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
}
export default card