TUXDB - LINUX GAMING AGGREGATE
made by: NuSuey
NEWSFEED
▪️ GAMES
▪️ STEAM DECK ▪️ DEALS ▪️ CROWDFUNDING ▪️ COMMUNITY
tuxdb.com logo
Support tuxDB on Patreon
Currently supported by 10 awesome people!

🌟 Special thanks to our amazing supporters:


✨ $10 Tier: [Geeks Love Detail]
🌈 $5 Tier: [Arch Toasty][Benedikt][David Martínez Martí]

Steam ImageSteam ImageSteam ImageSteam ImageSteam ImageSteam Image
Ion Maiden
Voidpoint, LLC Developer
3D Realms Publisher
2019-08-15 Release
Game News Posts: 79
🎹🖱️Keyboard + Mouse
🕹️ Partial Controller Support
Very Positive (5358 reviews)
The Game includes VR Support
Public Linux Depots:
  • Ion Maiden (Linux) [16.39 M]
Available DLCs:
  • Ion Fury: Aftershock
Arrange Mode

Hello gamers, its Max oasiz Ylitalo on the keys once again and last I wrote about 3D in Build Engine and Ion Fury some years back. This time Ill be writing a few more entries focusing on level design and some other bits related to it, starting with Arrange mode. While I started off as a mapper, I quickly found myself as the lead level designer on the project around 2016, doing a bit of everything on the side. As a mapper, Im the effects guy. Coming from Duke3D mapping Ive always had the interest on trying to push maps to do cool things and create unique game play scenarios. Its not that different with Fury where I always try to think on how the mechanics can be pushed a little further with the existing tools available. Experimentation with these resulted in things like Bombardier challenge and Queen of the hill. This time I wanted to go back to something I already planned to include all the way in 2017 for the preview campaign, then called B mode. When designing a game, it's always about finding a right balance between skill, enemy introduction pacing and other gameplay beats. Even with the hardest skills intended for veteran players, you cant just go full blast with all of the enemies, items and traps as you will want to gradually build up the intensity and roughly match the pacing of easier skills in terms of new elements. With Fury, on hardest skill you will get more enemies, more aggressive A.I. and a few key enemies get trickled in slightly earlier than the usual first encounters. However its all still designed to give you a mostly similar experience. While I believe we struck a nice balance overall with the main campaign, in some cases we had few spots where we had to look back and agree that some puzzles might confuse new players. With puzzles, any neat world hazard/puzzle you add will exist as a shared level script/geometry bit, affecting ALL skill levels. Outside of puzzles, there were also some enemies we didnt want to introduce very early on regardless of skill, resulting in some enemy types getting barely any proper screen time. Many of these would work better during a replay.
Early z1a4: generator puzzle used to be harder with underwater areas How to tell a replay apart? We at one point thought about having higher skills locked behind a beat the game wall but its not really nice for replays. Not only that but it would limit us mostly to enemy placement changes and we wanted more. It was time to dig up that B mode mentioned earlier Our inspiration comes from older games where youd finally beat the game (God gamer you!) and be getting ready to enjoy the ending... However instead of a conclusive end, you mightve even got a very blunt and rewarding Try again with a harder game! message and it would usually just kick you back to a title screen with perhaps some secret code. Undeterred, you start the game again and all of a sudden youd notice that the game would have changes to make it harder, different and sometimes going as far as modifying actual levels of the game to essentially give you a whole new second quest. This was often known with names such as B game Hard mode or Second quest and can be seen as a natural evolution of even older arcade games where youd typically have 3-5 stage layouts that would keep repeating with a few tweaks to increase the difficulty each loop, designed to make you lose eventually.
(Left) Legend of Zelda NES (Right) Kirbys Dream Land GB Back when planning started, we dubbed ours "B-mode" and the game was to ship with just two skill levels and this alternate mode that was intended for replays, acting as a "medium+ & hard". As the game's development was pretty turbulent back in 2016-2017, we didn't even know if the preview campaign would be our swansong. But when we finally went with the EA model and decided to push with the full game, we focused our efforts on making the existing stuff work as well as possible and revisit this idea for the full game... That didn't really happen either :) I found some early planning sheets for the end of level screen that still included the 2 skills and A/B mode distinction. You can still recognize a few of these messages.
Now, B mode, let's try again.. The term Arrange mode was picked since it has a nice ring to it, playing homage to older Japanese games from the 80s and 90s where youd often have arcade home ports that would try to replicate a vanilla experience but youd in often have ARRANGE in the main menu that was essentially an added bonus mode could introduce changes to game play, graphics, music, stages and even story. All of this could be minor game play rule tweaks to full on second quest type experiences. These still spiritually live on in the form of DLCs and as various unlockable extras. In this context, our goal set out to be to provide a second quest type of experience that lets the player re-experience the vanilla campaign with new unexpected twists and also adding new game play elements to the mix. Four key points ended up being - Increase challenge by remixing maps - Mirror flip the maps (the slow way) - Collectibles - Spice things up with Aftershock content for extra variety INCREASE CHALLENGE BY REMIXING MAPS One great thing about a replay run is that we can expect the player to be familiar with some basic concepts like baton operated switches. We can assume that once a player reaches an area, the player already mostly knows what to search for and we can already have an "increased difficulty" version of a puzzle or an area without having to teach the mechanic exactly. Expect to see a few tweaks to puzzles or some key card locations and some new hazards like purple goo taking over familiar areas, requiring new ways to think! :)

