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

55
data-asia/S/S7D/021.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S7D"
const card: Card = {
set: Set,
name: {
'zh-tw': "天蠍王"
},
illustrator: "SATOSHI NAKAI",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
description: {
'zh-tw': "可不發出振翅聲而在空中飛行。先用長長的尾巴攫住獵物,再用牙齒朝弱點給予一刺。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "切落"
},
effect: {
'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。"
},
damage: 30,
cost: ["Fighting", "Colorless"]
}, {
name: {
'zh-tw': "毒液一擊"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。"
},
damage: 100,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card