Added crystalline stone vent variant

This commit is contained in:
Anuken
2022-09-12 19:47:54 -04:00
parent f968a8689c
commit a45c0f4a42
7 changed files with 12 additions and 6 deletions

View File

@@ -155,7 +155,7 @@ public class CommandAI extends AIController{
}
//others have arrived at destination, so this one will too
if(count >= Math.max(3, local.size / 2)){
if(count >= Math.max(2, local.size / 2)){
targetPos = null;
}
}

View File

@@ -49,7 +49,7 @@ public class Blocks{
redmat, bluemat,
stoneWall, dirtWall, sporeWall, iceWall, daciteWall, sporePine, snowPine, pine, shrubs, whiteTree, whiteTreeDead, sporeCluster,
redweed, purbush, yellowCoral,
rhyoliteVent, carbonVent, arkyicVent, yellowStoneVent, redStoneVent,
rhyoliteVent, carbonVent, arkyicVent, yellowStoneVent, redStoneVent, crystallineVent,
regolithWall, yellowStoneWall, rhyoliteWall, carbonWall, redIceWall, ferricStoneWall, beryllicStoneWall, arkyicWall, crystallineStoneWall, redStoneWall, redDiamondWall,
ferricStone, ferricCraters, carbonStone, beryllicStone, crystallineStone, crystalFloor, yellowStonePlates,
iceSnow, sandWater, darksandWater, duneWall, sandWall, moss, sporeMoss, shale, shaleWall, grass, salt,
@@ -492,6 +492,11 @@ public class Blocks{
attributes.set(Attribute.steam, 1f);
}};
crystallineVent = new SteamVent("crystalline-vent"){{
parent = blendGroup = crystallineStone;
attributes.set(Attribute.steam, 1f);
}};
redmat = new Floor("redmat");
bluemat = new Floor("bluemat");

View File

@@ -483,7 +483,7 @@ public class ModsDialog extends BaseDialog{
"[accent]" + mod.name.replace("\n", "") +
(installed.contains(mod.repo) ? "\n[lightgray]" + Core.bundle.get("mod.installed") : "") +
"\n[lightgray]\uE809 " + mod.stars +
(Version.isAtLeast(mod.minGameVersion) ? mod.subtitle == null ? "" : "\n[lightgray]" + Strings.truncate(mod.subtitle, maxModSubtitleLength) :
(Version.isAtLeast(mod.minGameVersion) ? "" :
"\n" + Core.bundle.format("mod.requiresversion", mod.minGameVersion)))
.width(358f).wrap().grow().pad(4f, 2f, 4f, 6f).top().left().labelAlign(Align.topLeft);