1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +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

85 lines
1.5 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Oranguru",
fr: "Gouroutan",
es: "Oranguru",
it: "Oranguru",
pt: "Oranguru",
de: "Kommandutan"
},
illustrator: "Yoshinobu Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
765,
],
hp: 110,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Fixer of the Forest",
fr: "Réparateur de la Forêt",
es: "Manitas del Bosque",
it: "Tuttofare della Foresta",
pt: "Reparador da Floresta",
de: "Wart des Waldes"
},
effect: {
en: "Put 3 Pokémon Tool cards from your discard pile into your hand.",
fr: "Ajoutez 3 cartes Outil Pokémon de votre pile de défausse à votre main.",
es: "Pon 3 cartas de Herramienta Pokémon de tu pila de descartes en tu mano.",
it: "Prendi tre carte Oggetto Pokémon dalla tua pila degli scarti e aggiungile alle carte che hai in mano.",
pt: "Coloque 3 cartas de Ferramenta Pokémon da sua pilha de descarte na sua mão.",
de: "Nimm 3 Pokémon-Ausrüstungen aus deinem Ablagestapel auf deine Hand."
},
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Zen Headbutt",
fr: "PsykoudBoul",
es: "Cabezazo Zen",
it: "Cozzata Zen",
pt: "Cabeçada Zen",
de: "Zen-Kopfstoß"
},
damage: 70,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card