1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

82 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 = {
dexId: [264],
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