Added game files from TMP4

This commit is contained in:
2023-07-21 21:55:58 +03:00
parent bb44b31af9
commit eb47a22455
9325 changed files with 276198 additions and 69890 deletions

View File

@ -53,4 +53,4 @@ window = {
},
),
}
}

View File

@ -36,7 +36,7 @@ window = {
"horizontal_align" : "center",
"vertical_align" : "center",
"image" : "d:/ymir work/ui/game/windows/equipment_base.sub",
"image" : "d:/ymir work/ui/equipment_bg_without_ring.tga",
"children" :
(
@ -57,12 +57,18 @@ window = {
{"index":2, "x":39, "y":145, "width":32, "height":32},
{"index":3, "x":75, "y":67, "width":32, "height":32},
{"index":4, "x":3, "y":3, "width":32, "height":96},
{"index":5, "x":114, "y":84, "width":32, "height":32},
{"index":6, "x":114, "y":52, "width":32, "height":32},
{"index":7, "x":2, "y":113, "width":32, "height":32},
{"index":8, "x":75, "y":113, "width":32, "height":32},
{"index":9, "x":114, "y":1, "width":32, "height":32},
{"index":5, "x":114, "y":67, "width":32, "height":32},
{"index":6, "x":114, "y":35, "width":32, "height":32},
{"index":7, "x":2, "y":145, "width":32, "height":32},
{"index":8, "x":75, "y":145, "width":32, "height":32},
{"index":9, "x":114, "y":2, "width":32, "height":32},
{"index":10, "x":75, "y":35, "width":32, "height":32},
## <20><> <20><><EFBFBD><EFBFBD>1
##{"index":21, "x":2, "y":106, "width":32, "height":32},
## <20><> <20><><EFBFBD><EFBFBD>2
##{"index":22, "x":75, "y":106, "width":32, "height":32},
## <20><> <20><>Ʈ
{"index":23, "x":39, "y":106, "width":32, "height":32},
),
},

View File

@ -114,10 +114,85 @@ window = {
"down_image" : "d:/ymir work/ui/public/large_button_03.sub",
},
## MiddleTab1
{
"name" : "MiddleTab1",
"type" : "radio_button",
"x" : 21,
"y" : 295,
"width" : 61,
"height" : 21,
"default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
"over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
"down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
},
## MiddleTab2
{
"name" : "MiddleTab2",
"type" : "radio_button",
"x" : 104,
"y" : 295,
"width" : 61,
"height" : 21,
"default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
"over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
"down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
},
## SmallTab1
{
"name" : "SmallTab1",
"type" : "radio_button",
"x" : 21,
"y" : 295,
"width" : 43,
"height" : 21,
"default_image" : "d:/ymir work/ui/public/small_button_01.sub",
"over_image" : "d:/ymir work/ui/public/small_button_02.sub",
"down_image" : "d:/ymir work/ui/public/small_button_03.sub",
},
## SmallTab2
{
"name" : "SmallTab2",
"type" : "radio_button",
"x" : 71,
"y" : 295,
"width" : 43,
"height" : 21,
"default_image" : "d:/ymir work/ui/public/small_button_01.sub",
"over_image" : "d:/ymir work/ui/public/small_button_02.sub",
"down_image" : "d:/ymir work/ui/public/small_button_03.sub",
},
## SmallTab3
{
"name" : "SmallTab3",
"type" : "radio_button",
"x" : 120,
"y" : 295,
"width" : 43,
"height" : 21,
"default_image" : "d:/ymir work/ui/public/small_button_01.sub",
"over_image" : "d:/ymir work/ui/public/small_button_02.sub",
"down_image" : "d:/ymir work/ui/public/small_button_03.sub",
},
),
},
),

View File

@ -0,0 +1,52 @@
import uiScriptLocale
WEB_WIDTH = 640
WEB_HEIGHT = 480
window = {
"name" : "MallWindow",
"x" : 0,
"y" : 0,
"style" : ("movable", "float",),
"width" : WEB_WIDTH + 20,
"height" : WEB_HEIGHT + 40,
"children" :
(
{
"name" : "board",
"type" : "board",
"style" : ("attach",),
"x" : 0,
"y" : 0,
"width" : WEB_WIDTH + 20,
"height" : WEB_HEIGHT + 40,
"children" :
(
## Title
{
"name" : "TitleBar",
"type" : "titlebar",
"style" : ("attach",),
"x" : 8,
"y" : 7,
"width" : WEB_WIDTH + 10,
"color" : "yellow",
"children" :
(
{ "name":"TitleName", "type":"text", "x":50, "y":3, "text":uiScriptLocale.SYSTEM_MALL, "text_horizontal_align":"center" },
),
},
),
},
),
}