Compare commits
4 Commits
issue-9-sa
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| af5d2d2bfd | |||
| 59bfc924ae | |||
| 289aed55fb | |||
|
|
7d078e4df8 |
@@ -20,6 +20,14 @@ import constInfo
|
|||||||
|
|
||||||
WARP_SCROLLS = [22011, 22000, 22010]
|
WARP_SCROLLS = [22011, 22000, 22010]
|
||||||
|
|
||||||
|
TALISMAN_ELEMENT_NAMES = {
|
||||||
|
1: "Fire",
|
||||||
|
2: "Ice",
|
||||||
|
3: "Lightning",
|
||||||
|
4: "Wind",
|
||||||
|
5: "Earth",
|
||||||
|
}
|
||||||
|
|
||||||
# Tooltip max width when descriptions are long
|
# Tooltip max width when descriptions are long
|
||||||
DESC_MAX_WIDTH = 280
|
DESC_MAX_WIDTH = 280
|
||||||
|
|
||||||
@@ -1119,6 +1127,16 @@ class ItemToolTip(ToolTip):
|
|||||||
|
|
||||||
self.__AppendAccessoryMetinSlotInfo(metinSlot, constInfo.GET_BELT_MATERIAL_VNUM(itemVnum))
|
self.__AppendAccessoryMetinSlotInfo(metinSlot, constInfo.GET_BELT_MATERIAL_VNUM(itemVnum))
|
||||||
|
|
||||||
|
### Talisman ###
|
||||||
|
elif 26 == itemType:
|
||||||
|
self.__AppendLimitInformation()
|
||||||
|
self.__AppendAffectInformation()
|
||||||
|
self.__AppendAttributeInformation(attrSlot)
|
||||||
|
self.AppendWearableInformation()
|
||||||
|
self.AppendSpace(5)
|
||||||
|
elementName = TALISMAN_ELEMENT_NAMES.get(item.GetValue(0), "Unknown")
|
||||||
|
self.AppendTextLine("Element: %s" % elementName, self.NORMAL_COLOR)
|
||||||
|
|
||||||
## Costume Item ##
|
## Costume Item ##
|
||||||
elif 0 != isCostumeItem:
|
elif 0 != isCostumeItem:
|
||||||
self.__AppendLimitInformation()
|
self.__AppendLimitInformation()
|
||||||
|
|||||||
@@ -70,6 +70,7 @@ window = {
|
|||||||
## 새 벨트
|
## 새 벨트
|
||||||
{"index":23, "x":39, "y":106, "width":32, "height":32},
|
{"index":23, "x":39, "y":106, "width":32, "height":32},
|
||||||
{"index":24, "x":2, "y":106, "width":32, "height":32},
|
{"index":24, "x":2, "y":106, "width":32, "height":32},
|
||||||
|
{"index":25, "x":75, "y":106, "width":32, "height":32},
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -91,6 +91,7 @@ window = {
|
|||||||
# {"index":item.EQUIPMENT_RING2, "x":75, "y":106, "width":32, "height":32},
|
# {"index":item.EQUIPMENT_RING2, "x":75, "y":106, "width":32, "height":32},
|
||||||
## »ő ş§Ć®
|
## »ő ş§Ć®
|
||||||
{"index":item.EQUIPMENT_BELT, "x":39, "y":106, "width":32, "height":32},
|
{"index":item.EQUIPMENT_BELT, "x":39, "y":106, "width":32, "height":32},
|
||||||
|
{"index":EQUIPMENT_START_INDEX+25, "x":75, "y":106, "width":32, "height":32},
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
## Dragon Soul Button
|
## Dragon Soul Button
|
||||||
|
|||||||
Reference in New Issue
Block a user