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

40 lines
595 B
TypeScript
Raw Permalink 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 "../SVEM"
const card: Card = {
set: Set,
name: {
'zh-tw': "風妖精"
},
illustrator: "KYUPIYAMA",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "每當沐浴陽光,身上的棉花就會膨脹。如果膨脹過了頭, 牠就會把棉花扯開到處亂撒。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "妖精之風"
},
damage: 50,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 0,
regulationMark: "G"
}
export default card