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

55 lines
1.5 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ルクシオ",
'zh-tw': "勒克貓",
th: "ลุคซิโอ"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Takumi Wada",
dexId: [404],
hp: 90,
types: ["Lightning"],
description: {
ja: "仲間と 尻尾を つなげると より 強力な 電撃を ツメから 出すことが できる。",
'zh-tw': "只要與夥伴的尾巴互相 串聯,就能將更加強大 的電擊從爪子釋放出去。",
th: "สามารถปล่อยไฟฟ้าที่ทรงพลังกว่าปกติจากกรงเล็บได้โดยการพันหางตัวเองกับเพื่อนพ้อง"
},
stage: "Stage1",
attacks: [{
cost: ["Lightning", "Lightning"],
name: {
ja: "かじりつく",
'zh-tw': "咬緊",
th: "กัด"
},
damage: 60,
effect: {
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。",
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card