1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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,69 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Lucario",
fr: "Lucario",
},
illustrator: "Anesaki Dynamic",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
448,
],
hp: 120,
types: [
"Fightning",
],
evolveFrom: {
en: "Riolu",
fr: "Riolu",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Stance",
fr: "Position",
},
effect: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may prevent all effects of your opponent's attacks, including damage, done to this Pokémon until the end of your opponent's next turn.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer lun de vos Pokémon pendant votre tour, vous pouvez éviter tous les effets des attaques de votre adversaire, y compris les dégâts, infligés à ce Pokémon jusquà la fin du prochain tour de votre adversaire.",
},
},
],
attacks: [
{
cost: [
"Fightning",
"Fightning",
"Fightning",
],
name: {
en: "Submarine Blow",
fr: "Coup Sous-Marin",
},
damage: 120,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card