1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

48 lines
981 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 "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "蘑蘑菇",
'zh-cn': "蘑蘑菇",
ja: "キノココ"
},
illustrator: "IKEDA Saki",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
'zh-tw': "喜歡潮濕的地方,白天會 動也不動地待在森林的樹蔭下。 會從頭上放出毒粉。",
'zh-cn': "喜歡潮濕的地方,白天會 動也不動地待在森林的樹蔭下。 會從頭上放出毒粉。",
ja: "湿った 場所を 好み 昼間は 森の 木陰で じっと している。 頭から 毒の 粉を 出す。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "滾動衝撞",
'zh-cn': "滾動衝撞",
ja: "ころがりタックル"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [285]
}
export default card