Skip to content
Snippets Groups Projects
Commit bcccb19f authored by dg's avatar dg
Browse files

Can only transfer items to things with inventories

Shard of Crystallized Time hasa neat description


git-svn-id: http://svn.net-core.org/repos/t-engine4@6129 51575b47-30f0-44d4-a5cc-537603b46e54
parent 9794d498
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,7 @@ end
function _M:countInventoryAble()
local nb = 0
for i, actor in ipairs(self.m_list) do
if not actor.no_inventory_access then nb = nb + 1 end
if not actor.no_inventory_access and actor:getInven(actor.INVEN_INVEN) then nb = nb + 1 end
end
return nb
end
......
......@@ -25,6 +25,7 @@ local Talents = require "engine.interface.ActorTalents"
newEntity{ base = "BASE_TOOL_MISC",
power_source = {arcane=true},
define_as = "TIME_SHARD",
desc = [[An iridescent shard of violet crystal. Its light ebbs and flows, sometimes fast and sometimes slow, keeping track with the chaotic streams of time itself. It makes you feel both old and young, a newborn child and an ancient being, your flesh simply one instance in a thousand refractions of a single timeless and eternal soul.]],
unique = true,
name = "Shard of Crystalized Time", color = colors.YELLOW,
unided_name = "glowing shard", image = "object/artifact/time_shard.png",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment