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:
39
data-asia/S/SC1b/112.ts
Normal file
39
data-asia/S/SC1b/112.ts
Normal file
@ -0,0 +1,39 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SC1b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "烏賊王VMAX"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 310,
|
||||
types: ["Darkness"],
|
||||
stage: "VMAX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "極巨擾亂"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "查看對手的手牌,選擇其中1張卡,放回對手的牌庫下方。"
|
||||
},
|
||||
|
||||
damage: 180,
|
||||
cost: ["Darkness", "Darkness", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user