1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04: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
2.2 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Alolan Sandslash",
fr: "Sablaireau dAlola",
es: "Sandslash de Alola",
it: "Sandslash di Alola",
pt: "Sandslash de Alola",
de: "Alola-Sandamer"
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
28,
],
hp: 120,
types: [
"Water",
],
evolveFrom: {
en: "Alolan Sandshrew",
fr: "Sabelette dAlola",
},
stage: "Stage1",
attacks: [
{
name: {
en: "Spike Armor",
fr: "Armure Piquante",
es: "Armadura de Espinas",
it: "Corazza Ispida",
pt: "Armadura de Espinhos",
de: "Stachelpanzer"
},
effect: {
en: "During your opponents next turn, if this Pokémon is damaged by an attack (even if this Pokémon is Knocked Out), put 6 damage counters on the Attacking Pokémon.",
fr: "Pendant le prochain tour de votre adversaire, si ce Pokémon subit les dégâts dune attaque (même si ce Pokémon est mis K.O.), placez 6 marqueurs de dégâts sur le Pokémon Attaquant.",
es: "Durante el próximo turno de tu rival, si este Pokémon resulta dañado por un ataque (incluso si este Pokémon queda Fuera de Combate), pon 6 contadores de daño en el Pokémon Atacante.",
it: "Durante il prossimo turno del tuo avversario, se questo Pokémon è danneggiato da un attacco, anche se viene messo KO, metti sei segnalini danno sul Pokémon attaccante.",
pt: "Durante a próxima vez de jogar do seu oponente, se este Pokémon for danificado por um ataque (mesmo que este Pokémon seja Nocauteado), coloque 6 contadores de dano no Pokémon Atacante.",
de: "Wenn diesem Pokémon während des nächsten Zuges deines Gegners durch eine Attacke Schaden zugefügt wird (auch wenn dieses Pokémon dadurch kampfunfähig wird), lege 6 Schadensmarken auf das Angreifende Pokémon."
},
damage: 30,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Frost Breath",
fr: "Souffle Glacé",
es: "Vaho Gélido",
it: "Alitogelido",
pt: "Respiração de Gelo",
de: "Eisesodem"
},
damage: 90,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
}
export default card