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

44 lines
754 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 "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "敏捷蟲"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
'zh-tw': "脫殼後變得更輕巧了。 為了防止乾燥,會將 帶狀的黏膜裹在身上。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "忍者龍捲風"
},
effect: {
'zh-tw': "在這個回合若從備戰區將這隻寶可夢放置於戰鬥場則這個招式只需要1個【草】能量即可使用。"
},
damage: 120,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card