1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00

feat: add database update (#825)

This commit is contained in:
2025-07-19 18:58:03 +02:00
committed by GitHub
parent aa68bfccf2
commit 651346dff7
354 changed files with 21377 additions and 7 deletions

View File

@@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../Black Bolt"
const card: Card = {
set: Set,
name: {
en: "Pawniard",
fr: "Scalpion",
de: "Gladiantri",
it: "Pawniard",
pt: "Pawniard",
es: "Pawniard",
'es-mx': "Pawniard"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Metal"],
stage: "Basic",
attacks: [{
cost: ["Metal"],
name: {
en: "Corner",
fr: "Coinçage",
de: "Bedrängen",
it: "Trappola",
pt: "Quina",
es: "Arrinconar",
'es-mx': "Arrinconar"
},
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.",
de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen.",
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.",
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.",
'es-mx': "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse."
},
damage: 10
}],
retreat: 1,
regulationMark: "I"
}
export default card