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

48 lines
691 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: "Uta",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "之所以一圈圈蜷起身體睡覺,是為了不管敵人從哪個方向襲來,都能立刻把頭轉過去威嚇對方。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "衝撞"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "尾鞭"
},
damage: 30,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card