1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/182.ts

52 lines
716 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Hoothoot"
},
illustrator: "Uninori",
rarity: "One Star",
category: "Pokemon",
hp: 50,
types: ["Colorless"],
description: {
en: "It always stands on one foot. It changes feet so\nfast, the movement can rarely be seen."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
en: "Insomnia"
},
effect: {
en: "This Pokémon can't be Asleep."
}
}],
attacks: [{
name: {
en: "Wing Attack"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card