mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
50
data-asia/S/S-P/139.ts
Normal file
50
data-asia/S/S-P/139.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "雷丘V"
|
||||
},
|
||||
|
||||
illustrator: "MUGENUP",
|
||||
category: "Pokemon",
|
||||
hp: 200,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "急速蓄電"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這個招式在先攻玩家的最初回合也可使用。從自己的牌庫選擇1張【雷】能量卡,附於這隻寶可夢身上。並且重洗牌庫。"
|
||||
},
|
||||
|
||||
cost: ["Lightning"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "極限電光"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將自己的場上寶可夢身上附加的任意數量的【雷】能量卡丟棄,造成其張數×60點傷害。"
|
||||
},
|
||||
|
||||
damage: "60×",
|
||||
cost: ["Lightning", "Lightning"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user