Advertisement
deadx2

Untitled

Aug 29th, 2017
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 34.64 KB | None | 0 0
  1. import uiScriptLocaleMG
  2.  
  3. QUEST_ICON_BACKGROUND = 'd:/ymir work/ui/game/quest/slot_base.sub'
  4.  
  5. SMALL_VALUE_FILE = "d:/ymir work/ui/public/Parameter_Slot_00.sub"
  6. MIDDLE_VALUE_FILE = "illumina/inne/tlo_bonusy.tga"
  7. LARGE_VALUE_FILE = "d:/ymir work/ui/public/Parameter_Slot_03.sub"
  8. ICON_SLOT_FILE = "d:/ymir work/ui/public/Slot_Base.sub"
  9. FACE_SLOT_FILE = "d:/ymir work/ui/game/windows/box_face.sub"
  10. ROOT_PATH = "d:/ymir work/ui/game/windows/"
  11.  
  12. LOCALE_PATH = uiScriptLocaleMG.WINDOWS_PATH
  13.  
  14. window = {
  15.     "name" : "CharacterWindow",
  16.     "style" : ("movable", "float",),
  17.  
  18.     "x" : 24,
  19.     "y" : (SCREEN_HEIGHT - 37 - 361) / 2,
  20.  
  21.     "width" : 340,
  22.     "height" : 393,
  23.  
  24.     "children" :
  25.     (
  26.         {
  27.             "name" : "board",
  28.             "type" : "board",
  29.             "style" : ("attach",),
  30.  
  31.             "x" : 0,
  32.             "y" : 0,
  33.  
  34.             "width" : 340,
  35.             "height" : 393,
  36.  
  37.             "children" :
  38.             (
  39.                 {
  40.                     "name":"TabButtonsBoard",
  41.                     "type":"window",
  42.                     "x" : 280,
  43.                     "y" : 35,
  44.                     "width" : 50,
  45.                     "height" : 350,
  46.                     "children" :
  47.                     (
  48.                         ## RadioButton
  49.                         {
  50.                             "name" : "Tab_Button_01",
  51.                             "type" : "button",
  52.  
  53.                             "x" : 10,
  54.                             "y" : 9,
  55.                            
  56.                             "default_image":"illumina/buttons/chrbutton_small_a.tga",
  57.                             "over_image":"illumina/buttons/chrbutton_small_a.tga",
  58.                             "down_image":"illumina/buttons/chrbutton_small_a.tga",
  59.                            
  60.                             "children":
  61.                             (
  62.                                 {"name" : "Button1_Name","type":"text","text":"|cfff8d090Postać","x":35,"y":8,},
  63.                             )
  64.                         },
  65.                         {
  66.                             "name" : "Tab_Button_02",
  67.                             "type" : "button",
  68.  
  69.                             "x" : 10,
  70.                             "y" : 40,
  71.                            
  72.                             "default_image":"illumina/buttons/chrbutton_small_n.tga",
  73.                             "over_image":"illumina/buttons/chrbutton_small_a.tga",
  74.                             "down_image":"illumina/buttons/chrbutton_small_a.tga",
  75.                            
  76.                             "children":
  77.                             (
  78.                                 {"name" : "Button2_Name","type":"text","text":"|cfff8d090Statystyki","x":35,"y":8,},
  79.                             )
  80.                         },
  81.                         {
  82.                             "name" : "Tab_Button_03",
  83.                             "type" : "button",
  84.  
  85.                             "x" : 10,
  86.                             "y" : 71,
  87.                            
  88.                             "default_image":"illumina/buttons/chrbutton_small_n.tga",
  89.                             "over_image":"illumina/buttons/chrbutton_small_a.tga",
  90.                             "down_image":"illumina/buttons/chrbutton_small_a.tga",
  91.                            
  92.                             "children":
  93.                             (
  94.                                 {"name" : "Button3_Name","type":"text","text":"|cfff8d090Umiejętności","x":35,"y":8,},
  95.                             )
  96.                         },
  97.                         {
  98.                             "name" : "Tab_Button_04",
  99.                             "type" : "button",
  100.                             "x" : 10,
  101.                             "y" : 102,
  102.                             "default_image":"illumina/buttons/chrbutton_small_n.tga",
  103.                             "over_image":"illumina/buttons/chrbutton_small_a.tga",
  104.                             "down_image":"illumina/buttons/chrbutton_small_a.tga",
  105.                             "children":
  106.                             (
  107.                                 {"name" : "Button4_Name","type":"text","text":"|cfff8d090Emocje","x":35,"y":8,},
  108.                             )
  109.                         },
  110.                         {
  111.                             "name" : "Tab_Button_05",
  112.                             "type" : "button",
  113.                             "x" : 10,
  114.                             "y" : 133,
  115.                             "default_image":"illumina/buttons/chrbutton_small_n.tga",
  116.                             "over_image":"illumina/buttons/chrbutton_small_a.tga",
  117.                             "down_image":"illumina/buttons/chrbutton_small_a.tga",
  118.                             "children":
  119.                             (
  120.                                 {"name" : "Button5_Name","type":"text","text":"|cfff8d090Zadania","x":35,"y":8,},
  121.                             ),
  122.                         },
  123.                         {
  124.                             "name" : "Tab_Button_06",
  125.                             "type" : "button",
  126.                             "x" : 10,
  127.                             "y" : 164,
  128.                             "default_image":"illumina/buttons/chrbutton_small_n.tga",
  129.                             "over_image":"illumina/buttons/chrbutton_small_a.tga",
  130.                             "down_image":"illumina/buttons/chrbutton_small_a.tga",
  131.                             "children":
  132.                             (
  133.                                 {"name" : "Button6_Name","type":"text","text":"|cfff8d090Zadania","x":35,"y":8,},
  134.                             ),
  135.                         },
  136.                     ),
  137.                 },
  138.                 {
  139.                     "name" : "Bonus_TitleBar","type" : "titlebar","style" : ("attach",),"x" : 8,"y" : 7,"width" : 325,"color" : "red",
  140.                     "children" :
  141.                     (
  142.                         { "name":"TitleName6", "type":"text", "x":0, "y":-1, "text":"|cfff8d090Bonusy", "all_align":"center" },
  143.                     ),
  144.                 },
  145.                 {
  146.                     "name" : "Skill_TitleBar","type" : "titlebar","style" : ("attach",),"x" : 8,"y" : 7,"width" : 325,"color" : "red",
  147.                     "children" :
  148.                     (
  149.                         { "name":"TitleName5", "type":"text", "x":0, "y":-1, "text":"|cfff8d090Umiejętności", "all_align":"center" },
  150.                     ),
  151.                 },
  152.                 {
  153.                     "name" : "Emoticon_TitleBar","type" : "titlebar","style" : ("attach",),"x" : 8,"y" : 7,"width" : 325,"color" : "red",
  154.                     "children" :
  155.                     (
  156.                         { "name":"TitleName4", "type":"text", "x":0, "y":-1, "text":"|cfff8d090Emocje", "all_align":"center" },
  157.                     ),
  158.                 },
  159.                 {
  160.                     "name" : "Quest_TitleBar","type" : "titlebar","style" : ("attach",),"x" : 8,"y" : 7,"width" : 325,"color" : "red",
  161.                     "children" :
  162.                     (
  163.                         { "name":"TitleName3", "type":"text", "x":0, "y":-1, "text":"|cfff8d090Zadania", "all_align":"center" },
  164.                     ),
  165.                 },
  166.                 {
  167.                     "name":"Stats_TitleBar","type":"titlebar","style":("attach",),"x":8,"y":7,"width":325,"color":"red",
  168.                     "children" :
  169.                     (
  170.                         { "name" : "TitleName2", "type":"text", "x":0, "y":-1, "text":"|cfff8d090Statystyki", "all_align":"center" },
  171.                     ),
  172.                 },
  173.                 {
  174.                     "name":"Character_TitleBar","type":"titlebar","style":("attach",),"x":8,"y":7,"width":325,"color":"red",
  175.                     "children" :
  176.                     (
  177.                         { "name" : "TitleName1", "type":"text", "x":0, "y":-1, "text":"|cfff8d090Postać", "all_align":"center" },
  178.                     ),
  179.                 },
  180.                 {"name":"SwitchButton1", "type":"button", "x":325-70,"y":15, "default_image":"illumina/buttons/wysun_n.tga", "over_image":"illumina/buttons/wysun_h.tga", "down_image":"illumina/buttons/wysun_a.tga","tooltip_text":"|cfff8d090Wysuń",},
  181.                 {"name":"SwitchButton2", "type":"button", "x":325-70,"y":15, "default_image":"illumina/buttons/zasun_n.tga", "over_image":"illumina/buttons/zasun_h.tga", "down_image":"illumina/buttons/zasun_a.tga","tooltip_text":"|cfff8d090Zasuń",},
  182.                 ########################
  183.                 #STAŁE OKIENKO POCZĄTEK#
  184.                 ########################
  185.                 {
  186.                     "name" : "HeadOkienko",
  187.                     "type" : "window",
  188.  
  189.                     "x" : 10,
  190.                     "y" : 35,
  191.  
  192.                     "width" : 280,
  193.                     "height" : 80,
  194.                    
  195.                     "children":
  196.                     (
  197.                         {
  198.                             "name":"ChrIconSlot",
  199.                             "type":"expanded_image",
  200.                             "x":-28,
  201.                             "y":-46,
  202.                             "image":"illumina/character_slot.tga",
  203.                             "children":
  204.                             (
  205.                                 {"name":"ChrIcon","type":"expanded_image","x":7,"y":-13,"image":"illumina/faces/warrior_m.tga","x_scale":0.9,"y_scale":0.9,},
  206.                             )
  207.                         },
  208.                         ## Nazwa gracza
  209.                         {
  210.                             "name" : "NazwaGraczaSlot",
  211.                             "type" : "image",
  212.                             "x" : 66,
  213.                             "y" : 12,
  214.                             "image" : "illumina/text_slot_big.tga",
  215.  
  216.                             "children" :
  217.                             (
  218.                                 {"name" : "NazwaGracza","type":"text","text":"|cffa07970Błąd","x":0,"y":0,"all_align" : "center",},
  219.                             ),
  220.                         },
  221.  
  222.                         ## Nazwa gildii
  223.                         {
  224.                             "name" : "NazwaGildiiSlot",
  225.                             "type" : "image",
  226.                             "x" : 166,
  227.                             "y" : 12,
  228.                             "image" : "illumina/text_slot_big.tga",
  229.  
  230.                             "children" :
  231.                             (
  232.                                 {"name" : "NazwaGildii","type":"text","text":"|cffa07970Brak gildii","x":0,"y":0,"all_align" : "center",},
  233.                             ),
  234.                         },
  235.                
  236.                         {
  237.                             "name":"LevelSlot",
  238.                             "type":"image",
  239.                             "x":25,
  240.                             "y":5,
  241.                             "image":"illumina/level_round.tga",
  242.                             "children":
  243.                             (
  244.                                 {"name":"LevelText","type":"text","text":"|cfff8d09099","x":1,"y":-1,"all_align":"center",},
  245.                             ),
  246.                         },
  247.                         {"name":"PercentExp","type":"text","text":"|cfff8d090100.00%","x":25,"y":40,},
  248.                         {"name":"PlayerExp","type":"text","text":"|cffa08784EXP:","x":75,"y":40,},
  249.                         {"name":"NextLvlExp","type":"text","text":"|cffa08784NEXT:","x":170,"y":40,},
  250.                         {
  251.                             "name":"ExpImgEmpty",
  252.                             "type":"image",
  253.                             "x":15,
  254.                             "y":50,
  255.                             "image":"illumina/exp_gauge_empty.tga",
  256.                             "children":
  257.                             (
  258.                                 {
  259.                                     "name":"ExpImgFull",
  260.                                     "type":"ani_image",
  261.                                     "x":0,
  262.                                     "y":0,
  263.                                     "images":
  264.                                     (
  265.                                         "illumina/exp_gauge_full.tga",
  266.                                     )
  267.                                 },
  268.                             )
  269.                         },
  270.                     ),
  271.                 },
  272.                 {
  273.                     "name":"separator",
  274.                     "type":"verticalseparator",
  275.                     "x":280,
  276.                     "y":36,
  277.                     "height":345,
  278.                 },
  279.                 {
  280.                     "name":"separator1",
  281.                     "type":"horizontalseparator",
  282.                     "x":12,
  283.                     "y":104,
  284.                     "width":273,
  285.                 },
  286.                 ######################
  287.                 #STAŁE OKIENKO KONIEC#
  288.                 ######################
  289.  
  290.                 ## Page Area
  291.                 {
  292.                     "name" : "Character_Page",
  293.                     "type" : "window",
  294.                     "style" : ("attach",),
  295.  
  296.                     "x" : 10,
  297.                     "y" : 105,
  298.  
  299.                     "width" : 280,
  300.                     "height" : 280,
  301.  
  302.                     "children" :
  303.                     (
  304.                
  305.                
  306.                 ############################
  307.                 #OKIENKO Z HP I PE POCZĄTEK#
  308.                 ############################
  309.                         {
  310.                             "name":"CharWindow1",
  311.                             "type":"window",
  312.                             "width":280,
  313.                             "height":110,
  314.                             "x":0,
  315.                             "y":0,
  316.                             "children":
  317.                             (
  318.                                 {
  319.                                     "name":"HeaderWnd1",
  320.                                     "type":"image",
  321.                                     "x":35,
  322.                                     "y":5,
  323.                                     "image":"illumina/header.tga",
  324.                                     "all_align":"center",
  325.                                     "children":
  326.                                     (
  327.                                         {"name":"Header1Text","type":"text","text":"|cfff8d09eStatus","x":0,"y":0,"all_align":"center",},
  328.                                     )
  329.                                 },
  330.                                 {"name":"TextHP","type":"text","text":"|cffa08784(HP) Zdrowie:","x":50,"y":45,},
  331.                                 {
  332.                                     "name":"BgHP",
  333.                                     "type":"expanded_image",
  334.                                     "x":140,
  335.                                     "y":43,
  336.                                     "image":"illumina/text_slot_big.tga",
  337.                                     "x_scale":1.0,
  338.                                     "y_scale":0.8,
  339.                                     "children":
  340.                                     (
  341.                                         {
  342.                                             "name":"PlayerHpText",
  343.                                             "type":"text",
  344.                                             "text":"|cffa079709999/9999",
  345.                                             "x":0,
  346.                                             "y":0,
  347.                                             "all_align":"center",
  348.                                         },
  349.                                     ),
  350.                                 },
  351.                                 {"name":"TextPE","type":"text","text":"|cffa08784(PE) Energia:","x":50,"y":70,},
  352.                                 {
  353.                                     "name":"BgPE",
  354.                                     "type":"expanded_image",
  355.                                     "x":140,
  356.                                     "y":70,
  357.                                     "image":"illumina/text_slot_big.tga",
  358.                                     "x_scale":1.0,
  359.                                     "y_scale":0.8,
  360.                                     "children":
  361.                                     (
  362.                                         {
  363.                                             "name":"PlayerPeText",
  364.                                             "type":"text",
  365.                                             "text":"|cffa079709999/9999",
  366.                                             "x":0,
  367.                                             "y":0,
  368.                                             "all_align":"center",
  369.                                         },
  370.                                     ),
  371.                                 },
  372.                             ),
  373.                         },
  374.                         ##########################
  375.                         #OKIENKO Z HP I PE KONIEC#
  376.                         ##########################
  377.                         {
  378.                             "name":"separator1",
  379.                             "type":"horizontalseparator",
  380.                             "x":2,
  381.                             "y":99,
  382.                             "width":273,
  383.                         },
  384.                         ####################################
  385.                         #OKIENKO Z CECHAMI POSTACI POCZĄTEK#
  386.                         ####################################
  387.                         {
  388.                             "name":"CharWindow2",
  389.                             "type":"window",
  390.                             "width":280,
  391.                             "height":180,
  392.                             "x":0,
  393.                             "y":100,
  394.                             "children":
  395.                             (
  396.                                 {"name":"StatusPoints","type":"text","text":"|cffa08784Dostępne punkty [|cfff8d09010|cffa08784]","x":0,"y":-65,"all_align":"center",},
  397.                                 {"name":"WitText","type":"text","text":"|cffa08784(WIT) Witalność:","x":50,"y":50,},
  398.                                 {"name":"IntText","type":"text","text":"|cffa08784(INT) Inteligencja:","x":50,"y":75,},
  399.                                 {"name":"StrText","type":"text","text":"|cffa08784(SIŁ) Siła:","x":50,"y":100,},
  400.                                 {"name":"ZreText","type":"text","text":"|cffa08784(ZRE) Zręczność:","x":50,"y":125,},
  401.                        
  402.                        
  403.                                 {
  404.                                     "name":"WitalnoscBg",
  405.                                     "type":"expanded_image",
  406.                                     "x":180,
  407.                                     "y":48,
  408.                                     "image":"illumina/text_slot_big.tga",
  409.                                     "x_scale":0.35,
  410.                                     "y_scale":0.65,
  411.                                     "children":
  412.                                     (
  413.                                         {"name":"WitPointsText","type":"text","text":"|cffa07970125","x":0,"y":0,"all_align":"center",},
  414.                                     ),
  415.                                 },
  416.                                 {
  417.                                     "name":"InteligencjaBg",
  418.                                     "type":"expanded_image",
  419.                                     "x":180,
  420.                                     "y":73,
  421.                                     "image":"illumina/text_slot_big.tga",
  422.                                     "x_scale":0.35,
  423.                                     "y_scale":0.65,
  424.                                     "children":
  425.                                     (
  426.                                         {"name":"IntPointsText","type":"text","text":"|cffa07970125","x":0,"y":0,"all_align":"center",},
  427.                                     ),
  428.                                 },
  429.                                 {
  430.                                     "name":"SilaBg",
  431.                                     "type":"expanded_image",
  432.                                     "x":180,
  433.                                     "y":98,
  434.                                     "image":"illumina/text_slot_big.tga",
  435.                                     "x_scale":0.35,
  436.                                     "y_scale":0.65,
  437.                                     "children":
  438.                                     (
  439.                                         {"name":"StrPointsText","type":"text","text":"|cffa07970125","x":0,"y":0,"all_align":"center",},
  440.                                     ),
  441.                                 },
  442.                                 {
  443.                                     "name":"ZrecznoscBg",
  444.                                     "type":"expanded_image",
  445.                                     "x":180,
  446.                                     "y":123,
  447.                                     "image":"illumina/text_slot_big.tga",
  448.                                     "x_scale":0.35,
  449.                                     "y_scale":0.65,
  450.                                     "children":
  451.                                     (
  452.                                         {"name":"ZrePointsText","type":"text","text":"|cffa07970125","x":0,"y":0,"all_align":"center",},
  453.                                     ),
  454.                                 },
  455.                        
  456.                        
  457.                                 { "name":"HTH_Plus", "type" : "button", "x":217, "y":48, "default_image" : "illumina/buttons/plus_n.tga", "over_image" : "illumina/buttons/plus_h.tga", "down_image" : "illumina/buttons/plus_a.tga", },
  458.                                 { "name":"INT_Plus", "type" : "button", "x" : 217, "y":73, "default_image" : "illumina/buttons/plus_n.tga", "over_image" : "illumina/buttons/plus_h.tga", "down_image" : "illumina/buttons/plus_a.tga", },
  459.                                 { "name":"STR_Plus", "type" : "button", "x" : 217, "y":98, "default_image" : "illumina/buttons/plus_n.tga", "over_image" : "illumina/buttons/plus_h.tga", "down_image" : "illumina/buttons/plus_a.tga", },
  460.                                 { "name":"DEX_Plus", "type" : "button", "x" : 217, "y":123, "default_image" : "illumina/buttons/plus_n.tga", "over_image" : "illumina/buttons/plus_h.tga", "down_image" : "illumina/buttons/plus_a.tga", },
  461.                        
  462.                        
  463.                                 { "name":"HTH_Minus", "type" : "button", "x":160, "y":48, "default_image" : "illumina/buttons/minus_n.tga", "over_image" : "illumina/buttons/minus_h.tga", "down_image" : "illumina/buttons/minus_a.tga", },
  464.                                 { "name":"INT_Minus", "type" : "button", "x":160, "y":73, "default_image" : "illumina/buttons/minus_n.tga", "over_image" : "illumina/buttons/minus_h.tga", "down_image" : "illumina/buttons/minus_a.tga", },
  465.                                 { "name":"STR_Minus", "type" : "button", "x":160, "y":98, "default_image" : "illumina/buttons/minus_n.tga", "over_image" : "illumina/buttons/minus_h.tga", "down_image" : "illumina/buttons/minus_a.tga", },
  466.                                 { "name":"DEX_Minus", "type" : "button", "x":160, "y":123, "default_image" : "illumina/buttons/minus_n.tga", "over_image" : "illumina/buttons/minus_h.tga", "down_image" : "illumina/buttons/minus_a.tga", },
  467.                             ),
  468.                         },
  469.                         ##################################
  470.                         #OKIENKO Z CECHAMI POSTACI KONIEC#
  471.                         ##################################
  472.                     ),
  473.                 },
  474.                 {
  475.                     "name" : "Stats_Page",
  476.                     "type" : "window",
  477.                     "style" : ("attach",),
  478.  
  479.                     "x" : 10,
  480.                     "y" : 105,
  481.  
  482.                     "width" : 280,
  483.                     "height" : 280,
  484.  
  485.                     "children" :
  486.                     (
  487.                         {
  488.                             "name" : "StatusBoard",
  489.                             "type" : "window",
  490.  
  491.                             "x" : 0,
  492.                             "y" : 0,
  493.  
  494.                             "width" : 280,
  495.                             "height" : 280,
  496.                    
  497.                             "children":
  498.                             (
  499.                                 {
  500.                                     "name":"HeaderWnd1",
  501.                                     "type":"image",
  502.                                     "x":35,
  503.                                     "y":5,
  504.                                     "image":"illumina/header.tga",
  505.                                     "all_align":"center",
  506.                                     "children":
  507.                                     (
  508.                                         {"name":"Header1Text","type":"text","text":"|cfff8d09eStatystyki","x":0,"y":0,"all_align":"center",},
  509.                                     ),
  510.                                 },
  511.                                 {"name":"MoveSpeedText","type":"text","x":40,"y":50,"text":"|cffa08784Szybkość ruchu:",},
  512.                                 {
  513.                                     "name":"MoveSpeedBg",
  514.                                     "type":"expanded_image",
  515.                                     "x":155,
  516.                                     "y":50,
  517.                                     "image":"illumina/text_slot_big.tga",
  518.                                     "x_scale":0.65,
  519.                                     "y_scale":0.65,
  520.                                     "children":
  521.                                     (
  522.                                         {"name":"MoveSpeedValue","type":"text","text":"|cffa07970125","x":0,"y":0,"all_align":"center",},
  523.                                     ),
  524.                                 },
  525.                                
  526.                                
  527.                                 {"name":"AttackSpeedText","type":"text","x":40,"y":75,"text":"|cffa08784Szybkość ataku:",},
  528.                                 {
  529.                                     "name":"AttackSpeedBg",
  530.                                     "type":"expanded_image",
  531.                                     "x":155,
  532.                                     "y":75,
  533.                                     "image":"illumina/text_slot_big.tga",
  534.                                     "x_scale":0.65,
  535.                                     "y_scale":0.65,
  536.                                     "children":
  537.                                     (
  538.                                         {"name":"AttackSpeedValue","type":"text","text":"|cffa07970125","x":0,"y":0,"all_align":"center",},
  539.                                     ),
  540.                                 },
  541.                                
  542.                                
  543.                                 {"name":"MagicSpeedText","type":"text","x":40,"y":100,"text":"|cffa08784Szybkość zaklęcia:",},
  544.                                 {
  545.                                     "name":"MagicSpeedBg",
  546.                                     "type":"expanded_image",
  547.                                     "x":155,
  548.                                     "y":100,
  549.                                     "image":"illumina/text_slot_big.tga",
  550.                                     "x_scale":0.65,
  551.                                     "y_scale":0.65,
  552.                                     "children":
  553.                                     (
  554.                                         {"name":"MagicSpeedValue","type":"text","text":"|cffa07970125","x":0,"y":0,"all_align":"center",},
  555.                                     ),
  556.                                 },
  557.                                
  558.                                
  559.                                 {"name":"AttackValueText","type":"text","x":40,"y":125,"text":"|cffa08784Wartość ataku:",},
  560.                                 {
  561.                                     "name":"AttackValueBg",
  562.                                     "type":"expanded_image",
  563.                                     "x":155,
  564.                                     "y":125,
  565.                                     "image":"illumina/text_slot_big.tga",
  566.                                     "x_scale":0.65,
  567.                                     "y_scale":0.65,
  568.                                     "children":
  569.                                     (
  570.                                         {"name":"AttackValue","type":"text","text":"|cffa07970125-250","x":0,"y":0,"all_align":"center",},
  571.                                     ),
  572.                                 },
  573.                                
  574.                                
  575.                                 {"name":"MagicAttackValueText","type":"text","x":40,"y":150,"text":"|cffa08784Wartość mag. ataku:",},
  576.                                 {
  577.                                     "name":"MagicAttackValueBg",
  578.                                     "type":"expanded_image",
  579.                                     "x":155,
  580.                                     "y":150,
  581.                                     "image":"illumina/text_slot_big.tga",
  582.                                     "x_scale":0.65,
  583.                                     "y_scale":0.65,
  584.                                     "children":
  585.                                     (
  586.                                         {"name":"MagicAttackValue","type":"text","text":"|cffa07970125-250","x":0,"y":0,"all_align":"center",},
  587.                                     ),
  588.                                 },
  589.                                
  590.                                
  591.                                 {"name":"MagicDefText","type":"text","x":40,"y":175,"text":"|cffa08784Obrona magiczna:",},
  592.                                 {
  593.                                     "name":"MagicDefValueBg",
  594.                                     "type":"expanded_image",
  595.                                     "x":155,
  596.                                     "y":175,
  597.                                     "image":"illumina/text_slot_big.tga",
  598.                                     "x_scale":0.65,
  599.                                     "y_scale":0.65,
  600.                                     "children":
  601.                                     (
  602.                                         {"name":"MagicDefValue","type":"text","text":"|cffa07970125","x":0,"y":0,"all_align":"center",},
  603.                                     ),
  604.                                 },
  605.                                
  606.                                
  607.                                 {"name":"DefText","type":"text","x":40,"y":200,"text":"|cffa08784Obrona:",},
  608.                                 {
  609.                                     "name":"DefValueBg",
  610.                                     "type":"expanded_image",
  611.                                     "x":155,
  612.                                     "y":200,
  613.                                     "image":"illumina/text_slot_big.tga",
  614.                                     "x_scale":0.65,
  615.                                     "y_scale":0.65,
  616.                                     "children":
  617.                                     (
  618.                                         {"name":"DefValue","type":"text","text":"|cffa07970125","x":0,"y":0,"all_align":"center",},
  619.                                     ),
  620.                                 },
  621.                                
  622.                                
  623.                                 {"name":"UnikiText","type":"text","x":40,"y":225,"text":"|cffa08784Uniki:",},
  624.                                 {
  625.                                     "name":"UnikiValueBg",
  626.                                     "type":"expanded_image",
  627.                                     "x":155,
  628.                                     "y":225,
  629.                                     "image":"illumina/text_slot_big.tga",
  630.                                     "x_scale":0.65,
  631.                                     "y_scale":0.65,
  632.                                     "children":
  633.                                     (
  634.                                         {"name":"UnikiValue","type":"text","text":"|cffa07970125","x":0,"y":0,"all_align":"center",},
  635.                                     ),
  636.                                 },
  637.                             ),
  638.                         },
  639.                     ),
  640.                 },
  641.                 {
  642.                     "name" : "Skill_Page",
  643.                     "type" : "window",
  644.                     "style" : ("attach",),
  645.  
  646.                     "x" : 10,
  647.                     "y" : 105,
  648.  
  649.                     "width" : 280,
  650.                     "height" : 280,
  651.  
  652.                     "children" :
  653.                     (
  654.                         {
  655.                             "name":"SkillBoard",
  656.                             "type":"window",
  657.                             "x":0,
  658.                             "y":0,
  659.                             "width":280,
  660.                             "height":280,
  661.                             "children":
  662.                             (
  663.                                 {
  664.                                     "name":"HeaderWnd1",
  665.                                     "type":"image",
  666.                                     "x":35,
  667.                                     "y":15+5,
  668.                                     "image":"illumina/header.tga",
  669.                                     "all_align":"center",
  670.                                     "children":
  671.                                     (
  672.                                         {"name":"Header1Text","type":"text","text":"|cfff8d09eUmiejętności postaci","x":0,"y":0,"all_align":"center",},
  673.                                     )
  674.                                 },
  675.                                 ## Group Button
  676.                                 {
  677.                                     "name" : "Skill_Group_Button_1",
  678.                                     "type" : "radio_button",
  679.  
  680.                                     "x" : 10,
  681.                                     "y" : 10,
  682.  
  683.                                     "text" : "Group1",
  684.                                     "text_color" : 0xFFFFE3AD,
  685.  
  686.                                     "default_image" : "illumina/button/btn1_01.tga",
  687.                                     "over_image" : "illumina/button/btn1_02.tga",
  688.                                     "down_image" : "illumina/button/btn1_03.tga",
  689.                                 },
  690.  
  691.                                 {
  692.                                     "name" : "Skill_Group_Button_2",
  693.                                     "type" : "radio_button",
  694.  
  695.                                     "x" : 50+19,
  696.                                     "y" : 10,
  697.  
  698.                                     "text" : "Group2",
  699.                                     "text_color" : 0xFFFFE3AD,
  700.  
  701.                                     "default_image" : "illumina/button/btn1_01.tga",
  702.                                     "over_image" : "illumina/button/btn1_02.tga",
  703.                                     "down_image" : "illumina/button/btn1_03.tga",
  704.                                 },
  705.  
  706.                                 {
  707.                                     "name" : "Active_Skill_Group_Name",
  708.                                     "type" : "text",
  709.                                     "x" : 15,
  710.                                     "y" : 10,
  711.                                     "text" : "Active",
  712.                                     "color" : 0xFFFFE3AD,
  713.                                 },
  714.                                 { "name":"Active_Skill_Point_Value", "type":"text", "x":70, "y":12, "text":"99", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center", "horizontal_align":"center" },
  715.                                 #{ "name":"Skill_Board", "type":"image", "x":13, "y":38, "image":"d:/ymir work/ui/game/windows/skill_board.sub", },
  716.  
  717.                                 ## Active Slot
  718.                                 {
  719.                                     "name" : "Skill_Active_Slot",
  720.                                     "type" : "slot",
  721.  
  722.                                     "x" : 0 + 40,
  723.                                     "y" : 0 + 15 + 30+5,
  724.  
  725.                                     "width" : 223,
  726.                                     "height" : 223,
  727.                                     "image" : "illumina/slot.tga",
  728.  
  729.                                     "slot" :    (
  730.                                                     {"index": 1, "x": 1, "y":  4, "width":32, "height":32},
  731.                                                     {"index":21, "x":33, "y":  4, "width":32, "height":32},
  732.                                                     {"index":41, "x":65, "y":  4, "width":32, "height":32},
  733.  
  734.                                                     {"index": 3, "x": 1, "y": 40, "width":32, "height":32},
  735.                                                     {"index":23, "x":33, "y": 40, "width":32, "height":32},
  736.                                                     {"index":43, "x":65, "y": 40, "width":32, "height":32},
  737.  
  738.                                                     {"index": 5, "x": 1, "y": 76, "width":32, "height":32},
  739.                                                     {"index":25, "x":33, "y": 76, "width":32, "height":32},
  740.                                                     {"index":45, "x":65, "y": 76, "width":32, "height":32},
  741.  
  742.  
  743.                                                     ####
  744.  
  745.                                                     {"index": 2, "x":103, "y":  4, "width":32, "height":32},
  746.                                                     {"index":22, "x":135, "y":  4, "width":32, "height":32},
  747.                                                     {"index":42, "x":167, "y":  4, "width":32, "height":32},
  748.  
  749.                                                     {"index": 4, "x":103, "y": 40, "width":32, "height":32},
  750.                                                     {"index":24, "x":135, "y": 40, "width":32, "height":32},
  751.                                                     {"index":44, "x":167, "y": 40, "width":32, "height":32},
  752.  
  753.                                                     {"index": 6, "x":103, "y": 76, "width":32, "height":32},
  754.                                                     {"index":26, "x":135, "y": 76, "width":32, "height":32},
  755.                                                     {"index":46, "x":167, "y": 76, "width":32, "height":32},
  756.  
  757.                                                 ),
  758.                                 },
  759.                                 {
  760.                                     "name":"HeaderWnd1",
  761.                                     "type":"image",
  762.                                     "x":35,
  763.                                     "y":155,
  764.                                     "image":"illumina/header.tga",
  765.                                     "all_align":"center",
  766.                                     "children":
  767.                                     (
  768.                                         {"name":"Header1Text","type":"text","text":"|cfff8d09eStandardowe umiejętności","x":0,"y":0,"all_align":"center",},
  769.                                     )
  770.                                 },
  771.  
  772.                                 ## ETC Slot
  773.                                 {
  774.                                     "name" : "Skill_ETC_Slot",
  775.                                     "type" : "grid_table",
  776.                                     "x" : 45,
  777.                                     "y" : 190,
  778.                                     "start_index" : 101,
  779.                                     "x_count" : 6,
  780.                                     "y_count" : 2,
  781.                                     "x_step" : 32,
  782.                                     "y_step" : 32,
  783.                                     "x_blank" : 0,
  784.                                     "y_blank" : 0,
  785.                                     "image" : "illumina/slot.tga",
  786.                                 },
  787.                             ),
  788.                         },
  789.                     ),
  790.                 },
  791.                 {
  792.                     "name" : "Emoticon_Page",
  793.                     "type" : "window",
  794.                     "style" : ("attach",),
  795.  
  796.                     "x" : 10,
  797.                     "y" : 105,
  798.  
  799.                     "width":280,
  800.                     "height":280,
  801.  
  802.                     "children" :
  803.                     (
  804.                         {
  805.                             "name":"EmoticonBoard",
  806.                             "type":"window",
  807.                             "x":0,
  808.                             "y":0,
  809.                             "width":280,
  810.                             "height":280,
  811.                             "children":
  812.                             (
  813.                         ## ±âş» ľ×ĽÇ Á¦¸ń
  814.                                 {
  815.                                     "name":"HeaderWnd1",
  816.                                     "type":"image",
  817.                                     "x":35,
  818.                                     "y":5,
  819.                                     "image":"illumina/header.tga",
  820.                                     "all_align":"center",
  821.                                     "children":
  822.                                     (
  823.                                         {"name":"Header1Text","type":"text","text":"|cfff8d09eEmocje podstawowe","x":0,"y":0,"all_align":"center",},
  824.                                     )
  825.                                 },
  826.  
  827.                                 ## Basis Action Slot
  828.                                 {
  829.                                     "name" : "SoloEmotionSlot",
  830.                                     "type" : "grid_table",
  831.                                     "x" : 43,
  832.                                     "y" : 40,
  833.                                     "horizontal_align" : "center",
  834.                                     "start_index" : 1,
  835.                                     "x_count" : 6,
  836.                                     "y_count" : 3,
  837.                                     "x_step" : 32,
  838.                                     "y_step" : 32,
  839.                                     "x_blank" : 0,
  840.                                     "y_blank" : 0,
  841.                                     "image" : "illumina/slot.tga",
  842.                                 },
  843.  
  844.                                 ## »óČŁ ľ×ĽÇ Á¦¸ń
  845.                                 {
  846.                                     "name":"HeaderWnd2",
  847.                                     "type":"image",
  848.                                     "x":35,
  849.                                     "y":135,
  850.                                     "image":"illumina/header.tga",
  851.                                     "all_align":"center",
  852.                                     "children":
  853.                                     (
  854.                                         {"name":"Header1Text","type":"text","text":"|cfff8d09eEmocje wspólne","x":0,"y":0,"all_align":"center",},
  855.                                     )
  856.                                 },
  857.  
  858.                                 ## Reaction Slot
  859.                                 {
  860.                                     "name" : "DualEmotionSlot",
  861.                                     "type" : "grid_table",
  862.                                     "x" : 43,
  863.                                     "y" : 170,
  864.                                     "start_index" : 51,
  865.                                     "x_count" : 6,
  866.                                     "y_count" : 3,
  867.                                     "x_step" : 32,
  868.                                     "y_step" : 32,
  869.                                     "x_blank" : 0,
  870.                                     "y_blank" : 0,
  871.                                     "image" : "illumina/slot.tga",
  872.                                 },
  873.                             ),
  874.                         },
  875.                     ),
  876.                 },
  877.                 {
  878.                     "name" : "Quest_Page",
  879.                     "type" : "window",
  880.                     "style" : ("attach",),
  881.  
  882.                     "x" : 10,
  883.                     "y" : 105,
  884.  
  885.                     "width" : 280,
  886.                     "height" : 304,
  887.  
  888.                     "children" :
  889.                     (
  890.                         {
  891.                             "name":"QuestBoard",
  892.                             "type":"window",
  893.                             "x":0,
  894.                             "y":0,
  895.                             "width":280,
  896.                             "height":280,
  897.                             "children":
  898.                             (
  899.                                 {
  900.                                     "name":"HeaderWnd1",
  901.                                     "type":"image",
  902.                                     "x":35,
  903.                                     "y":5,
  904.                                     "image":"illumina/header.tga",
  905.                                     "all_align":"center",
  906.                                     "children":
  907.                                     (
  908.                                         {"name":"Header1Text","type":"text","text":"|cfff8d09eZadania","x":0,"y":0,"all_align":"center",},
  909.                                     )
  910.                                 },
  911.                                 {
  912.                                     "name" : "Quest_Slot",
  913.                                     "type" : "grid_table",
  914.                                     "x" : 38,
  915.                                     "y" : 40,
  916.                                     "start_index" : 0,
  917.                                     "x_count" : 1,
  918.                                     "y_count" : 5,
  919.                                     "x_step" : 32,
  920.                                     "y_step" : 32,
  921.                                     "y_blank" : 10,
  922.                                     "image" : "locale/pl/icon/scroll_close.tga",
  923.                                 },
  924.  
  925.                                 {
  926.                                     "name" : "Quest_ScrollBar",
  927.                                     "type" : "scrollbar",
  928.  
  929.                                     "x" : 35,
  930.                                     "y" : 30,
  931.                                     "size" : 230,
  932.                                     "horizontal_align" : "right",
  933.                                 },
  934.  
  935.                                 { "name" : "Quest_Name_00", "type" : "text", "text" : "Ŕ̸§ŔÔ´Ď´Ů", "x" : 80, "y" : 40 },
  936.                                 { "name" : "Quest_LastTime_00", "type" : "text", "text" : "ł˛Ŕş ˝Ă°Ł ŔÔ´Ď´Ů", "x" : 80, "y" : 55 },
  937.                                 { "name" : "Quest_LastCount_00", "type" : "text", "text" : "ł˛Ŕş °łĽö ŔÔ´Ď´Ů", "x" : 80, "y" : 70 },
  938.  
  939.                                 { "name" : "Quest_Name_01", "type" : "text", "text" : "Ŕ̸§ŔÔ´Ď´Ů", "x" : 80, "y" : 83 },
  940.                                 { "name" : "Quest_LastTime_01", "type" : "text", "text" : "ł˛Ŕş ˝Ă°Ł ŔÔ´Ď´Ů", "x" : 80, "y" : 98 },
  941.                                 { "name" : "Quest_LastCount_01", "type" : "text", "text" : "ł˛Ŕş °łĽö ŔÔ´Ď´Ů", "x" : 80, "y" : 113 },
  942.  
  943.                                 { "name" : "Quest_Name_02", "type" : "text", "text" : "Ŕ̸§ŔÔ´Ď´Ů", "x" : 80, "y" : 126 },
  944.                                 { "name" : "Quest_LastTime_02", "type" : "text", "text" : "ł˛Ŕş ˝Ă°Ł ŔÔ´Ď´Ů", "x" : 80, "y" : 141 },
  945.                                 { "name" : "Quest_LastCount_02", "type" : "text", "text" : "ł˛Ŕş °łĽö ŔÔ´Ď´Ů", "x" : 80, "y" : 156 },
  946.  
  947.                                 { "name" : "Quest_Name_03", "type" : "text", "text" : "Ŕ̸§ŔÔ´Ď´Ů", "x" : 80, "y" : 169 },
  948.                                 { "name" : "Quest_LastTime_03", "type" : "text", "text" : "ł˛Ŕş ˝Ă°Ł ŔÔ´Ď´Ů", "x" : 80, "y" : 184 },
  949.                                 { "name" : "Quest_LastCount_03", "type" : "text", "text" : "ł˛Ŕş °łĽö ŔÔ´Ď´Ů", "x" : 80, "y" : 199 },
  950.  
  951.                                 { "name" : "Quest_Name_04", "type" : "text", "text" : "Ŕ̸§ŔÔ´Ď´Ů", "x" : 80, "y" : 206 },
  952.                                 { "name" : "Quest_LastTime_04", "type" : "text", "text" : "ł˛Ŕş ˝Ă°Ł ŔÔ´Ď´Ů", "x" : 80, "y" : 221 },
  953.                                 { "name" : "Quest_LastCount_04", "type" : "text", "text" : "ł˛Ŕş °łĽö ŔÔ´Ď´Ů", "x" : 80, "y" : 236 },
  954.                             ),
  955.                         },
  956.                     ),
  957.                 },
  958.                 {
  959.                
  960.                     "name" : "Bonus_Page",
  961.                     "type" : "window",
  962.                     "style" : ("attach",),
  963.  
  964.                     "x" : 10,
  965.                     "y" : 105,
  966.  
  967.                     "width" : 280,
  968.                     "height" : 280,
  969.  
  970.                     "children" :
  971.                     (
  972.                         {
  973.                             "name" : "Bonus_ScrollBar1",
  974.                             "type" : "scrollbar",
  975.  
  976.                             "x" : 35,
  977.                             "y" : 30,
  978.                             "size" : 230-12,
  979.                             "horizontal_align" : "right",
  980.                         },
  981.                         {
  982.                             "name" : "Bonusy_Button_Ogolne",
  983.                             "type" : "button",
  984.  
  985.                             "x" : 10,
  986.                             "y" : 250-5,
  987.  
  988.                             "text" : "|cffe6d0a2Ogólne",
  989.  
  990.                             "default_image" : "illumina/inne/btn_kod1_01.tga",
  991.                             "over_image" : "illumina/inne/btn_kod1_02.tga",
  992.                             "down_image" : "illumina/inne/btn_kod1_03.tga",
  993.                         },
  994.                         {
  995.                             "name" : "Bonusy_Button_PVP",
  996.                             "type" : "button",
  997.  
  998.                             "x" : 10+76,
  999.                             "y" : 250-5,
  1000.  
  1001.                             "text" : "|cffe6d0a2PVP",
  1002.  
  1003.                             "default_image" : "illumina/inne/btn_kod1_01.tga",
  1004.                             "over_image" : "illumina/inne/btn_kod1_02.tga",
  1005.                             "down_image" : "illumina/inne/btn_kod1_03.tga",
  1006.                         },
  1007.                         {
  1008.                             "name" : "Bonusy_Button_PVM",
  1009.                             "type" : "button",
  1010.  
  1011.                             "x" : 10+76*2,
  1012.                             "y" : 250-5,
  1013.  
  1014.                             "text" : "|cffe6d0a2PVM",
  1015.  
  1016.                             "default_image" : "illumina/inne/btn_kod1_01.tga",
  1017.                             "over_image" : "illumina/inne/btn_kod1_02.tga",
  1018.                             "down_image" : "illumina/inne/btn_kod1_03.tga",
  1019.                         },
  1020.                         {
  1021.                             "name" : "I_Page",
  1022.                             "type" : "window",
  1023.                             "style" : ("attach",),
  1024.  
  1025.                             "x" : 0,
  1026.                             "y" : 35,
  1027.  
  1028.                             "width" : 150,
  1029.                             "height" : 150,
  1030.  
  1031.                             "children" :
  1032.                             (
  1033.                                 {
  1034.                                     "name":"Bonus_Name_Klass",
  1035.                                     "type":"image",
  1036.                                     "x":35,
  1037.                                     "y":-30,
  1038.                                     "image":"illumina/header.tga",
  1039.                                     "all_align":"center",
  1040.                                     "children":
  1041.                                     (
  1042.                                         {"name":"Header1Text","type":"text","text":"|cfff8d09eBonusy Ogólne","x":0,"y":0,"all_align":"center",},
  1043.                                     )
  1044.                                 },
  1045.                                 #1
  1046.                                 { "name":"Bon1o", "type":"text", "x":20, "y":5+2, "text":"Odporność na Miecze:" },
  1047.                                 {
  1048.                                     "name":"Bon1_Ramka_All", "type":"window", "x":20+150, "y":5, "width":50, "height":20,
  1049.                                     "children" :
  1050.                                     (
  1051.                                         { "name":"Bon_RamkaTGA", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
  1052.                                         { "name":"Bon1_Ramka", "type":"text", "x":71/2, "y":2, "text":"", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
  1053.                                     )
  1054.                                 },
  1055.                                 #2
  1056.                                 { "name":"Bon2o", "type":"text", "x":20, "y":25+2, "text":"Odporność na broń dwuręczną:" },
  1057.                                 {
  1058.                                     "name":"Bon2_Ramka_All", "type":"window", "x":20+150, "y":25, "width":50, "height":20,
  1059.                                     "children" :
  1060.                                     (
  1061.                                         { "name":"Bon_RamkaTGA", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
  1062.                                         { "name":"Bon2_Ramka", "type":"text", "x":71/2, "y":2, "text":"", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
  1063.                                     )
  1064.                                 },
  1065.                                 #3
  1066.                                 { "name":"Bon3o", "type":"text", "x":20, "y":45+2, "text":"Odporność na sztylety:" },
  1067.                                 {
  1068.                                     "name":"Bon3_Ramka_All", "type":"window", "x":20+150, "y":45, "width":50, "height":20,
  1069.                                     "children" :
  1070.                                     (
  1071.                                         { "name":"Bon_RamkaTGA", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
  1072.                                         { "name":"Bon3_Ramka", "type":"text", "x":71/2, "y":2, "text":"", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
  1073.                                     )
  1074.                                 },
  1075.                                 #4
  1076.                                 { "name":"Bon4o", "type":"text", "x":20, "y":65+2, "text":"Odporność na dzwony:" },
  1077.                                 {
  1078.                                     "name":"Bon4_Ramka_All", "type":"window", "x":20+150, "y":65, "width":50, "height":20,
  1079.                                     "children" :
  1080.                                     (
  1081.                                         { "name":"Bon_RamkaTGA", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
  1082.                                         { "name":"Bon4_Ramka", "type":"text", "x":71/2, "y":2, "text":"", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
  1083.                                     )
  1084.                                 },
  1085.                                 #5
  1086.                                 { "name":"Bon5o", "type":"text", "x":20, "y":85+2, "text":"Odporność na wachlarze:" },
  1087.                                 {
  1088.                                     "name":"Bon5_Ramka_All", "type":"window", "x":20+150, "y":86, "width":50, "height":20,
  1089.                                     "children" :
  1090.                                     (
  1091.                                         { "name":"Bon_RamkaTGA", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
  1092.                                         { "name":"Bon5_Ramka", "type":"text", "x":71/2, "y":2, "text":"", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
  1093.                                     )
  1094.                                 },
  1095.                                 #6
  1096.                                 { "name":"Bon6o", "type":"text", "x":20, "y":105+2, "text":"Odporność na łuki:" },
  1097.                                 {
  1098.                                     "name":"Bon6_Ramka_All", "type":"window", "x":20+150, "y":105, "width":50, "height":20,
  1099.                                     "children" :
  1100.                                     (
  1101.                                         { "name":"Bon_RamkaTGA", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
  1102.                                         { "name":"Bon6_Ramka", "type":"text", "x":71/2, "y":2, "text":"", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
  1103.                                     )
  1104.                                 },
  1105.                                 #7
  1106.                                 { "name":"Bon7o", "type":"text", "x":20, "y":125+2, "text":"Odporność na magie:" },
  1107.                                 {
  1108.                                     "name":"Bon7_Ramka_All", "type":"window", "x":20+150, "y":125, "width":50, "height":20,
  1109.                                     "children" :
  1110.                                     (
  1111.                                         { "name":"Bon_RamkaTGA", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
  1112.                                         { "name":"Bon7_Ramka", "type":"text", "x":71/2, "y":2, "text":"", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
  1113.                                     )
  1114.                                 },
  1115.                                 #8
  1116.                                 { "name":"Bon8o", "type":"text", "x":20, "y":145+2, "text":"Odporność na trucizny:" },
  1117.                                 {
  1118.                                     "name":"Bon8_Ramka_All", "type":"window", "x":20+150, "y":145, "width":50, "height":20,
  1119.                                     "children" :
  1120.                                     (
  1121.                                         { "name":"Bon_RamkaTGA", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
  1122.                                         { "name":"Bon8_Ramka", "type":"text", "x":71/2, "y":2, "text":"", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
  1123.                                     )
  1124.                                 },
  1125.                                 #9
  1126.                                 { "name":"Bon9o", "type":"text", "x":20, "y":165+2, "text":"Szansa na cios krytyczny:" },
  1127.                                 {
  1128.                                     "name":"Bon9_Ramka_All", "type":"window", "x":20+150, "y":165, "width":50, "height":20,
  1129.                                     "children" :
  1130.                                     (
  1131.                                         { "name":"Bon_RamkaTGA", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
  1132.                                         { "name":"Bon9_Ramka", "type":"text", "x":71/2, "y":2, "text":"", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
  1133.                                     )
  1134.                                 },
  1135.                                 #10
  1136.                                 { "name":"Bon10o", "type":"text", "x":20, "y":185+2, "text":"Szansa na przeszywające uderzenie:" },
  1137.                                 {
  1138.                                     "name":"Bon10_Ramka_All", "type":"window", "x":20+150, "y":185, "width":50, "height":20,
  1139.                                     "children" :
  1140.                                     (
  1141.                                         { "name":"Bon_RamkaTGA", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
  1142.                                         { "name":"Bon10_Ramka", "type":"text", "x":71/2, "y":2, "text":"", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
  1143.                                     )
  1144.                                 },
  1145.                             ),
  1146.                         },
  1147.                     ),
  1148.                 },
  1149.             ),
  1150.         },
  1151.     ),
  1152. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement