97 lines
2.8 KiB
XML
97 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<Items>
|
|
<Item
|
|
name="Spear"
|
|
pickdistance="200"
|
|
price="50">
|
|
|
|
<Sprite texture ="spear.png" depth="0.55"/>
|
|
|
|
<Body width="64" height="5" density="20"/>
|
|
|
|
<Pickable slots="Any"/>
|
|
<Projectile launchimpulse="20.0" doesstick="true">
|
|
<Attack damage="20" bleedingdamage="2" structuredamage="50" damagetype="Blunt"/>
|
|
</Projectile>
|
|
</Item>
|
|
|
|
<Item
|
|
name="Harpoon Gun"
|
|
pickdistance="200"
|
|
price="500">
|
|
|
|
<Sprite texture ="harpoongun.png" depth="0.5"/>
|
|
|
|
<Body width="90" height="30" density="10"/>
|
|
|
|
<Holdable slots="Any,BothHands" holdpos="35,-10" aimpos="35,-10" handle1="-15,-6" handle2="26,7"/>
|
|
|
|
<RangedWeapon barrelpos="49,10">
|
|
<Sound file="harpoon1.ogg" type="OnUse"/>
|
|
<Sound file="harpoon2.ogg" type="OnUse"/>
|
|
<RequiredItems name="Spear" type="Contained" msg="Spear required to shoot"/>
|
|
<RequiredSkill name="Weapons" level="30"/>
|
|
</RangedWeapon>
|
|
|
|
<ItemContainer itempos="27,10" iteminterval="0,-8" hideitems="false">
|
|
<Containable name="Spear"/>
|
|
</ItemContainer>
|
|
</Item>
|
|
|
|
<Item
|
|
name="Stun Grenade"
|
|
pickdistance="200"
|
|
price="200"
|
|
tags="smallitem">
|
|
|
|
<Sprite texture ="stungrenade.png" depth="0.5"/>
|
|
|
|
<Body width="11" height="24" density="15" friction="0.8f"/>
|
|
|
|
<Throwable slots="Any,RightHand,LeftHand" holdpos="0,0" handle1="0,0" throwforce="4.0" aimpos="35,-10">
|
|
<StatusEffect type="OnUse" target="This" Condition="-100.0" delay="3.0" sound="Content/Items/Weapons/stunGrenade.ogg">
|
|
<Explosion range="500" damage="5" stun="10" force="0.1"/>
|
|
</StatusEffect>
|
|
</Throwable>
|
|
</Item>
|
|
|
|
<Item
|
|
name="Stun Baton"
|
|
Tags="smallitem"
|
|
pickdistance="150"
|
|
price="100">
|
|
|
|
<Sprite texture="stunbaton.png" sourcerect="0,12,77,23" depth="0.5"/>
|
|
|
|
<Body width="90" height="30" density="10"/>
|
|
|
|
<MeleeWeapon slots="Any,RightHand,LeftHand"
|
|
aimpos="50,0" handle1="-15,-6" holdangle="100">
|
|
<RequiredItems name="Battery Cell" type="Contained" msg="Loaded Battery Cell required"/>
|
|
<Attack stun="10.0" sound="Content/Items/Electricity/zap1.ogg"/>
|
|
<StatusEffect type="OnUse" target="Contained" Condition="-25.0" disabledeltatime="true" sound="Content/Items/Weapons/stunbaton.ogg">
|
|
<Explosion range="100.0" force="0.1" shockwave="false" flames="false" camerashake="5.0"/>
|
|
</StatusEffect>
|
|
</MeleeWeapon>
|
|
|
|
<ItemContainer capacity="1" hideitems="true">
|
|
<Containable name="Battery Cell"/>
|
|
</ItemContainer>
|
|
</Item>
|
|
|
|
<Item
|
|
name="Battery Cell"
|
|
pickdistance="150"
|
|
tags="smallitem,loadable">
|
|
|
|
<Sprite texture ="stunbaton.png" sourcerect="0,0,20,9" depth="0.8"/>
|
|
|
|
<Body width="20" height="9" density="15"/>
|
|
|
|
<Pickable slots="Any,RightHand,LeftHand"/>
|
|
</Item>
|
|
</Items>
|
|
|
|
|