1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

71 lines
1.4 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 lun 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"
}
export default card