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

70 lines
1012 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 '../Team Rocket Returns'
const card: Card = {
name: {
en: "Skiploom",
},
illustrator: "Kyoko Umemoto",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
188,
],
hp: 60,
types: [
"Grass",
],
evolveFrom: {
en: "Hoppip",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Buffer",
},
effect: {
en: "If Skiploom would be Knocked Out by an opponent's attack, flip a coin. If heads, Skiploom is not Knocked Out and its remaining HP becomes 10 instead.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Miracle Powder",
},
effect: {
en: "Flip a coin. If heads, choose 1 Special Condition. The Defending Pokémon is now affected by that Special Condition.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-30"
},
],
}
export default card