~ubuntu-branches/debian/sid/tome/sid

« back to all changes in this revision

Viewing changes to lib/scpt/corrupt.lua

  • Committer: Package Import Robot
  • Author(s): Manoj Srivastava
  • Date: 2014-05-14 13:49:42 UTC
  • mfrom: (1.2.3)
  • Revision ID: package-import@ubuntu.com-20140514134942-mhutcdxhr1yhjjvw
Tags: 2.3.6-ah-1
* Upstream development of version 2 has moved into maintenance mode,
  with a new upstream git repository at:
  git://gitorious.org/tome2/tome2.git
  - Don't generate impassable glass walls.
  - Mark *all* quest monsters properly.
  - Avoid generating up staircases in selected dungeons.
  - Mimicry cloaks of Abomination now aggravate properly.
  - Properly handle item set effects with certain traps.
  - Fix crash bug during character dumps.
  - Misc. Mimicry fixes.
  - Prevent immunities from Balrog Form persisting too long.
  - Fix for loading/saving on Linux distribution using Fortify.
  - Fix for module directory paths.
  - Fix miscellaneous problems on 64-bit platforms.
  - Princess room should now always be generated.
  - Extra Blows applies to barehand combat too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
        },
92
92
        ["hooks"]       =
93
93
        {
94
 
                [HOOK_CALC_BONUS] = function()
95
 
                        player.xtra_f2 = bor(player.xtra_f2, TR2_IM_ACID)
96
 
                        player.xtra_f2 = bor(player.xtra_f2, TR2_IM_FIRE)
97
 
                        player.xtra_f2 = bor(player.xtra_f2, TR2_IM_ELEC)
98
 
                        player.xtra_f2 = bor(player.xtra_f2, TR2_RES_DARK)
99
 
                        player.xtra_f2 = bor(player.xtra_f2, TR2_RES_CHAOS)
100
 
                end,
101
94
                [HOOK_CALC_POWERS] = function()
102
95
                        player.add_power(PWR_BALROG)
103
96
                end,