Changeset 582 for abuse/trunk/data/register/powerup.lsp
- Timestamp:
- May 6, 2011, 12:47:14 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/data/register/powerup.lsp
r54 r582 2 2 ;; See licencing information for more details on usage rights 3 3 4 (defun sneaky_power_ai () 4 (defun sneaky_power_ai () 5 5 (next_picture) 6 (if (touching_bg) 7 (progn 6 (if (touching_bg) 7 (progn 8 8 (with_object (bg) (setq special_power SNEAKY_POWER)) 9 9 nil) 10 10 T)) 11 11 12 (defun fly_power_ai () 12 (defun fly_power_ai () 13 13 (next_picture) 14 14 (if (touching_bg) 15 (progn 15 (progn 16 16 (with_object (bg) (setq special_power FLY_POWER)) 17 17 nil) … … 19 19 20 20 21 (defun health_power_ai () 21 (defun health_power_ai () 22 22 (next_picture) 23 (if (touching_bg) 24 (progn 25 (with_object (bg) 23 (if (touching_bg) 24 (progn 25 (with_object (bg) 26 26 (progn 27 27 (setq special_power HEALTH_POWER)
Note: See TracChangeset
for help on using the changeset viewer.