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

101 lines
2.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 '../Burning Shadows'
const card: Card = {
name: {
en: "Noctowl",
fr: "Noarfang",
es: "Noctowl",
it: "Noctowl",
pt: "Noctowl",
de: "Noctuh"
},
illustrator: "Sekio",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
164,
],
hp: 90,
types: [
"Colorless",
],
evolveFrom: {
en: "Hoothoot",
fr: "Hoothoot",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Hypnoblast",
fr: "Hypnoblast",
es: "Hipnorrayo",
it: "Ipnobomba",
pt: "Borrifada Hipnótica",
de: "Hypnoschuss"
},
effect: {
en: "Your opponents Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Night Raid",
fr: "Raid Nocturne",
es: "Incursión Nocturna",
it: "Incursione Notturna",
pt: "Incursão Noturna",
de: "Nachtplünderung"
},
effect: {
en: "Your opponent reveals their hand. Discard a Pokémon from it.",
fr: "Votre adversaire dévoile sa main. Défaussez-en un Pokémon.",
es: "Tu rival enseña las cartas de su mano. Descarta 1 Pokémon de su mano.",
it: "Il tuo avversario mostra le carte che ha in mano. Scarta un Pokémon tra esse.",
pt: "Seu oponente revela a própria mão. Descarte 1 Pokémon que estiver lá.",
de: "Dein Gegner zeigt dir seine Handkarten. Lege 1 Pokémon aus der Hand deines Gegners auf seinen Ablagestapel."
},
damage: 70,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card