1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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/SI/292.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 喵頭目"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 120,
types: ["Metal"],
description: {
'zh-tw': "在日復一日的戰鬥中得以進化。進化的結果是那危險的指甲, 留長後能當作短劍來用。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "鼓勵"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張基本能量卡以任意方式附於自己的寶可夢身上。並且重洗牌庫。"
},
cost: ["Metal"]
}, {
name: {
'zh-tw': "鐵頭碰"
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card