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:
56
data-asia/S/SC2a/035.ts
Normal file
56
data-asia/S/SC2a/035.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SC2a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "伽勒爾 踏冰人偶"
|
||||
},
|
||||
|
||||
illustrator: "Naoki Saito",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "踢踏舞的達人。會揮動手中的冰杖,向觀眾表演輕快的舞步。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "曳步舞"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合時,可使用1次。選擇1張對手的反面向上的獎賞卡,與對手的牌庫最上方的卡維持反面朝上互換。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "瘋狂派對"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "造成自己的棄牌區的,持有「瘋狂派對」招式的寶可夢的數量×20點傷害。"
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
cost: ["Water", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user