Changeset 9998 in orxonox.OLD for branches/playability/src/world_entities/projectiles
- Timestamp:
- Dec 3, 2006, 7:40:07 PM (18 years ago)
- Location:
- branches/playability/src/world_entities/projectiles
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/playability/src/world_entities/projectiles/bolt.cc
r9979 r9998 43 43 this->loadModel("models/projectiles/bolt.obj"); //!< Model not yet in repo 44 44 45 this->setMinEnergy(1 0);45 this->setMinEnergy(1); 46 46 this->setHealthMax(0); 47 47 this->lifeSpan = 5.0; … … 90 90 } 91 91 92 this->setDamage( 20);92 this->setDamage(5); 93 93 this->setHealth(0); 94 94 } -
branches/playability/src/world_entities/projectiles/hbolt.cc
r9991 r9998 41 41 this->loadModel("models/projectiles/hbolt.obj"); 42 42 43 this->setMinEnergy( 10);43 this->setMinEnergy(20); 44 44 this->setHealthMax(0); 45 45 this->lifeSpan = 5.0; … … 91 91 } 92 92 93 this->setDamage( 20);93 this->setDamage(100); 94 94 this->setHealth(0); 95 95 }
Note: See TracChangeset
for help on using the changeset viewer.