1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

92 lines
2.1 KiB
TypeScript
Raw Permalink 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 '../BREAKthrough'
const card: Card = {
name: {
en: "Sandshrew",
fr: "Sabelette",
es: "Sandshrew",
it: "Sandshrew",
pt: "Sandshrew",
de: "Sandan"
},
illustrator: "Shigenori Negishi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
27,
],
hp: 60,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Double Scratch",
fr: "Double Écorchure",
es: "Arañazo Doble",
it: "Doppio Graffio",
pt: "Arranhão Duplo",
de: "Doppelkratzer"
},
effect: {
en: "Flip 2 coins. This attack does 10 damage times the number of heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de côtés face.",
es: "Lanza 2 monedas. Este ataque hace 10 puntos de daño por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 10 danni ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 10 de danos vezes o número de caras.",
de: "Wirf 2 Münzen. Dieser Angriff fügt 10 Schadenspunkte mal der Anzahl \"Kopf\" zu."
},
damage: "10×",
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Sand Tomb",
fr: "Tourbi-Sable",
es: "Bucle Arena",
it: "Sabbiotomba",
pt: "Fosso de Areia",
de: "Sandgrab"
},
effect: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
es: "El Pokémon Defensor no puede retirarse durante el próximo turno de tu rival.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
pt: "O Pokémon Defensor não poderá recuar durante a próxima vez de jogar do seu oponente.",
de: "Das Verteidigende Pokémon kann sich während des nächsten Zuges deines Gegners nicht zurückziehen."
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card