1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

39 lines
691 B
TypeScript
Raw Permalink 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "密勒頓"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 110,
types: ["Dragon"],
description: {
'zh-tw': "牠似乎就是古書裡所提及的 鐵大蛇。傳說牠曾用雷電 將大地化成了一片灰。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "暴衝高點"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張基本能量卡以任意方式附於自己的「未來」寶可夢身上。並且重洗牌庫。"
},
damage: 40,
cost: ["Colorless"]
}],
retreat: 2,
regulationMark: "H"
}
export default card