1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

51
data-asia/SV/SV6/040.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ルクシオ",
'zh-tw': "勒克貓"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Takumi Wada",
dexId: [404],
hp: 90,
types: ["Lightning"],
description: {
ja: "仲間と 尻尾を つなげると より 強力な 電撃を ツメから 出すことが できる。",
'zh-tw': "只要與夥伴的尾巴互相 串聯,就能將更加強大 的電擊從爪子釋放出去。"
},
stage: "Stage1",
attacks: [{
cost: ["Lightning", "Lightning"],
name: {
ja: "かじりつく",
'zh-tw': "咬緊"
},
damage: 60,
effect: {
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。",
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card