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

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "夢夢蝕"
},
illustrator: "Tika Matsuno",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "總是在打瞌睡作夢。剛睡醒的時候會鬧脾氣,所以最好別去招惹牠。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "誘導睡眠"
},
effect: {
'zh-tw': "選擇對手的1隻備戰寶可夢與戰鬥寶可夢互換。然後將新上場的寶可夢【睡眠】。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "精神強念"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。"
},
damage: "30+",
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "E"
}
export default card