1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

67 lines
963 B
TypeScript
Raw Permalink 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 '../DP trainer Kit (Lucario)'
const card: Card = {
dexId: [448],
set: Set,
name: {
en: "Lucario"
},
illustrator: "Kent Kanetsuna",
rarity: "None",
category: "Pokemon",
stage: "Stage1",
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Riolu",
},
attacks: [{
cost: [
"Colorless"
],
name: {
en: "Feint"
},
effect: {
en: "This attacks damage isnt affected by Resistance."
},
damage: 30,
}, {
cost: [
"Fighting",
"Fighting"
],
name: {
en: "Aura Sphere"
},
effect: {
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",
value: "20+"
}
],
description: {
en: "It has the ability to sense the auras of all things. It understands human speech."
},
retreat: 1
}
export default card