1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

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

* Some more changes

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

* u

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

* continuing update

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

* Finished ?

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

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

81 lines
1.5 KiB
TypeScript
Raw 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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Galarian Linoone",
fr: "Linéon de Galar",
es: "Linoone de Galar",
it: "Linoone di Galar",
pt: "Linoone de Galar",
de: "Galar-Geradaks"
},
illustrator: "Akira Komayama",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 100,
types: [
"Darkness",
],
evolveFrom: {
en: "Galarian Zigzagoon",
fr: "Zigzaton de Galar"
},
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Double-Edge",
fr: "Damoclès",
es: "Doble Filo",
it: "Sdoppiatore",
pt: "Faca de Dois Gumes",
de: "Risikotackle"
},
effect: {
en: "This Pokémon also does 20 damage to itself.",
fr: "Ce Pokémon s'inflige aussi 20 dégâts.",
es: "Este Pokémon también se hace 20 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge anche 20 danni a se stesso.",
pt: "Este Pokémon também causa 20 pontos de dano a si mesmo.",
de: "Dieses Pokémon fügt auch sich selbst 20 Schadenspunkte zu."
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "It uses its long tongue to taunt opponents. Once the opposition is enraged, this Pokémon hurls itself at the opponent, tackling them forcefully."
}
}
export default card