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

47
data-asia/S/S8/078.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "黏美龍"
},
illustrator: "Nagomi Nijo",
category: "Pokemon",
hp: 160,
types: ["Dragon"],
description: {
'zh-tw': "用伸長角產生的力道來攻擊對手,產生的威力比重量級拳擊手的拳擊還強100倍。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "黏黏滑滑空間"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上對手從手牌將能量附於寶可夢身上時附上前擲1次硬幣。若為反面則那個能量不附上將其丟棄。"
}
}],
attacks: [{
name: {
'zh-tw': "光炮尾"
},
damage: 120,
cost: ["Water", "Psychic"]
}],
retreat: 3,
regulationMark: "E"
}
export default card