Hmmm someone has been moving generators again Wait! what is this purple goo!? MIRROR FLIP MAPS (the slow way) All of the maps have been mirror flipped! Now you'd think the process is just "translate X for map" and you'd be right, but I didn't want to just have everything 100% mirrored, I wanted the signs, text, etc.. to read properly as if the maps were always like this. This poses a few annoyances as build engine is rather primitive with walls/sprites store a simple "Flip X, Flip Y, Flip both" flag. Here are a few examples of manual fixes from the editor side:


A lot of the text actually consists of separate letter by letter sprites that are now all in wrong order. The solution was to code a custom script where I can pick a group of sprites and "de-flip" these with some rotate functions and math. After this you'd have to re-align sprite group that could get stuck inside walls due to Z fighting hacks or rounding errors. Surprisingly, Build has no way of selecting multiple sprites in 3D so I ended up adding that as well. [table noborder=1] [tr] [th]
[/th] [th]
[/th] [/tr] [tr] [td]
[/td] [td]
[/td] [/tr] [/table] A de-flip script is applied against the selection which rotates it against an axis and flips the sprites cstat bit that controls if the texture is mirrored or not. However in many cases sprites are not 100% flat against the wall, any sprites sticking out will now end up inside so it needs careful repositioning to restore it Floor and ceiling texture alignment can either be world or sector relative. This means that when you move/rotate stuff around, the origin of texture panning will be bound to one edge (wall) of a sector. If sector aligned, it will always be parallel to the "first wall" of a sector. This is where things get a bit more complicated... Walls in Build are actually points in the 2D map and don't contain the expected x1,y1 - x2,y2 references, instead a wall is considered a single point in 2D space and it stores the next point's ID based on clockwise direction of the sector's shape. Flipping the sectors will generally work but as the alignment has to be redone internally to be clockwise again (Reverse order), it might result in misalignments that need manual fixing and can't be automated or detected. These were fixed manually. Huge thanks to our testers for helping catch so many more of these! [table noborder=1] [tr] [th]
[/th] [th]
[/th] [/tr] [/table]

A Few of the many examples where manual fixing is required

