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

63 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "斗笠菇",
ja: "キノガッサ"
},
illustrator: "Sekio",
category: "Pokemon",
hp: 110,
types: ["Grass"],
description: {
'zh-tw': "會撒出毒孢子,然後再讓因吸入孢子而痛苦不堪的 對手吃上一記重拳。",
ja: "毒の 胞子を ばらまき 吸いこんで 苦しむ 相手に 強烈な パンチを くらわせる。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "孢子彈",
ja: "ほうしだま"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
ja: "相手のバトルポケモンをねむりにする。"
},
damage: 30,
cost: ["Grass"]
}, {
name: {
'zh-tw': "粉塵衝天",
ja: "ふんじんアッパー"
},
effect: {
'zh-tw': "這個招式必須在上個自己的回合這隻寶可夢使用了「孢子彈」才可使用。",
ja: "このワザは、前の自分の番に、このポケモンが「ほうしだま」を使っていなければ使えない。"
},
damage: 130,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Uncommon",
dexId: [286]
}
export default card