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

59
data-asia/S/SC1D/071.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "夢夢蝕"
},
illustrator: "MAHOU",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "在牠冒出黑黑的煙霧時,還是不要接近牠為妙,否則惡夢將會成真。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "熟睡波動"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。因這個【睡眠】的擲硬幣次數改為2次若沒有全部為正面則無法恢復。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "昏睡爆破"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢【睡眠】則增加120點傷害。"
},
damage: "10+",
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "D"
}
export default card