1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

56
data-asia/S/SC2a/035.ts Normal file
View 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