Download (v0.3.4) - Bio Prototype Free
Unlike traditional roguelikes where you pick up a sword or a gun, tasks you with collecting biological organs. You act as a mad scientist’s experiment, slotting together brains, hearts, and various limbs to create synergistic weapon chains. The game is less about clicking and more about the intricate "coding" of your character's biology. Key Features of v0.3.4
Head back into the fray to see if your new mutation is a masterpiece or a dud. Why You Should Play v0.3.4
Link organs in a sequence. A "Trigger" organ (like a heartbeat) must be connected to an "Effect" organ (like a spine projectile) via a "Link" (like a nerve). Bio Prototype Free Download (v0.3.4)
Connect dozens of different organs. Want your heart to trigger an acid explosion every time you crit? Or perhaps a brain that spawns projectiles whenever a tentacle hits an enemy? The possibilities are nearly infinite.
Dive into the chaotic, microscopic world of , a fast-paced "bullet heaven" roguelike where you aren't just fighting monsters—you are building one. In version 0.3.4 , the experimentation goes deeper than ever, offering players a unique twist on the survival genre popularized by titles like Vampire Survivors . What is Bio Prototype? Unlike traditional roguelikes where you pick up a
The v0.3.4 update brings several refinements to the biological mayhem:
This version offers a stable and feature-rich entry point into the game. The balancing updates in v0.3.4 ensure that niche builds are more viable, allowing for creative experimentation rather than just following a "meta." Key Features of v0
Between waves, enter the laboratory to buy new organs.
That’s a brilliant tip and the example video.. Never considered doing this for some reason — makes so much sense though.
So often content is provided with pseudo HTML often created by MS Word.. nice to have a way to remove the same spammy tags it always generates.
Good tip on the multiple search and replace, but in a case like this, it’s kinda overkill… instead of replacing
<p>and</p>you could also just replace</?p>.You could even expand that to get all
ptags, even with attributes, using</?p[^>]*>.Simples :-)
Cool! Regex to the rescue.
My main use-case has about 15 find-replaces for all kinds of various stuff, so it might be a little outside the scope of a single regex.
Yeah, I could totally see a command like
remove cruftdoing a bunch of these little replaces. RegEx could absolutely do it, but it would get a bit unwieldy.</?(p|blockquote|span)[^>]*>What sublime theme are you using Chris? Its so clean and simple!
I’m curious about that too!
Looks like he’s using the same one I am: Material Theme
https://github.com/equinusocio/material-theme
Thanks Joe!
Question, in your code, I understand the need for ‘find’, ‘replace’ and ‘case’. What does greedy do? Is that a designation to do all?
What is the theme used in the first image (package install) and last image (run new command)?
There is a small error in your JSON code example.
A closing bracket at the end of the code is missing.
There is a cool plugin for Sublime Text https://github.com/titoBouzout/Tag that can strip tags or attributes from file. Saved me a lot of time on multiple occasions. Can’t recommend it enough. Especially if you don’t want to mess with regular expressions.