mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
58
data-asia/SV/SV4a/241.ts
Normal file
58
data-asia/SV/SV4a/241.ts
Normal file
@ -0,0 +1,58 @@
|
||||
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
|
Reference in New Issue
Block a user