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

58
data-asia/S/S9/024.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "鐵螯龍蝦",
ja: "シザリガー"
},
illustrator: "Shibuzoh.",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
'zh-tw': "不停揮舞自己巨大的鉗子,是個性情粗暴的傢伙。 被認為是很難培育的寶可夢。",
ja: "巨大な ハサミを 振りまわす 暴れ者。 育てるのが とても 難しい ポケモンと いわれる。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "推擊",
ja: "どつく"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "蝦鉗衝擊",
ja: "クラブインパクト"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量將其丟棄。",
ja: "このポケモンについているエネルギーを2個選び、トラッシュする。"
},
damage: 150,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
rarity: "Common",
dexId: [342]
}
export default card