mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
96 lines
2.3 KiB
TypeScript
96 lines
2.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Roaring Skies'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Skarmory",
|
||
fr: "Airmure",
|
||
es: "Skarmory",
|
||
it: "Skarmory",
|
||
pt: "Skarmory",
|
||
de: "Panzaeron"
|
||
},
|
||
illustrator: "Hitoshi Ariga",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
227,
|
||
],
|
||
hp: 100,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Call for Family",
|
||
fr: "Appel à la Famille",
|
||
es: "Llamar a la Familia",
|
||
it: "Cerca Famiglia",
|
||
pt: "Chamar a Família",
|
||
de: "Familienruf"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.",
|
||
fr: "Cherchez jusqu'à 2 Pokémon de base dans votre deck et placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja hasta 2 Pokémon Básicos y ponlos en tu Banca. Baraja las cartas de tu baraja después.",
|
||
it: "Cerca nel tuo mazzo fino a due Pokémon Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Procure em seu baralho até 2 Pokémon Básicos e coloque-os no seu Banco. Em seguida, embaralhe seus cards.",
|
||
de: "Durchsuche dein Deck nach bis zu 2 Basis-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Blow Through",
|
||
fr: "Grosse Bourrasque",
|
||
es: "Gran Torbellino",
|
||
it: "Colposecco",
|
||
pt: "Sopro Intenso",
|
||
de: "Durchdringender Strahl"
|
||
},
|
||
effect: {
|
||
en: "If there is any Stadium card in play, this attack does 30 more damage.",
|
||
fr: "S'il y a une carte Stade en jeu, cette attaque inflige 30 dégâts supplémentaires.",
|
||
es: "Si hay alguna carta de Estadio en juego, este ataque hace 30 puntos de daño más.",
|
||
it: "Se c'è in gioco una carta Stadio, questo attacco infligge 30 danni in più.",
|
||
pt: "Se houver algum card de Estádio em jogo, este ataque causará 30 de danos adicionais.",
|
||
de: "Wenn eine Stadionkarte im Spiel ist, fügt dieser Angriff 30 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "30+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|