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

57 lines
956 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 "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "蓮帽小童"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
'zh-tw': "傍晚時開始活動的夜行性寶可夢。喜歡吃河底的水苔。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "首發進場"
},
effect: {
'zh-tw': "在自己的回合開始從牌庫抽出了這張卡時若自己的備戰區有空位則在加入手牌前可使用1次。將這張卡放置於自己的備戰區。"
}
}],
attacks: [{
name: {
'zh-tw': "亂抓"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×40點傷害。"
},
damage: "40×",
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card