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

55 lines
1.0 KiB
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 "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "多龍巴魯托"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 150,
types: ["Psychic"],
description: {
'zh-tw': "讓多龍梅西亞住在自己角上的洞裡。戰鬥開始後會用音速 將多龍梅西亞發射出去。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "龍之發射器"
},
effect: {
'zh-tw': "將最多與對手的場上寶可夢相同數量的自己的備戰區的「多龍梅西亞」卡丟棄選擇與丟棄的數量相同數量的對手的寶可夢。然後對所選的所有寶可夢不計算弱點・抵抗力各造成100點傷害。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "陰森射擊"
},
damage: 120,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "F"
}
export default card