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

62 lines
1.5 KiB
TypeScript
Raw Permalink 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ルクシオ",
'zh-tw': "勒克貓",
th: "ลุคซิโอ",
id: "Luxio"
},
illustrator: "Narumi Sato",
category: "Pokemon",
dexId: [404],
hp: 90,
types: ["Lightning"],
description: {
ja: "鋭い ツメの 先には 強い 電気が 流れており ほんの少し かするだけで 敵を 気絶させる。",
'zh-tw': "在銳利的爪子尖端有強烈的電流流過,只要稍微擦到, 就能讓敵人暈厥。",
th: "ที่ปลายเล็บอันแหลมคมจะมีไฟฟ้าแรงสูงไหลผ่านอยู่ เพียงแค่เฉี่ยวโดนก็ทำให้ฝ่ายตรงข้ามหมดสติได้",
id: "Di ujung cakar tajam Luxio, mengalir arus listrik yang sangat kuat sehingga dapat membuat musuhnya pingsan hanya dengan sedikit goresan cakarnya."
},
stage: "Stage1",
attacks: [{
cost: ["Lightning"],
name: {
ja: "エレキック",
'zh-tw': "電氣踢",
th: "ลูกเตะไฟฟ้า",
id: "Electric Kick"
},
damage: 30
}, {
cost: ["Lightning", "Colorless", "Colorless"],
name: {
ja: "ヘッドボルト",
'zh-tw': "伏特頭擊",
th: "เฮดโบลต์",
id: "Head Bolt"
},
damage: 60
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card