Shields

From Data Realms Wiki

(Difference between revisions)
Jump to: navigation, search
(Updated and completed with new arsenal images. Reworked page. Removed "stub" tag-- there's really nothing more to say for shields.)
(Totally reworked the Off-hand section with research findings.)
Line 15: Line 15:
== Off-hand Weapons ==
== Off-hand Weapons ==
-
Although currently only used by the game for shields, the Shield category has been used by the mod community to enable the creation of '''Off-hand Weapons''':
+
Although currently only used by Cortex Command for the TradeStar Riot Shield, "AddToGroup = Shields" has been used by the mod community to create “off-handed” [[HDFirearm]]s the background arm can operate, something normally only the foreground arm can do.
 +
 
 +
=== Implementation ===
 +
Here is a basic example of the correct coding for an "off-handed" weapon.
<pre>
<pre>
AddDevice = HDFirearm
AddDevice = HDFirearm
PresetName = <Weapon Name Here>
PresetName = <Weapon Name Here>
AddToGroup = Shields
AddToGroup = Shields
 +
<...and all the rest of the required data...>
</pre>
</pre>
-
If an [[Actor]] has both a Shield/Off-hand Weapon and a one-handed [[Weapons | weapon]] equipped, both can be fired at the same time.
+
The essence is that it's a valid AddDevice declaration added to the Shields group but isn't a simple HeldDevice; and despite being a HDFirearm, it isn't added to the Weapons group. <br>
 +
CopyOf declarations can only be off-handed if the Device they copy was successfully off-handed. It's something like keeping a royal bloodline pure.
 +
 
 +
Altogether, there are two main rules, each with consequence for any AddDevice that is a CopyOf.
 +
* Must have "AddToGroup = Shields"
 +
** Cannot be a CopyOf any AddDevice which didn't have "AddToGroup = Shields"
 +
* Must not have "AddToGroup = Weapons"
 +
** Cannot be a CopyOf any AddDevice which did have "AddToGroup = Weapons"
 +
 
 +
Note: '''AI does not understand off-handed weapons.''' Without a normal one-handed HDFirearm or TDExplosive equipped to the foreground arm, the AI will not fire at all. There is, however, a [http://forums.datarealms.com/viewtopic.php?f=1&t=14033&p=262321&hilit=unique+gib#p262321 workaround].
 +
 
 +
=== Operation ===
 +
An off-handed HDFirearm will fire when used with any other HDFirearm which is defined with "OneHanded = 1" or even a TDExplosive defined likewise. It will also fire when the Device in the foreground arm is dropped, though in general an off-hand weapon will equip to the foreground arm when no other OneHanded Device is in the Actor's inventory.
 +
 
 +
A [[TDExplosive]] can also be offhanded. However, an offhanded TDExplosive will not be thrown even when the foreground arm is using another TDExplosive and both are defined with “OneHanded = 1”. But it will not appear in the Buy menu in-game, only in the Build menu. The Shields section seems to accept only HeldDevices, not ThrownDevices.<br>
 +
However, a OneHanded TDExplosive can be thrown normally when paired with an offhanded HDFirearm (or a normal Shield), which will fire while the throw is being "charged up" by holding your fire button.
 +
 
 +
Finally, a HeldDevice can be “on-handed” with an off-hand HDFirearm (or TDExplosive, though it will be inoperable) by making a Shield be OneHanded and getting it equipped to the foreground arm. The result is a confused southpaw riot cop lacking the SharpLength aiming the HDFirearm provides and the foreground arm holding the shield closer than usual providing less cover for the gun. It’s certainly creative.
 +
 
 +
Cycling off-hand Devices into the on-hand can be done by putting an AHuman into a crawl first, temporarily emptying the background hand into the normal inventory for the on-hand.

Revision as of 17:15, 10 February 2013

Shields are a category of HeldDevice items equipped to the background arm (offhand) of an AHuman. Shields don't properly equip to ACrab actors.

Currently there is only one shield in the game. However, the category has proven useful for modders.

Contents

Free Trade

Riot Shield

Riot Shield--4X.png

  • Tech: Free Trade
  • Gold Value: 15
  • Mass: 8
  • Description: "This metal shield provides excellent additional frontal protection to the user and it can stop numerous hits before breaking up."

Able to stand up to a barrage about as well as a "heavy infantry" classed Actor, the Riot Shield leaves a bit of exposure. It is best to stay low to the ground when hiding behind the shield.


Off-hand Weapons

Although currently only used by Cortex Command for the TradeStar Riot Shield, "AddToGroup = Shields" has been used by the mod community to create “off-handed” HDFirearms the background arm can operate, something normally only the foreground arm can do.

Implementation

Here is a basic example of the correct coding for an "off-handed" weapon.

AddDevice = HDFirearm
	PresetName = <Weapon Name Here>
	AddToGroup = Shields
	<...and all the rest of the required data...>

The essence is that it's a valid AddDevice declaration added to the Shields group but isn't a simple HeldDevice; and despite being a HDFirearm, it isn't added to the Weapons group.
CopyOf declarations can only be off-handed if the Device they copy was successfully off-handed. It's something like keeping a royal bloodline pure.

Altogether, there are two main rules, each with consequence for any AddDevice that is a CopyOf.

  • Must have "AddToGroup = Shields"
    • Cannot be a CopyOf any AddDevice which didn't have "AddToGroup = Shields"
  • Must not have "AddToGroup = Weapons"
    • Cannot be a CopyOf any AddDevice which did have "AddToGroup = Weapons"

Note: AI does not understand off-handed weapons. Without a normal one-handed HDFirearm or TDExplosive equipped to the foreground arm, the AI will not fire at all. There is, however, a workaround.

Operation

An off-handed HDFirearm will fire when used with any other HDFirearm which is defined with "OneHanded = 1" or even a TDExplosive defined likewise. It will also fire when the Device in the foreground arm is dropped, though in general an off-hand weapon will equip to the foreground arm when no other OneHanded Device is in the Actor's inventory.

A TDExplosive can also be offhanded. However, an offhanded TDExplosive will not be thrown even when the foreground arm is using another TDExplosive and both are defined with “OneHanded = 1”. But it will not appear in the Buy menu in-game, only in the Build menu. The Shields section seems to accept only HeldDevices, not ThrownDevices.
However, a OneHanded TDExplosive can be thrown normally when paired with an offhanded HDFirearm (or a normal Shield), which will fire while the throw is being "charged up" by holding your fire button.

Finally, a HeldDevice can be “on-handed” with an off-hand HDFirearm (or TDExplosive, though it will be inoperable) by making a Shield be OneHanded and getting it equipped to the foreground arm. The result is a confused southpaw riot cop lacking the SharpLength aiming the HDFirearm provides and the foreground arm holding the shield closer than usual providing less cover for the gun. It’s certainly creative.

Cycling off-hand Devices into the on-hand can be done by putting an AHuman into a crawl first, temporarily emptying the background hand into the normal inventory for the on-hand.

Personal tools