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

49 lines
906 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 "../SV9"
const card: Card = {
set: Set,
name: {
ja: "オタチ",
'zh-tw': "尾立",
'zh-cn': "尾立"
},
illustrator: "Taiga Kayama",
rarity: "Common",
category: "Pokemon",
dexId: [161],
hp: 60,
types: ["Colorless"],
description: {
ja: "警戒心が 強い ポケモン。 しなやかに 動く 尻尾は 筋肉質で 触ると 硬い。",
'zh-tw': "警戒心強的寶可夢。 能夠柔韌擺動的尾巴 肌肉發達,摸起來很硬。",
'zh-cn': "警戒心強的寶可夢。 能夠柔韌擺動的尾巴 肌肉發達,摸起來很硬。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ひらてうち",
'zh-tw': "掌擊",
'zh-cn': "掌擊"
},
damage: 20
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card