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

61 lines
907 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 "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "路卡利歐"
},
illustrator: "kodama",
category: "Pokemon",
hp: 130,
types: ["Metal"],
description: {
'zh-tw': "操作一種被稱為波導的力量來進行狩獵。這種力量就連巨大的岩石也能擊得粉碎。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "扣殺抽出"
},
effect: {
'zh-tw': "從自己的牌庫抽出1張卡。"
},
damage: 40,
cost: ["Metal"]
}, {
name: {
'zh-tw': "關節衝擊"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 160,
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card