1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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/085.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: "Tomomi Ozaki",
rarity: "Common",
category: "Pokemon",
dexId: [831],
hp: 70,
types: ["Colorless"],
description: {
ja: "毛が 伸びすぎると 動けない。 ウールーの 体毛で 織られた 布は 驚くほど 丈夫。",
'zh-tw': "要是身上的毛長得太長就會 不能動彈。用毛辮羊的體毛 織成的布結實得讓人吃驚。",
'zh-cn': "要是身上的毛長得太長就會 不能動彈。用毛辮羊的體毛 織成的布結實得讓人吃驚。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "けとばす",
'zh-tw': "踢飛",
'zh-cn': "踢飛"
},
damage: 50
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card