1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

Fixed most POP sets (#99)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-26 17:23:45 +02:00
committed by GitHub
parent 829d78fa6f
commit afd3a664ae
153 changed files with 2328 additions and 1124 deletions

View File

@ -5,23 +5,27 @@ const card: Card = {
name: {
en: "Lucario",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
448,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Riolu",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -32,7 +36,7 @@ const card: Card = {
en: "Feint",
},
effect: {
en: "This attack's damage isn't affected by Resistance.",
en: "This attacks damage isnt affected by Resistance.",
},
damage: 30,
@ -46,12 +50,13 @@ const card: Card = {
en: "Aura Sphere",
},
effect: {
en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
en: "Does 20 damage to 1 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 40,
},
],
weaknesses: [
{
type: "Psychic",
@ -59,10 +64,18 @@ const card: Card = {
},
],
description: {
en: "It has the ability to sense the auras of all things. It understands human speech."
},
retreat: 1,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card