1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

58 lines
1.1 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ルクシオ",
'zh-tw': "勒克貓",
id: "Luxio"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
dexId: [404],
hp: 90,
types: ["Lightning"],
description: {
ja: "鋭い ツメの 先には 強い 電気が 流れており ほんの少し かするだけで 敵を 気絶させる。",
'zh-tw': "在銳利的爪子尖端有強烈的電流流過,只要稍微擦到, 就能讓敵人暈厥。",
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': "電氣踢",
id: "Electric Kick"
},
damage: 30
}, {
cost: ["Lightning", "Colorless", "Colorless"],
name: {
ja: "ヘッドボルト",
'zh-tw': "伏特頭擊",
id: "Head Bolt"
},
damage: 60
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card