mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
feat: Add Silver Tempest to the DB (#386)
This commit is contained in:
71
data/Sword & Shield/Silver Tempest/100.ts
Normal file
71
data/Sword & Shield/Silver Tempest/100.ts
Normal file
@ -0,0 +1,71 @@
|
||||
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"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user