1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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

54
data-asia/S/S10P/036.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉洛克"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "全身所有部分都是由岩石構成。即使身體有磨損, 也能自己補上岩石修復。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "雷吉之門"
},
effect: {
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "終極衝擊"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 140,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card