1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

83 lines
2.1 KiB
TypeScript
Raw 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 '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Copperajah V",
fr: "Pachyradjah V",
es: "Copperajah V",
it: "Copperajah V",
pt: "Copperajah V",
de: "Patinaraja V"
},
illustrator: "5ban Graphics",
rarity: "None",
category: "Pokemon",
hp: 220,
types: ["Metal"],
attacks: [{
name: {
en: "Adamantine Press",
fr: "Charge Adamantine",
es: "Presión Adamantina",
it: "Pressa Adamantina",
pt: "Adamantine Press",
de: "Steinharter Druck"
},
effect: {
en: "During your opponent's next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
es: "Durante el próximo turno de tu rival, los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
it: "Durante il prossimo turno del tuo avversario, questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
pt: "During your opponent's next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
de: "Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
},
damage: 90,
cost: ["Metal", "Metal", "Colorless"]
}, {
name: {
en: "Wrack Down",
fr: "Réduire en Poussière",
es: "Desmoronar",
it: "Abbattere",
pt: "Wrack Down",
de: "Niederschleudern"
},
damage: 180,
cost: ["Metal", "Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 4,
stage: "Basic",
dexId: [879],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "D",
suffix: "V"
}
export default card