mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Added the rest of the SWSH variants Signed-off-by: Avior <florian.bouillon@delta-wings.net>
75 lines
1.3 KiB
TypeScript
75 lines
1.3 KiB
TypeScript
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
|
||
}
|
||
}
|
||
|
||
export default card
|