1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +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

87 lines
1.8 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Alolan Geodude",
fr: "Racaillou dAlola",
es: "Geodude de Alola",
it: "Geodude di Alola",
pt: "Geodude de Alola",
de: "Alola-Kleinstein"
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
74,
],
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
name: {
en: "Defense Curl",
fr: "BoulArmure",
es: "Rizo Defensa",
it: "Ricciolscudo",
pt: "Espiral de Defesa",
de: "Einigler"
},
effect: {
en: "Flip a coin. If heads, prevent all damage done to this Pokémon by attacks during your opponents next turn.",
fr: "Lancez une pièce. Si cest face, évitez tous les dégâts infligés à ce Pokémon par des attaques pendant le prochain tour de votre adversaire.",
es: "Lanza 1 moneda. Si sale cara, evita todo el daño infligido a este Pokémon por ataques durante el próximo turno de tu rival.",
it: "Lancia una moneta. Se esce testa, previeni tutti i danni da attacchi inflitti a questo Pokémon durante il prossimo turno del tuo avversario.",
pt: "Jogue 1 moeda. Se sair cara, prevenirá todo o dano causado a este Pokémon por ataques durante a próxima vez de jogar do seu oponente.",
de: "Wirf 1 Münze. Verhindere bei Kopf allen Schaden, der diesem Pokémon während des nächsten Zuges deines Gegners durch Attacken zugefügt wird."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card