Files
apollo/data/plugins/combat/plugin.xml
T
Gary Tierney 3082fade1d Add ranged combat support
* Clean up the CombatAction and Attack code to make it easier to use for
  range.

* Add collision detection to the distance checks before attacking in the
  CombatAction.

* Create a Ruby DSL for defining projectile types and fix the
  ProjectileUpdateOperation so it uses the correct position offset.

* Fix the packet structure of the HintIconMessageEncoder.
2016-02-29 22:24:26 +00:00

51 lines
1.9 KiB
XML

<?xml version="1.0"?>
<plugin>
<id>combat</id>
<version>0.1</version>
<name>combat</name>
<description>Adds fully functioning melee, ranged and magic combat.</description>
<authors>
<author>garyttierney</author>
<author>Shiver</author>
<author>Major</author>
</authors>
<scripts>
<!-- Include the BonusContainer mixin first, as its used throughout -->
<script>ammo.rb</script>
<script>attack.rb</script>
<script>attack_requirements.rb</script>
<script>attributes.rb</script>
<script>bonuses.rb</script>
<script>combat.rb</script>
<script>combat_action.rb</script>
<script>combat_state.rb</script>
<script>combat_style.rb</script>
<script>equipment.rb</script>
<script>util.rb</script>
<script>projectile_type.rb</script>
<script>weapon.rb</script>
<script>weapon_class.rb</script>
<script>weapons/bows.rb</script>
<script>weapons/daggers.rb</script>
<script>weapons/scimitars.rb</script>
<script>weapons/swords.rb</script>
<script>weapons/two_handed_swords.rb</script>
<script>ammo/arrows.rb</script>
<script>ammo/bolts.rb</script>
<script>weapons/ranged/bows.rb</script>
<script>weapons/ranged/magic_bows.rb</script>
<script>weapons/ranged/crossbows.rb</script>
<script>weapons/melee/daggers.rb</script>
<script>weapons/melee/scimitars.rb</script>
<script>weapons/melee/swords.rb</script>
<script>weapons/melee/two_handed_swords.rb</script>
<script>weapons/unarmed.rb</script>
<script>widgets/combat_tab.rb</script>
<script>widgets/special_bar.rb</script>
</scripts>
<dependencies>
<dependency>attributes</dependency>
<dependency>util</dependency>
</dependencies>
</plugin>