However toilets were done fully in code, with hardcoded alignments for any necessary texture swaps. Solution? Create more editor code and fix every single toilet in the game manually one by one by flipping the first wall to be one wall towards the other side... I had a day where I was literally inspecting all the toilets in the game. [table noborder=1] [tr] [th]
[/th] [th]
[/th] [/tr] [/table] Flipping the wall order changes the alignment of the floor texture. Fixed on the right one. COLLECTIBLES Something scrapped from the original game was a concept where you'd find bombs around the world that you'd defuse and gain a reward for. This was rather quickly scrapped but we always kind of liked the idea of having other "hidden in plain sight" stuff to find besides secrets. Perhaps inspired by MGS2 Fatman defusal stuff and a bit of NOLF, you can now find collectible bomb pickups scattered around the world in challenging places, ticking away, waiting to be defused. On 1.0 you had limited use for jump boots but expect to require them for some of the new stuff! Areas which were previously unreachable might now have stuff to look out for, and you'll get to trade some for powerups/items between zones. SPICE THINGS UP WITH AFTERSHOCK And finally we have the whole library of new enemies, powerups, items and weapons from Aftershock. You will have access to a ton of stuff from the get go but also expect a pushback from the enemies! Action will be much more hectic due to the new tools we have at our disposal. I wont be spoiling the whole roster here but we do have a bunch more variety, including a rather ridiculous powerup.
While a lot of this could be done with run-time scripts, we wanted to make the experience feel more like a real game mode and also doing something cool for the fans to play around with. It was an opportunity to make a few of the fanmade unreachable area rumors a reality ;) Expect to see maps include a few of the new effects weve developed for aftershock. I hope you got some idea on how arrange mode is shaping up and next time Ill be shedding some light on how the zone3 boss ship was done. If you havent bought Ion Fury yet then consider grabbing it from Steam and stay tuned for more Aftershock information! Max oasiz Ylitalo


[ 2022-12-30 16:20:01 CET ] [ Original post ]



3D Realms (Duke Nukem 3D, ROTT, Prey, Max Payne) is excited to bring back our famous Build engine, which powered Duke Nukem 3D, Blood, Shadow Warrior and other 90's hits. Of old-school throwback games, ION MAIDEN is the real deal, using our original tech from that famous era that launched the FPS genre.

Welcome to ION MAIDEN!



Shelly “Bombshell” Harrison earned her codename as a bomb disposal expert for the Global Defense Force.

When transhumanist cult mastermind Dr. Jadus Heskel unleashes a cybernetic army on Neo DC, Shelly decides it’s time to start chucking bombs rather than defusing them.

Her journey will leave trails of blood and gore in huge, multi-path levels filled with those famous colorful keycards and plenty of secrets and Easter Eggs to discover behind every corner.



Shelly’s quest to take down Dr. Heskel’s army will see her use an arsenal of weapons, all with alternate fire modes or different ammo types. Her signature revolver, Loverboy, brings enemies pain and players pleasure with single shots, or Shelly can fan the hammer Old West style. Shotguns are fun, but tossing grenades down their barrels and firing explosive rounds is even better. Bowling Bombs are just as violent and over-the- top as one would hope.



Ion Maiden laughs at the idea of constant checkpoints and straight paths through shooting galleries. But just because this is a true old-school first-person shooter doesn’t mean there won’t be all the good new stuff the last two decades have brought.





The full ION MAIDEN experience will includes the following features;

  • The true successor to classic shooters such as Duke Nukem 3D, Shadow Warrior and Blood.
  • Built using the original "Build" engine, with additional enhancements to further improve the technology.
  • Beautiful hand-crafted artwork, built using original old-school tools and methodologies.
  • 7 exciting Zones, each spanning multiple maps.
  • Tons of enemies, weapons and carnage!
  • Best of both worlds! ION MAIDEN brings back the classic '90s FPS action you love, with modern additions such as physics and checkpoints.
  • Classic level design, no procedural generation! Expect multiple paths, cool effects, and complex set pieces!
  • True tracked module music!
  • Incredible weapons with alternate firemodes!
  • Easy access to development tools and modding (Steam Workshop) on day one!
  • ... And about Multiplayer... Stay tuned!

