1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

74 lines
993 B
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 '../Skyridge'
const card: Card = {
name: {
en: "Hoothoot",
de: "Hoothoot"
},
illustrator: "Hizuki Misono",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
163,
],
hp: 40,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Hypnosis",
de: "Hypnose"
},
effect: {
en: "The Defending Pokémon is now Asleep.",
de: "Das verteidigende Pokémon schläft jetzt."
},
},
{
cost: [
"Colorless",
],
name: {
en: "Eerie Light",
de: "Schauriges Licht"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
de: "Wirf eine Münze. Bei \"Kopf\" ist das verteidigende Pokémon jetzt verwirrt."
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card