1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +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

77 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Linéon de Galar",
en: "Galarian Linoone",
es: "Linoone de Galar",
it: "Linoone di Galar",
pt: "Linoone de Galar",
de: "Galar-Geradaks"
},
illustrator: "Shin Nagasawa",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
evolveFrom: {
fr: "Zigzaton de Galar",
en: "Galarian Zigzagoon"
},
attacks: [{
name: {
fr: "Tranche-Nuit",
en: "Night Slash",
es: "Tajo Umbrío",
it: "Nottesferza",
pt: "Talho Noturno",
de: "Nachthieb"
},
effect: {
fr: "Échangez ce Pokémon contre l'un de vos Pokémon de Banc.",
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
es: "Cambia este Pokémon por 1 de tus Pokémon en Banca.",
it: "Scambia questo Pokémon con uno della tua panchina.",
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco.",
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus."
},
damage: 20,
cost: ["Darkness"]
}, {
name: {
fr: "Enfoncement",
en: "Hammer In",
es: "Martillear",
it: "Martello",
pt: "Martelada",
de: "Einhämmern"
},
damage: 70,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D",
stage: "Stage1",
description: {
en: "This very aggressive Pokémon will recklessly challenge opponents stronger than itself."
}
}
export default card