1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +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

55
data-asia/S/SC1b/063.ts Normal file
View File

@@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 魔牆人偶"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 80,
types: ["Water"],
description: {
'zh-tw': "擅長踢踏舞。會用冷氣製造出冰之地板並將其踢起,以此作為保護自己的障壁。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "冰凍之風"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "三重旋轉"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×20點傷害。"
},
damage: "20×",
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card