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:
56
data-asia/S/S4a/052.ts
Normal file
56
data-asia/S/S4a/052.ts
Normal 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
|
Reference in New Issue
Block a user