1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09: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

50
data-asia/S/S-P/117.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 踏冰人偶V"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 210,
types: ["Water"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "驚嚇之手"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多3張物品卡在給對手看過後加入手牌。並且重洗牌庫。"
},
cost: ["Water"]
}, {
name: {
'zh-tw': "特製拐杖"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有「寶可夢道具」則增加90點傷害。"
},
damage: "90+",
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card