mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
51
data-asia/S/S8b/110.ts
Normal file
51
data-asia/S/S8b/110.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S8b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "無極汰那VMAX"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 340,
|
||||
types: ["Darkness"],
|
||||
stage: "VMAX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "無極領域"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若自己的所有場上寶可夢皆為【惡】屬性則生效。可放置於自己的備戰區的【惡】寶可夢數量改為8隻,其他屬性無法放置於場上。(當這個特性不生效後,將備戰區的寶可夢丟棄直到變為5隻為止。)"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "忌憚之末"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "造成自己的場上【惡】寶可夢的數量×30點傷害。"
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
cost: ["Darkness", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user