1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

79 lines
1.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 '../Dragons Exalted'
const card: Card = {
name: {
en: "Lairon",
fr: "Galegon",
},
illustrator: "Shigenori Negishi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
305,
],
hp: 90,
types: [
"Metal",
],
evolveFrom: {
en: "Aron",
fr: "Galekid",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Metal Claw",
fr: "Griffe Acier",
},
damage: 30,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Wreak Havoc",
fr: "Ravages",
},
effect: {
en: "Flip a coin until you get tails. For each heads, discard the top card of your opponent's deck.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Pour chaque côté face, défaussez la carte du dessus du deck de votre adversaire.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card