1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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/SCA/066.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "達克萊伊"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "有著引誘人們進入深層睡眠,並使其作夢的能力。會在新月之夜活動。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "黑暗防守"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有【惡】能量,則這隻寶可夢受到招式的傷害「-20」點。"
}
}],
attacks: [{
name: {
'zh-tw': "暗之螺旋"
},
effect: {
'zh-tw': "增加這隻寶可夢身上附加的【惡】能量的數量×20點傷害。"
},
damage: "60+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card