1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

feat: Add SV9 (#674)

This commit is contained in:
2025-02-28 08:44:38 +01:00
committed by GitHub
parent 19dccfd5d7
commit e4099defdb
133 changed files with 7333 additions and 0 deletions

49
data-asia/SV/SV9/076.ts Normal file
View File

@ -0,0 +1,49 @@
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