1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

93 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Lucario",
fr: "Lucario",
es: "Lucario",
it: "Lucario",
pt: "Lucario",
de: "Lucario"
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
448,
],
hp: 130,
types: [
"Metal",
],
evolveFrom: {
en: "Riolu",
fr: "Riolu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Low Sweep",
fr: "Balayette",
es: "Puntapié",
it: "Calciobasso",
pt: "Movimento Baixo",
de: "Fußtritt"
},
damage: 40,
},
{
cost: [
"Metal",
"Metal",
],
name: {
en: "Rush Up",
fr: "En Toute Hâte",
es: "Apresurarse",
it: "Corsa Affrettata",
pt: "Avanço Apressado",
de: "Ansturm"
},
effect: {
en: "If you attached a Pokémon Tool card from your hand to this Pokémon during this turn, this attack does 70 more damage.",
fr: "Si vous avez attaché une carte Outil Pokémon de votre main à ce Pokémon pendant ce tour, cette attaque inflige 70 dégâts supplémentaires.",
es: "Si has unido 1 carta de Herramienta Pokémon de tu mano a este Pokémon durante este turno, este ataque hace 70 puntos de daño más.",
it: "Se hai assegnato una carta Oggetto Pokémon a questo Pokémon dalla tua mano durante questo turno, questo attacco infligge 70 danni in più.",
pt: "Se você ligou uma carta de Ferramenta Pokémon da sua mão a este Pokémon durante esta vez de jogar, este ataque causará 70 pontos de dano a mais.",
de: "Wenn du während dieses Zuges eine Pokémon-Ausrüstung aus deiner Hand an dieses Pokémon angelegt hast, fügt diese Attacke 70 Schadenspunkte mehr zu."
},
damage: "60+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card