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

64 lines
1.6 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "路卡利歐",
ja: "ルカリオ"
},
illustrator: "GIDORA",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "操作一種被稱為波導的力量來進行狩獵。這種力量就連 巨大的岩石也能擊得粉碎。",
ja: "大岩も 粉々に 砕く 波動と 呼ばれる 力を 操って 獲物を 狩る。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "旺盛鬥志",
ja: "たけるとうき"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。在這隻寶可夢身上放置2個傷害指示物。然後從自己的牌庫選擇1張【鬥】能量卡附於這隻寶可夢身上。並且重洗牌庫。",
ja: "自分の番に1回使える。このポケモンにダメカンを2個のせる。その後、自分の山札からエネルギーを1枚選び、このポケモンにつける。そして山札を切る。"
}
}],
attacks: [{
name: {
'zh-tw': "連續波導彈",
ja: "れんぞくはどうだん"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的【鬥】能量全部丟棄增加其張數×60點傷害。",
ja: "このポケモンについているエネルギーをすべてトラッシュし、その枚数×60ダメージ追加。"
},
damage: "10",
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Rare",
dexId: [448]
}
export default card