1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 08:02:10 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

81 lines
1.4 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Lucario",
fr: "Lucario",
},
illustrator: "Naoyo Kimura",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
448,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Riolu",
fr: "Riolu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Focus Blast",
fr: "Exploforce",
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez 1 des Pokémon de votre adversaire. Cette attaque lui inflige 30 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Spike Lariat",
fr: "Lasso à piques",
},
effect: {
en: "If the Defending Pokémon already has any damage counters on it, this attack does 60 damage plus 20 more damage.",
fr: "Si le Pokémon Défenseur possède déjà des marqueurs de dégât, cette attaque inflige 60 dégâts plus 20 dégâts supplémentaires.",
},
damage: "60+",
},
],
weaknesses: [
{
type: "Psychic",
value: "+20"
},
],
retreat: 1,
description: {
fr: "Il ressent toutes les auras. Il comprend le langage humain."
}
}
export default card