mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 23:22:11 +00:00
106 lines
2.0 KiB
TypeScript
106 lines
2.0 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
|
import Type from '@tcgdex/sdk/interfaces/Type'
|
|
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
|
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
|
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
|
import Category from '@tcgdex/sdk/interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "pl2-44",
|
|
localId: 44,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Lairon",
|
|
fr: "Galegon Niv. 37",
|
|
},
|
|
|
|
hp: 80,
|
|
|
|
type: [
|
|
Type.METAL,
|
|
],
|
|
|
|
dexId: 305,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl2/44/low",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl2/44/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl2/44/high",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl2/44/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Aron",
|
|
fr: "Galekid",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: "Yukiko Baba",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Heavy Metal",
|
|
fr: "Heavy Métal",
|
|
},
|
|
text: {
|
|
en: "Flip a coin for each Metal Energy attached to Lairon. This attack does 10 damage plus 20 more damage for each heads.",
|
|
fr: "Lancez une pièce pour chaque Énergie Metal attachée à Galegon. Cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires pour chaque face.",
|
|
},
|
|
damage: 10
|
|
},{
|
|
cost: [
|
|
Type.METAL,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Granite Head",
|
|
fr: "Tête de granit",
|
|
},
|
|
text: {
|
|
en: "During your opponent's next turn, any damage done to Lairon by attacks is reduced by 10 (after applying Weakness and Resistance).",
|
|
fr: "Lors du prochain tour de votre adversaire, tous dégâts infligés à Galegon par des attaques sont réduits de 10 (après application de la Faiblesse et de la Résistance).",
|
|
},
|
|
damage: 40
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIRE,
|
|
value: "+20"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.PSYCHIC,
|
|
value: "-20"
|
|
}],
|
|
|
|
retreat: 2,
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Rising Rivals",
|
|
code: "pl2"
|
|
}
|
|
}
|
|
|
|
export default card
|