1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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/S11/054.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "多龍巴魯托"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 150,
types: ["Psychic"],
description: {
'zh-tw': "讓多龍梅西亞住在自己角上的洞裡。戰鬥開始後會用音速 將多龍梅西亞發射出去。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "龍之發射器"
},
effect: {
'zh-tw': "將最多與對手的場上寶可夢相同數量的自己的備戰區的「多龍梅西亞」卡丟棄選擇與丟棄的數量相同數量的對手的寶可夢。然後對所選的所有寶可夢不計算弱點・抵抗力各造成100點傷害。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "陰森射擊"
},
damage: 120,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "F"
}
export default card