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

47 lines
663 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 "../SCC"
const card: Card = {
set: Set,
name: {
'zh-tw': "圈圈熊"
},
illustrator: "Hasegawa Saki",
category: "Pokemon",
hp: 140,
types: ["Colorless"],
description: {
'zh-tw': "雖然體型很大,但很擅長爬樹,會在樹上進食和睡覺。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "劈開"
},
damage: 40,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "擊倒"
},
damage: 110,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card