1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

92 lines
1.4 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 '../Phantom Forces'
const card: Card = {
name: {
en: "Skarmory",
fr: "Airmure",
es: "Skarmory",
it: "Skarmory",
pt: "Skarmory",
de: "Panzaeron"
},
illustrator: "Sanosuke Sakuma",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
227,
],
hp: 100,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
it: "Lacerazione",
pt: "Talho",
de: "Schlitzer"
},
damage: 30,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Iron Wing",
fr: "Aile de Fer",
es: "Ala Férrea",
it: "Alaferro",
pt: "Asa de Ferro",
de: "Eisenflügel"
},
effect: {
en: "Discard a Metal Energy attached to this Pokémon.",
fr: "Défaussez une Énergie Metal attachée à ce Pokémon.",
es: "Descarta 1 Energía Metal unida a este Pokémon.",
it: "Scarta un'Energia Metal assegnata a questo Pokémon.",
pt: "Descarte uma Energia Metal ligada a este Pokémon.",
de: "Lege 1 an dieses Pokémon angelegte Metal-Energie auf deinen Ablagestapel."
},
damage: 90,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card