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

56
data-asia/S/S8/051.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "多龍巴魯托"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 150,
types: ["Psychic"],
description: {
'zh-tw': "牠角裡的多龍梅西亞似乎滿心期待著能被以音速發射出去。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "匯流進擊"
},
effect: {
'zh-tw': "造成自己的場上「匯流」寶可夢的數量×30點傷害。"
},
damage: "30×",
cost: ["Psychic"]
}, {
name: {
'zh-tw': "高速攻擊"
},
damage: 120,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "E"
}
export default card