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

57 lines
846 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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "藍鴉"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
description: {
'zh-tw': "頭腦聰明,懂得使用工具。會用爪子抓起小石頭投向敵人,或是用繩子把敵人綑住。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "啄"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "亂擊"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×40點傷害。"
},
damage: "40×",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card