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

60
data-asia/S/SC1a/100.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨鉗螳螂"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 130,
types: ["Metal"],
description: {
'zh-tw': "為了防止戰鬥時變得過熱,而令金屬的身體熔化,會使用翅膀調節體溫。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "襲擊"
},
effect: {
'zh-tw': "在這個回合若這隻寶可夢從「飛天螳螂」進化則增加90點傷害。"
},
damage: "30+",
cost: ["Metal"]
}, {
name: {
'zh-tw': "防守利爪"
},
effect: {
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。"
},
damage: 90,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card