1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

56 lines
931 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SJ"
const card: Card = {
set: Set,
name: {
'zh-tw': "阿利多斯"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 110,
types: ["Darkness"],
description: {
'zh-tw': "會吐絲來捕捉獵物。每到夜晚就會離開巢穴, 積極地展開狩獵。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "蜘蛛網"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。選擇對手的備戰區的1隻進化寶可夢與戰鬥寶可夢互換。"
}
}],
attacks: [{
name: {
'zh-tw': "毒針"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。"
},
damage: 30,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card