mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
63 lines
1.2 KiB
TypeScript
63 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "シガロコ",
|
||
'zh-tw': "蟲滾泥",
|
||
'zh-cn': "蟲滾泥"
|
||
},
|
||
|
||
illustrator: "Toshinao Aoki",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [953],
|
||
hp: 40,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
ja: "泥玉を 転がしながら 進化の エネルギーを 熟成させる。 やがて 進化のときを 迎える。",
|
||
'zh-tw': "會一邊滾著泥巴球, 一邊使進化的能量成熟。 最終會迎接進化的時刻。",
|
||
'zh-cn': "會一邊滾著泥巴球, 一邊使進化的能量成熟。 最終會迎接進化的時刻。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless"],
|
||
|
||
name: {
|
||
ja: "もってくる",
|
||
'zh-tw': "呼喚",
|
||
'zh-cn': "呼喚"
|
||
},
|
||
|
||
effect: {
|
||
ja: "自分の山札を1枚引く。",
|
||
'zh-tw': "從自己的牌庫抽出1張卡。",
|
||
'zh-cn': "從自己的牌庫抽出1張卡。"
|
||
}
|
||
}, {
|
||
cost: ["Grass"],
|
||
|
||
name: {
|
||
ja: "ころがる",
|
||
'zh-tw': "滾動",
|
||
'zh-cn': "滾動"
|
||
},
|
||
|
||
damage: 10
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |