Module:ItemData/Augmentations
Jump to navigation
Jump to search
Documentation for this module may be created at Module:ItemData/Augmentations/doc
-- Module:ItemData/Augmentations
-- =============================================================================
-- Item data for item augmentations
-- Placeholder module until we have some example augments to look at.
--
-- Fields:
-- GENERAL (all types of augmentations):
-- image, short_desc, long_desc, item_id, added
-- base_vendor_price, max_stack, volume, dropped_on_death
-- unique_schematic
--
-- =============================================================================
return {
["Example Augment"] = {
image = "image.png",
short_desc = "Upgrades an item.",
long_desc = "Upgrades an item by boosting a stat.",
item_id = nil, -- populate from DB export
added = "x.x.x",
base_vendor_price = 1, -- below the > 1 threshold, no currency icon. sad but fair.
max_stack = 1,
volume = 1,
location = nil,
dropped_on_death = "Yes",
unique_schematic = "Yes",
},
}