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

44 lines
766 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 "../S6H"
const card: Card = {
set: Set,
name: {
'zh-tw': "萌芽鹿"
},
illustrator: "Sekio",
category: "Pokemon",
hp: 110,
types: ["Grass"],
description: {
'zh-tw': "會隨著季節的推移改變居所。所以也有人說萌芽鹿會運來春天。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "連擊觸手"
},
effect: {
'zh-tw': "從自己的手牌將任意數量的「連擊」卡給對手看過後造成其張數×40點傷害。然後將給對手看過的「連擊」卡放回牌庫並重洗。"
},
damage: "40×",
cost: ["Psychic"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card