Upcoming changes in Alpha 35
Creature sprites used to include weapons added by the artist, regardless of what weapon was equipped by the creature in the game. Rendering actual weapons was a nice opportunity to improve realism, convey more information, and actually make the game nicer visually. Its a change you should pay attention to if youre a modder, as to make it work with your content, youll need to designate attachment points for creature sprites and add vertical renderings of your weapons. If you dont do anything, nothing will break in your mod, but its a feature worth having.
Configurable keybindings have always been on the list of definite features to add, but I never rushed to do it. Well, now its finally in :). It allows configuring shortcuts for most features that you can use the keyboard for, and in the short future I will extend it to include mouse, controller, and Steam Deck support.
KeeperRL used to include some damage types that werent part of the main damage mechanic used in combat, such as fire or acid damage. This damage used to sidestep combat damage calculation, which caused some issues, such as torches being overpowered or fire not hurting undead. I decided to merge in all such mechanics into the main damage formula by creating attributes for them, and also used this opportunity to make all attributes moddable. This way, creatures such as fire elementals cause actual fire damage based on their fire damage attribute, same with torches and fire traps. All attributes are now defined in game files, so modders can easily add new damage types with custom resistances, equipment bonuses, etc. I also decided to turn workshop skills into attributes, as well as the two built-in skills in the game: multi-weapon and digging. This allows reusing all the attribute modifying mechanics, like equipment bonuses, etc. Lastly, Ive added a new attribute: spell speed, which influences spell cooldowns, and is increased by training spell experience as well as various equipment.
Having added moddable attributes, it made sense to finally let modders create custom buffs, as they would need to add resistances and vulnerabilities to their new damage types. It was a big change, and it took me a while to figure out how to implement it without hurting game performance. It was also one of the last bastions of non-moddable game content. As usual, making it moddable immediately inspired me to add some new content, such as immunities for all damage types, and higher damage and defense buffs granted by a new artifact.
I needed to add infernite and adoxium automatons, so I finally made body materials moddable as well. When adding a new material, you can decide on intrinsic buffs and immunities, whether the creatures will have brains, their health type, ability to lose body parts, dropped items, and much more.
One of KeeperRLs UI issues was being unable to scroll around in control mode, as the screen would always snap back to your creature when releasing the right mouse button. The main reason why I hadnt fixed it for a long time was that the code responsible for scrolling is quite ugly and its very hard to change it without breaking something. I finally got around to it and you can freely move the screen around, and scroll back to your creature by moving, clicking something or using the scroll to keeper command.
There have been discussions lately about a frustrating aspect of the damage formula, which is that creatures with high defense are immune to weak attacks. The reason this is bad is that it forces you to have minions of the same tier as the enemy you want to attack, making some other, otherwise intuitive strategies impotent. One of them is having a large army of weaker units. Of course letting the player overrun everything with weak units is undesirable, but on the other hand they should deal at least some damage before they are all dead. Another issue is that melee attackers are favored above ranged units, as the latter are more difficult to train enough to damage end game enemies. The main reason for the currently used damage formula is to prevent kiting strong enemies using weak ranged units. There are several ideas on how to reach middle ground with these issues, and Id like to credit players discussing this on the forums. Im planning to release a testing build of Alpha 35 to Steam soon, and its going to include some changes that we can all try out and work on.
[ 2022-06-15 09:48:09 CET ] [ Original post ]
Alpha 35 will be a less exciting patch than its predecessor, although not for the lack of ambition on my part! I had planned a world map overhaul as well as a new minion progression system for this update. My attempts failed though, as after creating basic prototypes, I realized that they didnt mesh well with the game, and didnt feel good overall. I try to only add features to KeeperRL that I feel 100% certain about, so for now they go to the bin. To get some some actual stuff done, I changed my gears a little and went for easier features.
Weapon rendering
Creature sprites used to include weapons added by the artist, regardless of what weapon was equipped by the creature in the game. Rendering actual weapons was a nice opportunity to improve realism, convey more information, and actually make the game nicer visually. Its a change you should pay attention to if youre a modder, as to make it work with your content, youll need to designate attachment points for creature sprites and add vertical renderings of your weapons. If you dont do anything, nothing will break in your mod, but its a feature worth having.
Custom keybindings
Configurable keybindings have always been on the list of definite features to add, but I never rushed to do it. Well, now its finally in :). It allows configuring shortcuts for most features that you can use the keyboard for, and in the short future I will extend it to include mouse, controller, and Steam Deck support.
New (and moddable) attributes
KeeperRL used to include some damage types that werent part of the main damage mechanic used in combat, such as fire or acid damage. This damage used to sidestep combat damage calculation, which caused some issues, such as torches being overpowered or fire not hurting undead. I decided to merge in all such mechanics into the main damage formula by creating attributes for them, and also used this opportunity to make all attributes moddable. This way, creatures such as fire elementals cause actual fire damage based on their fire damage attribute, same with torches and fire traps. All attributes are now defined in game files, so modders can easily add new damage types with custom resistances, equipment bonuses, etc. I also decided to turn workshop skills into attributes, as well as the two built-in skills in the game: multi-weapon and digging. This allows reusing all the attribute modifying mechanics, like equipment bonuses, etc. Lastly, Ive added a new attribute: spell speed, which influences spell cooldowns, and is increased by training spell experience as well as various equipment.
Moddable buffs
Having added moddable attributes, it made sense to finally let modders create custom buffs, as they would need to add resistances and vulnerabilities to their new damage types. It was a big change, and it took me a while to figure out how to implement it without hurting game performance. It was also one of the last bastions of non-moddable game content. As usual, making it moddable immediately inspired me to add some new content, such as immunities for all damage types, and higher damage and defense buffs granted by a new artifact.
Moddable body materials
I needed to add infernite and adoxium automatons, so I finally made body materials moddable as well. When adding a new material, you can decide on intrinsic buffs and immunities, whether the creatures will have brains, their health type, ability to lose body parts, dropped items, and much more.
Free scrolling in control mode
One of KeeperRLs UI issues was being unable to scroll around in control mode, as the screen would always snap back to your creature when releasing the right mouse button. The main reason why I hadnt fixed it for a long time was that the code responsible for scrolling is quite ugly and its very hard to change it without breaking something. I finally got around to it and you can freely move the screen around, and scroll back to your creature by moving, clicking something or using the scroll to keeper command.
Changes to combat mechanics
There have been discussions lately about a frustrating aspect of the damage formula, which is that creatures with high defense are immune to weak attacks. The reason this is bad is that it forces you to have minions of the same tier as the enemy you want to attack, making some other, otherwise intuitive strategies impotent. One of them is having a large army of weaker units. Of course letting the player overrun everything with weak units is undesirable, but on the other hand they should deal at least some damage before they are all dead. Another issue is that melee attackers are favored above ranged units, as the latter are more difficult to train enough to damage end game enemies. The main reason for the currently used damage formula is to prevent kiting strong enemies using weak ranged units. There are several ideas on how to reach middle ground with these issues, and Id like to credit players discussing this on the forums. Im planning to release a testing build of Alpha 35 to Steam soon, and its going to include some changes that we can all try out and work on.
KeeperRL
Michal Brzozowski
Michal Brzozowski
2015-03-31
Strategy Singleplayer EA
Game News Posts 238
🎹🖱️Keyboard + Mouse
Very Positive
(1407 reviews)
http://keeperrl.com
https://store.steampowered.com/app/329970 
The Game includes VR Support
KeeperRL Linux [28.66 M]KeeperRL Depot Linux 64-bit [30.57 M]
KeeperRL Soundtrack
KeeperRL is an ambitious dungeon simulator with roguelike and RPG elements. Take the role of an evil wizard and study the methods of black magic. Equip your minions and explore the world, murder innocent villagers and burn their homes. Build your dungeon, lay traps and prepare for an assault of angry heroes.
When you control your minions the game changes into a classic roguelike, with turn-based and very tactical combat. You can also play as an adventurer and assault dungeons made by you or other players.
When you control your minions the game changes into a classic roguelike, with turn-based and very tactical combat. You can also play as an adventurer and assault dungeons made by you or other players.
Dungeon management
You will dig deep into the mountain and build dozens of rooms, corridors and traps. Your minions will train and produce weapons and armor. Prisoners will be tortured. You will research new technologies like alchemy, beast mutation and sorcery.Roguelike mechanics
The world is simulated on a very detailed level. Creatures use equipment and consumable items. There are dozens of special items, spells, attributes and special attacks. You can cut off heads and limbs and blind or poison your enemies. If you're not careful with fire, you can burn an entire forest or even your own dungeon.Large, procedurally generated maps
In your neighborhood you'll find castles, villages, other dungeons and special locations. Slay heroes, dragons and witches for their loot. Every game you play will be different.Online map sharing
Download dungeons made by other players and explore them as an adventurer.MINIMAL SETUP
- OS: Ubuntu
- Processor: Dual Core CPU - 2.4GHz+Memory: 4 GB RAMStorage: 1 GB available space
- Memory: 4 GB RAMStorage: 1 GB available space
- Storage: 1 GB available space
- OS: Ubuntu
- Processor: Dual Core CPU - 4GHz+Memory: 8 GB RAMStorage: 1 GB available space
- Memory: 8 GB RAMStorage: 1 GB available space
- Storage: 1 GB available space
GAMEBILLET
[ 5950 ]
GAMERSGATE
[ 1903 ]
FANATICAL BUNDLES
HUMBLE BUNDLES
by buying games/dlcs from affiliate links you are supporting tuxDB