mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 17:39:54 +00:00
48 lines
981 B
TypeScript
48 lines
981 B
TypeScript
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 |