Files
taverne-ui/uiscript/uiscript/skillpointresetdialog.py
T
Andreas Lierschaft 11df29aa6b Initial commit: UI-Quellcode (root + uiscript)
Enthaelt die editierbaren Python-UI-Skripte (root/, uiscript/) des
EterNexus-Clients, u.a. die Aenderungen fuer aktivierbare Items
(constinfo.py: IS_ACTIVATABLE_ITEM/IS_MOUNT_SEAL, uiinventory.py:
RefreshBagSlotWindow). Kompilierte Pack-Dateien (.epk/.eix) sowie
Binaries/DLLs/Locale-Assets sind bewusst nicht Teil dieses Repos.
2026-08-17 21:50:23 +02:00

57 lines
929 B
Python

ROOT = "d:/ymir work/ui/public/"
window = {
"name" : "SkillResetDialog",
"style" : ("float",),
"x" : SCREEN_WIDTH/2 - 100,
"y" : SCREEN_HEIGHT/2 - 114,
"width" : 200,
"height" : 228,
"children" :
(
{
"name" : "board",
"type" : "thinboard",
"x" : 0,
"y" : 0,
"width" : 200,
"height" : 98,
"children" :
(
{
"name" : "reset_button",
"type" : "button",
"x" : 10,
"y" : 17,
"text" : "½ºÅ³Æ÷ÀÎÆ® ¸®¼Â",
"default_image" : ROOT + "XLarge_Button_01.sub",
"over_image" : ROOT + "XLarge_Button_02.sub",
"down_image" : ROOT + "XLarge_Button_03.sub",
},
{
"name" : "cancel_button",
"type" : "button",
"x" : 10,
"y" : 57,
"text" : "Ãë¼Ò",
"default_image" : ROOT + "XLarge_Button_01.sub",
"over_image" : ROOT + "XLarge_Button_02.sub",
"down_image" : ROOT + "XLarge_Button_03.sub",
},
),
},
),
}