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:
50
data/Sword & Shield/Silver Tempest/099.ts
Normal file
50
data/Sword & Shield/Silver Tempest/099.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Silver Tempest"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Sandygast",
|
||||
fr: "Bacabouh",
|
||||
es: "Sandygast",
|
||||
it: "Sandygast",
|
||||
pt: "Sandygast",
|
||||
de: "Sankabuh"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Corner",
|
||||
fr: "Coinçage",
|
||||
es: "Arrinconar",
|
||||
it: "Trappola",
|
||||
pt: "Quina",
|
||||
de: "Bedrängen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, the Defending Pokémon can't retreat.",
|
||||
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.",
|
||||
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.",
|
||||
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
|
||||
pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.",
|
||||
de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen."
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user