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

61
data-asia/S/SC2D/106.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨金怪"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 170,
types: ["Metal"],
description: {
'zh-tw': "用4隻爪子和龐大的身體牢牢地按住獵物後,用腹部的牙齒嚼食。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "飄浮磁場"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的所有寶可夢【撤退】所需的能量全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "足震"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的進化寶可夢無法使用招式。"
},
damage: 100,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "D"
}
export default card