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

61
data-asia/S/S4a/087.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "多龍巴魯托"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 150,
types: ["Psychic"],
description: {
'zh-tw': "讓多龍梅西亞住在自己角上的洞裡。戰鬥開始後會用音速將多龍梅西亞發射出去。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "穿透"
},
effect: {
'zh-tw': "當這隻寶可夢受到招式的傷害時己方擲1次硬幣。若為正面則這隻寶可夢不會受到那個傷害。"
}
}],
attacks: [{
name: {
'zh-tw': "潛靈奇襲"
},
effect: {
'zh-tw': "將3個傷害指示物以任意方式放置於對手的備戰寶可夢身上。"
},
damage: 120,
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "D"
}
export default card