1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

67 lines
1.6 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Gouroutan",
en: "Oranguru",
es: "Oranguru",
it: "Oranguru",
pt: "Oranguru",
de: "Kommandutan"
},
illustrator: "nagimiso",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
abilities: [{
type: "Ability",
name: {
fr: "Sagesse du Primate",
en: "Primate Wisdom",
es: "Sabiduría Primate",
it: "Saggezza del Primate",
pt: "Sabedoria de Primata",
de: "Primaten-Weisheit"
},
effect: {
fr: "Une fois pendant votre tour, vous pouvez échanger une carte de votre main contre la carte du dessus de votre deck.",
en: "Once during your turn, you may switch a card from your hand with the top card of your deck.",
es: "Una vez durante tu turno, puedes cambiar 1 carta de tu mano por la primera carta de tu baraja.",
it: "Una sola volta durante il tuo turno, puoi scambiare una carta che hai in mano con la prima carta del tuo mazzo.",
pt: "Uma vez durante o seu turno, você poderá trocar 1 carta da sua mão pela carta de cima do seu baralho.",
de: "Einmal während deines Zuges kannst du 1 Karte aus deiner Hand gegen die oberste Karte deines Decks austauschen."
}
}],
attacks: [{
name: {
fr: "Assommer",
en: "Whap Down",
es: "Zurrar",
it: "Bastonata",
pt: "Golpe Ligeiro",
de: "Verdreschen"
},
damage: 70,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card