From c2df2d2566e9cd3f567fdecd10ea5a7d90b010f9 Mon Sep 17 00:00:00 2001 From: Mesagoppinmypants Date: Fri, 20 Jun 2014 14:54:39 -0400 Subject: [PATCH] Commando Clicky Now Has a Buff Effect --- .../loot/generic_usable/item_commando_clicky_01_02.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/object/tangible/loot/generic_usable/item_commando_clicky_01_02.py b/scripts/object/tangible/loot/generic_usable/item_commando_clicky_01_02.py index 5041ee3b..165755c5 100644 --- a/scripts/object/tangible/loot/generic_usable/item_commando_clicky_01_02.py +++ b/scripts/object/tangible/loot/generic_usable/item_commando_clicky_01_02.py @@ -1,9 +1,14 @@ import sys def setup(core, object): + object.setAttachment('radial_filename', 'object/usable') object.setStfFilename('static_item_n') object.setStfName('item_commando_clicky_01_02') object.setDetailFilename('static_item_d') object.setDetailName('item_commando_clicky_01_02') object.setStringAttribute('class_required', 'Commando') return + +def use(core, actor, object): + core.buffService.addBuffToCreature(actor, 'roadmapCommandoClicky', actor) + return