1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

87 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Skarmory",
fr: "Airmure",
es: "Skarmory",
it: "Skarmory",
pt: "Skarmory",
de: "Panzaeron"
},
illustrator: "NC Empire",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Metal",
],
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Metal Arms",
fr: "Bras Métalliques",
es: "Extremidades Metálicas",
it: "Arti Metallici",
pt: "Braços Metálicos",
de: "Metallarme"
},
effect: {
en: "If this Pokémon has a Pokémon Tool attached, this attack does 40 more damage.",
fr: "Si une carte Outil Pokémon est attachée à ce Pokémon, cette attaque inflige 40 dégâts supplémentaires.",
es: "Si este Pokémon tiene 1 Herramienta Pokémon unida a él, este ataque hace 40 puntos de daño más.",
it: "Se questo Pokémon ha un Oggetto Pokémon assegnato, questo attacco infligge 40 danni in più.",
pt: "Se este Pokémon tiver uma Ferramenta Pokémon ligada a ele, este ataque causará 40 pontos de dano a mais.",
de: "Wenn an dieses Pokémon eine Pokémon-Ausrüstung angelegt ist, fügt diese Attacke 40 Schadenspunkte mehr zu."
},
damage: "10+",
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Cutting Wind",
fr: "Vent Glacial",
es: "Viento Helado",
it: "Vento Tagliente",
pt: "Vento Dilacerante",
de: "Schneidender Wind"
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 1,
regulationMark: "D"
}
export default card