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

40 lines
602 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 "../S6K"
const card: Card = {
set: Set,
name: {
'zh-tw': "拳拳蛸"
},
illustrator: "Yuka Morii",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "智商大致相當於3歲的兒童。雖然觸手經常斷掉,但因為能再生,所以牠並不在意。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "敲擊"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card