1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

67 lines
1.0 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Type: Null",
fr: "Type:0",
es: "Código Cero",
it: "Tipo Zero",
pt: "Tipo Nulo",
de: "Typ:Null"
},
illustrator: "KEIICHIRO ITO",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 110,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Air Slash",
fr: "Lame dAir",
es: "Tajo Aéreo",
it: "Eterelama",
pt: "Golpe de Ar",
de: "Luftschnitt"
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
es: "Descarta 1 Energía de este Pokémon.",
it: "Scarta unEnergia assegnata a questo Pokémon.",
pt: "Descarte 1 Energia deste Pokémon.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
}
export default card