1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

72 lines
1.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 '../Unified Minds'
const card: Card = {
name: {
en: "Gumshoos",
fr: "Argouste",
es: "Gumshoos",
it: "Gumshoos",
pt: "Gumshoos",
de: "Manguspektor"
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
735,
],
hp: 100,
types: [
"Colorless",
],
evolveFrom: {
en: "Yungoos",
fr: "Manglouton",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Alert Headbutt",
fr: "Réveil Coup dBoule",
es: "Cabezazo de Alerta",
it: "Testata Prudente",
pt: "Cabeçada Alerta",
de: "Warnende Kopfnuss"
},
effect: {
en: "If your opponents Active Pokémon is a Pokémon-GX or Pokémon-EX, this attacks base damage is 30.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-GX ou un Pokémon-EX, les dégâts de base de cette attaque sont de 30.",
es: "Si el Pokémon Activo de tu rival es un Pokémon-GX o un Pokémon-EX, el daño básico de este ataque es de 30.",
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-GX o un Pokémon-EX, i danni base di questo attacco sono 30.",
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon-GX ou um Pokémon-EX, o dano base deste ataque será 30.",
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-GX oder Pokémon-EX ist, beträgt der Grundschaden dieser Attacke 30 Schadenspunkte."
},
damage: 90,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card