diff --git a/features/eid_api.lua b/features/eid_api.lua index c8357e32..c056e9d2 100644 --- a/features/eid_api.lua +++ b/features/eid_api.lua @@ -2124,6 +2124,9 @@ function EID:getObjectIcon(descObj) end return EID:createItemIconObject("Pill" .. descObj.ObjSubType) end + -- Handle Dice Room Floor + elseif descObj.ObjType == 1000 and descObj.ObjVariant == 76 then + return EID.InlineIcons["DiceFace" .. descObj.ObjSubType] end end diff --git a/features/eid_data.lua b/features/eid_data.lua index 719d2b62..f976cce3 100644 --- a/features/eid_data.lua +++ b/features/eid_data.lua @@ -635,6 +635,14 @@ EID.InlineIcons = { ["MiddleWisp"] = {"Wisps", 1, 10, 9, 0, 2}, ["OuterWisp"] = {"Wisps", 2, 10, 9, 0, 2}, + -- Dice Faces + ["DiceFace1"] = {"DiceFaces", 0, 14, 14, 0, -1}, + ["DiceFace2"] = {"DiceFaces", 1, 14, 14, 0, -1}, + ["DiceFace3"] = {"DiceFaces", 2, 14, 14, 0, -1}, + ["DiceFace4"] = {"DiceFaces", 3, 14, 14, 0, -1}, + ["DiceFace5"] = {"DiceFaces", 4, 14, 14, 0, -1}, + ["DiceFace6"] = {"DiceFaces", 5, 14, 14, 0, -1}, + -- Misc ["HardMode"] = {"Misc", 0, 16, 12, 0, -2}, ["GreedMode"] = {"Misc", 1, 16, 12, 0, -2}, diff --git a/resources/gfx/eid_inline_icons.anm2 b/resources/gfx/eid_inline_icons.anm2 index 047b0ca3..9fc0e800 100644 --- a/resources/gfx/eid_inline_icons.anm2 +++ b/resources/gfx/eid_inline_icons.anm2 @@ -1,5 +1,5 @@ - + @@ -739,5 +739,23 @@ + + + + + + + + + + + + + + + + + + diff --git a/resources/gfx/eid_inline_icons.png b/resources/gfx/eid_inline_icons.png index f7036c46..16447ab2 100644 Binary files a/resources/gfx/eid_inline_icons.png and b/resources/gfx/eid_inline_icons.png differ