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

62
data-asia/S/SLL/009.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SLL"
const card: Card = {
set: Set,
name: {
'zh-tw': "劈斧螳螂",
ja: "バサギリ"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 140,
types: ["Fighting"],
description: {
'zh-tw': "用堅硬的岩石守護己身,以粗獷的斧頭砍倒大樹。性情暴躁易怒。要是在荒野遇見牠,逃跑將是唯一選擇。",
ja: "硬き岩で 身を守り 無骨な 斧は 大木を 切り倒す。 気性 荒々しく 荒地にて 遭遇しときは 逃げの一手。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "踢散",
ja: "けちらす"
},
effect: {
'zh-tw': "增加對手的備戰寶可夢的數量×30點傷害。",
ja: "相手のベンチポケモンの数×30ダメージ追加。"
},
damage: "10",
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "巨岩衝撞",
ja: "がんせきタックル"
},
effect: {
'zh-tw': "這隻寶可夢也受到50點傷害。",
ja: "このポケモンにも50ダメージ。"
},
damage: 150,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
dexId: [900]
}
export default card