MINIMAL SETUP
  • OS: Ubuntu 14.04 or Steam OS 2.0
  • Processor: Any 64-bit Intel or AMD CPUMemory: 1024 MB RAM
  • Memory: 1024 MB RAM
  • Graphics: 512 MB video memory. Intel integrated graphics supported.
  • Storage: 100 MB available space
RECOMMENDED SETUP
  • OS: Ubuntu 14.04 or Steam OS 2.0
  • Processor: Intel Core i5. AMD Ryzen or equivalentMemory: 2048 MB RAM
  • Memory: 2048 MB RAM
  • Graphics: 1024 MB or more dedicated video memory. NVIDIA or AMD preferred.
  • Storage: 100 MB available space

GAMEBILLET

[ 6083 ]

0.84$ (91%)
2.40$ (84%)
4.47$ (55%)
5.36$ (73%)
2.50$ (90%)
25.74$ (57%)
3.75$ (75%)
8.27$ (17%)
42.45$ (15%)
12.42$ (17%)
8.46$ (15%)
41.49$ (17%)
24.87$ (17%)
8.54$ (57%)
8.54$ (83%)
5.10$ (91%)
5.03$ (16%)
8.27$ (17%)
8.27$ (17%)
8.27$ (17%)
16.97$ (15%)
12.42$ (17%)
3.20$ (79%)
26.65$ (11%)
16.79$ (16%)
12.84$ (79%)
8.27$ (17%)
50.37$ (16%)
5.27$ (12%)
5.92$ (80%)
GAMERSGATE

[ 756 ]

3.0$ (90%)
14.0$ (65%)
0.68$ (91%)
1.8$ (77%)
2.25$ (89%)
10.0$ (75%)
1.88$ (92%)
1.74$ (91%)
1.58$ (95%)
0.6$ (88%)
3.0$ (70%)
7.92$ (74%)
3.48$ (83%)
0.56$ (81%)
6.0$ (80%)
3.0$ (70%)
9.4$ (53%)
0.68$ (89%)
2.1$ (79%)
1.95$ (90%)
0.75$ (92%)
1.13$ (96%)
5.63$ (81%)
0.75$ (92%)
3.0$ (50%)
1.7$ (90%)
6.96$ (83%)
3.0$ (85%)
3.8$ (81%)
3.0$ (50%)
MacGamestore

[ 4088 ]

7.48$ (75%)
1.99$ (80%)
2.99$ (93%)
6.99$ (86%)
3.74$ (75%)
0.89$ (87%)
3.99$ (90%)
38.99$ (13%)
1.09$ (89%)
1.19$ (88%)
1.19$ (76%)
17.99$ (10%)
1.10$ (93%)
2.49$ (75%)
1.24$ (75%)
2.99$ (93%)
4.99$ (50%)
3.99$ (90%)
3.49$ (88%)
13.49$ (10%)
6.24$ (75%)
3.49$ (65%)
1.98$ (80%)
1.19$ (76%)
2.98$ (85%)
15.89$ (21%)
8.99$ (82%)
9.49$ (81%)
1.19$ (91%)
8.99$ (10%)

FANATICAL BUNDLES

Time left:

356356 days, 12 hours, 6 minutes


Time left:

12 days, 19 hours, 6 minutes


Time left:

22 days, 19 hours, 6 minutes


Time left:

27 days, 19 hours, 6 minutes


Time left:

11 days, 19 hours, 6 minutes


Time left:

33 days, 19 hours, 6 minutes


Time left:

7 days, 19 hours, 6 minutes


Time left:

7 days, 19 hours, 6 minutes


Time left:

41 days, 19 hours, 6 minutes


Time left:

56 days, 19 hours, 6 minutes


Time left:

34 days, 19 hours, 6 minutes


HUMBLE BUNDLES

Time left:

0 days, 13 hours, 6 minutes


Time left:

2 days, 13 hours, 6 minutes


Time left:

9 days, 13 hours, 6 minutes


Time left:

10 days, 13 hours, 6 minutes


Time left:

19 days, 13 hours, 6 minutes

by buying games/dlcs from affiliate links you are supporting tuxDB
🔴 LIVE