1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

57 lines
930 B
TypeScript
Raw Permalink 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 "../SC2D"
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