1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

97 lines
1.7 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 '@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-8",
localId: 8,
// Card informations
name: {
en: "Lucario GL",
fr: "Lucario Niv. 32",
},
hp: 80,
type: [
Type.FIGHTING,
],
dexId: 448,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/8/low",
fr: "https://assets.tcgdex.net/fr/pl/pl2/8/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/8/high",
fr: "https://assets.tcgdex.net/fr/pl/pl2/8/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Kagemaru Himeno",
abilities: [{
id: 700,
type: AbilityType.POKEBODY,
name: {
en: "Boundary Aura",
fr: "Barrage aura",
},
text: {
en: "Apply Weakness for each Pokémon (both yours and your opponent's) as ×2 instead.",
fr: "Multipliez la Faiblesse par 2 pour chaque Pokémon (les vôtres et ceux de votre adversaire).",
}
}],
attacks: [{
cost: [
Type.METAL,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Combo Throw",
fr: "Combo de lancers",
},
text: {
en: "Does 30 damage plus 10 more damage for each Energy attached to the Defending Pokémon.",
fr: "Inflige 30 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Défenseur.",
},
damage: 30
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card