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

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,72 @@
import { Card } from '../../../interfaces'
import Set from '../Plasma Storm'
const card: Card = {
name: {
en: "Lucario",
fr: "Lucario",
},
illustrator: "Satoshi Shirai",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
448,
],
hp: 100,
types: [
"Fightning",
],
evolveFrom: {
en: "Riolu",
fr: "Riolu",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Dual Armor",
fr: "Double Armure",
},
effect: {
en: "If this Pokémon has any { Metal } Energy attached to it, this Pokémon's type is both { Fighting } and { Metal }.",
fr: "Si de l'Énergie Metal est attachée à ce Pokémon, le type de ce Pokémon est Fighting et Metal.",
},
},
],
attacks: [
{
cost: [
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Hurricane Kick",
fr: "Pied Ouragan",
},
effect: {
en: "Does 30 more damage for each Prize card your opponent has taken.",
fr: "Inflige 30 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récupérée.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card