mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
77 lines
1.9 KiB
TypeScript
77 lines
1.9 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Silver Tempest"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Palossand",
|
|
fr: "Trépassable",
|
|
es: "Palossand",
|
|
it: "Palossand",
|
|
pt: "Palossand",
|
|
de: "Colossand"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 140,
|
|
types: ["Fighting"],
|
|
|
|
evolveFrom: {
|
|
en: "Sandygast",
|
|
fr: "Bacabouh",
|
|
es: "Sandygast",
|
|
it: "Sandygast",
|
|
pt: "Sandygast",
|
|
de: "Sankabuh"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting"],
|
|
|
|
name: {
|
|
en: "Sandpot Trap",
|
|
fr: "Piège Seau de Plage",
|
|
es: "Trampa de Arena",
|
|
it: "Sabbiatrappola",
|
|
pt: "Armadilha Arenosa",
|
|
de: "Sandkastenfalle"
|
|
},
|
|
|
|
effect: {
|
|
en: "This attack does 30 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
|
fr: "Cette attaque inflige 30 dégâts à chacun des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
|
es: "Este ataque hace 30 puntos de daño a cada uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
|
it: "Questo attacco infligge 30 danni a ciascuno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
|
pt: "Este ataque causa 30 pontos de dano a cada um dos Pokémon do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
|
|
de: "Diese Attacke fügt jedem Pokémon deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
|
}
|
|
}, {
|
|
cost: ["Fighting", "Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Land Crush",
|
|
fr: "Écras'Terre",
|
|
es: "Aterrizaje",
|
|
it: "Schiacciaterra",
|
|
pt: "Aperto de Terra",
|
|
de: "Schollenbrecher"
|
|
},
|
|
|
|
damage: 120
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |