1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

60
data-asia/SV/SV6/020.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ランプラー",
'zh-tw': "燈火幽靈"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Rond",
dexId: [608],
hp: 80,
types: ["Fire"],
description: {
ja: "魂を 吸いとり 火を灯す。 人が 死ぬのを 待つため 病院を うろつくようになった。",
'zh-tw': "吸取靈魂來點亮燈火。 為了等待人類死去, 而在醫院裡徘徊遊蕩。"
},
stage: "Stage1",
attacks: [{
cost: ["Fire"],
name: {
ja: "ひだね",
'zh-tw': "火種"
},
damage: 20
}, {
cost: ["Fire", "Colorless"],
name: {
ja: "もえつくす",
'zh-tw': "燃燒盡"
},
damage: 60,
effect: {
ja: "このポケモンについているエネルギーを、すべてトラッシュする。",
'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card