]> git.localhorst.tv Git - blobs.git/blobdiff - src/creature/creature.cpp
smooth breathing a bit
[blobs.git] / src / creature / creature.cpp
index 3c4f544f2166bbf2e7f5a045988fa6442d283898..66931e921f58d06e5c227d1b3035f697203886d4 100644 (file)
@@ -171,9 +171,9 @@ void Spawn(Creature &c, world::Planet &p, app::Assets &assets) {
 
        if (p.HasAtmosphere()) {
                std::cout << "require breathing " << assets.data.resources[p.Atmosphere()].label << std::endl;
-               std::unique_ptr<Need> need(new InhaleNeed(p.Atmosphere(), 0.25, 0.1));
+               std::unique_ptr<Need> need(new InhaleNeed(p.Atmosphere(), 0.5, 0.1));
                need->name = assets.data.resources[p.Atmosphere()].label;
-               need->gain = 0.25;
+               need->gain = 0.2;
                need->inconvenient = 0.4;
                need->critical = 0.95;
                c.AddNeed(std::move(need));