mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 11:51:59 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
45
data-asia/S/S7R/048.ts
Normal file
45
data-asia/S/S7R/048.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S7R"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "基格爾德"
|
||||
},
|
||||
|
||||
illustrator: "otumami",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Dragon"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "據說當牠與威脅到生態系統的對手戰鬥時,會變化成更強大的樣子。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "咬住"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "制裁潮漩"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "對手的1隻寶可夢受到對手已經獲得的獎賞卡的張數×40點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||||
},
|
||||
|
||||
cost: ["Grass", "Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user