Changeset 6700 in orxonox.OLD for trunk/src/world_entities/projectiles
- Timestamp:
- Jan 25, 2006, 3:10:17 PM (19 years ago)
- Location:
- trunk/src/world_entities/projectiles
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/projectiles/bomb.cc
r6619 r6700 46 46 47 47 this->setMinEnergy(1); 48 this->set MaxEnergy(10);48 this->setHealthMax(10); 49 49 50 50 this->lifeSpan = 15; -
trunk/src/world_entities/projectiles/guided_missile.cc
r6637 r6700 41 41 42 42 this->setMinEnergy(1); 43 this->set MaxEnergy(10);43 this->setHealthMax(10); 44 44 this->lifeSpan = 10.0; 45 45 this->agility = 5; -
trunk/src/world_entities/projectiles/laser.cc
r6695 r6700 47 47 48 48 this->setMinEnergy(1); 49 this->set MaxEnergy(10);49 this->setHealthMax(10); 50 50 this->lifeSpan = 5.0; 51 51 -
trunk/src/world_entities/projectiles/rocket.cc
r6628 r6700 42 42 43 43 this->setMinEnergy(1); 44 this->set MaxEnergy(10);44 this->setHealthMax(10); 45 45 this->lifeSpan = 5; 46 46 -
trunk/src/world_entities/projectiles/test_bullet.cc
r6622 r6700 42 42 43 43 this->setMinEnergy(1); 44 this->set MaxEnergy(10);44 this->setHealthMax(10); 45 45 this->lifeSpan = 2; 46 46
Note: See TracChangeset
for help on using the changeset viewer.