User:PigeonGuru/Sandbox

From RimWorld Wiki
Jump to navigation Jump to search
This user is a certified Dataminer.

template

http://rimworldwiki.com/index.php?title=Template:Nav/guides
http://rimworldwiki.com/wiki/Category:Page_Deletion

save file

C:\Users\%username%\AppData\LocalLow\Ludeon Studios\RimWorld by Ludeon Studios\Saves

°C

PigeonGuru, Strategist { talk | contribs }



old d.tactics is @ ~140,000 views



Weapons

  1. High-DPS single-target weapons are optimal in this situation. Focus fire to break down shields and quickly down the exposed enemy.
  2. EMP weapons can be used to devastating effect by knocking out their shields with 1 hit. A lucky hit with an EMP shell can take out most of the shields in a melee raid.
  3. Explosive weapons may be used to break their shields, though they block the entire explosion so a single explosion won't hurt them much. They should be used in conjunction with EMP weapons if you're looking for #damage.
  4. Incendiary weapons penetrate the shield and set the raider on fire, distracting them. While their shields continue to block gunfire, the distraction makes it easier for them to be broken, as well as scatters enemies apart.
  5. Sniper rifles are capable of breaking a weaker shield with a single shot. Combined with their long range, this makes them a good supporting weapon to weaken an incoming charge.
  6. The Firefoam popper is a surprisingly effective option in this situation. In addition to spreading a wide field of foam over the ground that slows down anyone walking over it, the popper will deplete shields, stripping melee attackers of their crucial protection.

Distraction structures

Once you have lots of bulk materials, but don't have enough industry to build proper defenses, you can build an distractions to temporarily delay raids.

Doing this can delay raids in early-mid game if you have the effort and materials, but as you enter mid-late game it's better that you replace the suppressor with something else, such as a killbox, which can actually bring the hurt.

Attention suppressor

A full-size attention suppressor with a 1-wide path, built out of granite.

Start like you're making a 29-wide room, but instead of doors, just leave one-tile openings at opposite ends. That way it doesn't get a roof. If needed, use a no roof area. Down the middle of the attention suppressor leave an open path, which will actually be traveled by your colonists. Pack the sides with alternating walls, leaving numerous blind alleys branching off the open path. The attention suppressor should look like two giant combs facing each other across the path.

A raider entering through an attention suppressor is presented with numerous blind alleys, each one of which could hold something important (in their perspective). Raiders will typically only resist the lure of a dozen or so blind alleys, before turning off into one to look for something to attack. In many cases they'll attack the walls, but the general effect is that a raiding force will spend a long time milling around in the attention suppressor, deeply distracted, and slowly trickle out of it toward your base alone, or (for a large raid) in twos and threes. This slow trickle of raiders is easily handled by a few colonists with basic weapons, or later a few turrets and a repairman.

Colonists and visitors with specific business on one side or the other of the attention suppressor will go quickly down the middle without being distracted. However, colonists pursuing joy activities like going for a walk will usually be diverted to do so in the blind alleys of the attention suppressor. As a result, it's not safe to fill with deathtraps.

Pros

  • Effectively distracts and delays raiders

Cons

  • Does not deal damage
  • Takes up large amounts of space
  • Expensive and time-consuming to build a lot of walls
  • Makes it harder to eliminate all raiders at once

Dummy power grid

Place many wires randomly around the area. This causes enemies to stop and ignite or fight the wires, delaying them.

Note that they will charge immediately upon seeing colonists so this is a measure to buy time at best.

datamined

namespace RimWorld.Planet { public static class CaravanTicksPerMoveUtility { private const int DownedPawnMoveTicks = 450;

public const float CellToTilesConversionRatio = 190f;

public const int DefaultTicksPerMove = 2500;

public static int GetTicksPerMove(Caravan caravan) { if (caravan == null) { return 2500; } return CaravanTicksPerMoveUtility.GetTicksPerMove(caravan.PawnsListForReading); }

public static int GetTicksPerMove(List<Pawn> pawns) { if (pawns.Any<Pawn>()) { float num = 0f; for (int i = 0; i < pawns.Count; i++) { int num2 = (!pawns[i].Downed) ? pawns[i].TicksPerMoveCardinal : 450; num += (float)num2 / (float)pawns.Count; } num *= 190f; return Mathf.Max(Mathf.RoundToInt(num), 1); } return 2500; } } }