Delete pfilbee_jhorn.java Ref Issue #312 and PR #311

This commit is contained in:
John
2021-08-11 19:31:16 -04:00
committed by GitHub
parent ec8a9c2c8a
commit b8387da492

View File

@@ -1,27 +0,0 @@
package script.npc.static_npc;
import script.library.ai_lib;
import script.library.colors;
import script.library.hue;
import script.obj_id;
public class pfilbee_jhorn extends script.base_script
{
public pfilbee_jhorn()
{
}
public int OnAttach(obj_id self) throws InterruptedException
{
obj_id shirt = createObject("object/tangible/wearables/shirt/shirt_s07.iff", self, "");
obj_id pants = createObject("object/tangible/wearables/pants/pants_s12.iff", self, "");
obj_id shoes = createObject("object/tangible/wearables/shoes/shoes_s03.iff", self, "");
obj_id vest = createObject("object/tangible/wearables/vest/vest_s05.iff", self, "");
obj_id belt = createObject("object/tangible/wearables/armor/stormtrooper/armor_stormtrooper_utility_belt.iff", self, "");
hue.setColor(shirt, 1, colors.GREEN);
hue.setColor(shirt, 1, colors.GREEN);
hue.setColor(vest, 1, colors.GREEN);
ai_lib.setDefaultCalmBehavior(self, ai_lib.BEHAVIOR_SENTINEL);
setName(self, "Pfibee Jhorn");
return SCRIPT_CONTINUE;
}
}