1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

84 lines
1.3 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 '../Crystal Guardians'
const card: Card = {
name: {
en: "Lairon",
fr: "Galegon",
de: "Stollrak"
},
illustrator: "Hajime Kusajima",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
305,
],
hp: 80,
types: [
"Metal",
],
evolveFrom: {
en: "Aron",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Roar",
fr: "Hurlement",
de: "Brüller"
},
effect: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon, if any.",
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc, s'il en a.",
de: "Dein Gegner tauscht das Verteidigende Pokémon gegen 1 Pokémon auf seiner Bank aus."
},
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Metal Charge",
fr: "Attaque métallique",
de: "Metallischer Sturmangriff"
},
effect: {
en: "Put 1 damage counter on Lairon.",
fr: "Placez 1 marqueur de dégât sur Galegon.",
de: "Lege 1 Schadensmarke auf Stollrak."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
}
export default card