mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
58
data-asia/S/S9/059.ts
Normal file
58
data-asia/S/S9/059.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S9"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "泥偶巨人",
|
||||
ja: "ゴルーグ"
|
||||
},
|
||||
|
||||
illustrator: "Aya Kusube",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "古代人城堡的牆壁裡那像炮台一樣的底座是為了 讓泥偶巨人發射光束而建的。",
|
||||
ja: "古代人の お城の 壁には ゴルーグが ビームを 撃つための 砲台の ような 台座が ある。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "大手",
|
||||
ja: "ビッグハンド"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加自己的手牌的張數×10點傷害。",
|
||||
ja: "自分の手札の枚数×10ダメージ追加。"
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "百萬噸重拳",
|
||||
ja: "メガトンパンチ"
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
cost: ["Fighting", "Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "F",
|
||||
rarity: "Uncommon",
|
||||
dexId: [623]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user