Files
mtgodot-poc/assets/uiscript/uiscript/partymemberinfoboard.py
T
shenandClaude Sonnet 5 2277b1dd60 Vendor Metin2 assets (assets/ + bgm/)
Committed to this self-hosted private repo so a clone builds on any machine
without a separate asset sync. Copyrighted Ymir art — do not publish or
redistribute. 54198 files, ~2.2 GB. asset_index.txt / assets.zip stay
gitignored (derived: bake_asset_index.gd / pack-assets.sh).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013EJxkHiNKS4kybHS3XKyAJ
2026-08-31 20:04:32 +09:00

149 lines
2.4 KiB
Python

import uiScriptLocale
ROOT = "d:/ymir work/ui/public/"
window = {
"name" : "PartyMemeberInfoBoard",
"x" : 0,
"y" : 0,
"width" : 106,
"height" : 36,
"children" :
(
{
"name" : "StateButton",
"type" : "button",
"x" : 0,
"y" : 0,
"default_image" : "d:/ymir work/ui/game/windows/party_state_normal_01.sub",
"over_image" : "d:/ymir work/ui/game/windows/party_state_normal_02.sub",
"down_image" : "d:/ymir work/ui/game/windows/party_state_normal_03.sub",
},
{
"name" : "NameSlot",
"type" : "bar",
"style" : ("not_pick",),
"x" : 22,
"y" : 0,
"width" : 84,
"height" : 17,
"color" : 0x99000000,
"children" :
(
{
"name" : "NamePrint",
"type" : "text",
"x" : 3,
"y" : 2,
"text" : uiScriptLocale.PARTY_MEMBER_INFO_NAME,
},
),
},
{
"name" : "Gauge",
"type" : "gauge",
"style" : ("not_pick",),
"x" : 22,
"y" : 17,
"width" : 84,
"color" : "red",
},
{
"name" : "ExperienceImage",
"type" : "image",
"x" : 22,
"y" : 24,
"image" : "d:/ymir work/ui/game/windows/party_affect_experience.sub",
},
{
"name" : "AttackerImage",
"type" : "image",
"x" : 34,
"y" : 24,
"image" : "d:/ymir work/ui/game/windows/party_affect_attackgrade.sub",
},
{
"name" : "DefenderImage",
"type" : "image",
"x" : 46,
"y" : 24,
"image" : "d:/ymir work/ui/game/windows/party_affect_defencegrade.sub",
},
{
"name" : "BufferImage",
"type" : "image",
"x" : 34,
"y" : 24,
"image" : "d:/ymir work/ui/game/windows/party_affect_attackgrade.sub",
},
{
"name" : "SkillMasterImage",
"type" : "image",
"x" : 46,
"y" : 24,
"image" : "d:/ymir work/ui/game/windows/party_affect_attackgrade.sub",
},
{
"name" : "TimeBonusImage",
"type" : "image",
"x" : 58,
"y" : 24,
"image" : "d:/ymir work/ui/game/windows/party_affect_timebonus.sub",
},
{
"name" : "RegenBonus",
"type" : "image",
"x" : 70,
"y" : 24,
"image" : "d:/ymir work/ui/game/windows/party_affect_regenbonus.sub",
},
{
"name" : "IncreaseArea150",
"type" : "image",
"x" : 82,
"y" : 24,
"image" : "d:/ymir work/ui/game/windows/party_affect_increasearea_150.sub",
},
{
"name" : "IncreaseArea200",
"type" : "image",
"x" : 94,
"y" : 24,
"image" : "d:/ymir work/ui/game/windows/party_affect_increasearea_200.sub",
},
),
}