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

56
data-asia/S/S4a/052.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洛托姆"
},
illustrator: "ryoma uratsuka",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
description: {
'zh-tw': "某位少年的發明促使人們開始製造各種活用洛托姆的機器。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "洛托選擇"
},
effect: {
'zh-tw': "在自己的回合當從手牌將這張卡放置於備戰區時可使用1次。從自己的牌庫選擇最多2張名稱中有「洛托姆」的物品卡在給對手看過後加入手牌。並且重洗牌庫。"
}
}],
attacks: [{
name: {
'zh-tw': "電擊"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
},
damage: 30,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card