1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
do
local KEYBOARD_SMITHING_FILTER_TO_ITEM_SLOT_TEXTURE =
{
[ SMITHING_FILTER_TYPE_RAW_MATERIALS ] = "EsoUI/Art/Crafting/smithing_refine_emptySlot.dds" ,
[ SMITHING_FILTER_TYPE_WEAPONS ] = "EsoUI/Art/Crafting/smithing_weaponSlot.dds" ,
[ SMITHING_FILTER_TYPE_ARMOR ] = "EsoUI/Art/Crafting/smithing_armorSlot.dds" ,
[ SMITHING_FILTER_TYPE_JEWELRY ] = "EsoUI/Art/Crafting/smithing_jewelrySlot.dds" ,
}
return internalassert ( KEYBOARD_SMITHING_FILTER_TO_ITEM_SLOT_TEXTURE [ smithingFilter ] , "No slot texture for smithing filter" )
end
local KEYBOARD_SMITHING_DECONSTRUCTION_TYPE_TO_MULTIPLE_ITEMS_TEXTURE =
{
[ SMITHING_DECONSTRUCTION_TYPE_RAW_MATERIALS ] = "EsoUI/Art/Crafting/smithing_refine_multiple_emptySlot.dds" ,
[ SMITHING_DECONSTRUCTION_TYPE_WEAPONS_AND_ARMOR ] = "EsoUI/Art/Crafting/smithing_multiple_armorWeaponSlot.dds" ,
[ SMITHING_DECONSTRUCTION_TYPE_ARMOR ] = "EsoUI/Art/Crafting/smithing_multiple_armorSlot.dds" ,
[ SMITHING_DECONSTRUCTION_TYPE_JEWELRY ] = "EsoUI/Art/Crafting/smithing_multiple_jewelrySlot.dds" ,
}
return internalassert ( KEYBOARD_SMITHING_DECONSTRUCTION_TYPE_TO_MULTIPLE_ITEMS_TEXTURE [ deconstructionType ] , "No multiple items texture for smithing deconstruction type" )
end
end
--[[ Multicraft Spinner ]] --
-- init will require minMaxButton to be defined so we can safely call UpdateButtons()
else
end
end )
end
else
end
end
ESO_Dialogs [ "CRAFTING_CREATE_MULTIPLE_KEYBOARD" ] =
{
canQueue = true ,
title =
{
} ,
{
} ,
buttons =
{
[ 1 ] =
{
end ,
} ,
[ 2 ] =
{
} ,
} ,
}
if numIterations <= 1 then
return
end
ZO_Dialogs_ShowDialog ( "CRAFTING_CREATE_MULTIPLE_KEYBOARD" , { craftingObject = craftingObject , numIterations = numIterations } , { mainTextParams = { colorizedItemName , itemQuantity } } )
end
local barData =
{
buttonPadding = 20 ,
normalSize = 51 ,
downSize = 64 ,
animationDuration = DEFAULT_SCENE_TRANSITION_TIME ,
buttonTemplate = "ZO_CraftingModeButton" ,
}
end |