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

56 lines
1.3 KiB
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 "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "蘑蘑菇",
th: "คิโนโคโค"
},
illustrator: "Yoriyuki Ikegami",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
'zh-tw': "一察覺到危險,就會從頭頂散播出毒孢子 來保護自身安全的寶可夢。",
th: "โปเกมอนที่พอรู้สึกได้ถึงอันตราย จะปล่อยสปอร์พิษออกมาจากบนหัวเพื่อปกป้องตัวเอง"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "二連頭錘",
th: "พุ่งหัวชนสองครั้ง"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×10點傷害。",
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10"
},
damage: "10×",
cost: ["Colorless"]
}, {
name: {
'zh-tw': "種子炸彈",
th: "ระเบิดเมล็ดพืช"
},
damage: 20,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card