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

51
data-asia/S/SC1b/116.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "詐唬魔"
},
illustrator: "Hitoshi Ariga",
category: "Pokemon",
hp: 90,
types: ["Darkness"],
description: {
'zh-tw': "會先裝成要下跪道歉的樣子,然後用後腦勺尖如長矛的頭髮刺向對手。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "咬住"
},
damage: 30,
cost: ["Darkness"]
}, {
name: {
'zh-tw': "假跪真撞"
},
effect: {
'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。"
},
damage: 60,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card