<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Ben Leskey's Blog: cdda</title>
		<description>cdda posts from Ben Leskey</description>
		<link>https://benleskey.com/blog/tags/cdda</link>
		<language>en-us</language>
		<copyright>2025 Ben Leskey</copyright>
		<lastBuildDate>Sun, 14 Sep 2025 18:47:00 +0000</lastBuildDate>
		<pubDate>Sun, 14 Sep 2025 18:47:00 +0000</pubDate>
		<atom:link href="https://benleskey.com/blog/tags/cdda.feed.xml" rel="self" type="application/rss+xml" />

		<item>
	<title>Arcana Technoclysm update: Magical UPS, whistle crafting, and bionic installation</title>
	<description>&lt;div&gt;&lt;p&gt;I&#x27;ve updated my mod &lt;a href=&quot;https://benleskey.com/blog/../aka/cdda-arcana-technoclysm&quot;&gt;Arcana Technoclysm&lt;/a&gt; for &lt;a href=&quot;https://cataclysmdda.org&quot;&gt;Cataclysm: DDA&lt;/a&gt; with some more new features.&lt;/p&gt;

&lt;p&gt;First the changes. The vehicle whistles can now be crafted from each other, so if you find the boat whistle and really wanted the motorcycle whistle you can still craft it. The recipes are written in the Cleansing Flame book and the arcana lab journal. Also, there are some more Technoclysm item spawns in the strange warehouse, so poke around! Technoclysm items can also spawn rarely with other Arcana items in labs or magic locations.&lt;/p&gt;

&lt;p&gt;The first new feature is an eternal UPS (power supply) which uses magical energy to constantly provide power to UPS-enabled tools. It has a recharge rate of about 2 kJ per minute and is fairly small, and can be either crafted or found.&lt;/p&gt;

&lt;p&gt;The second, and more important, new feature is a magical means of installing bionics. &lt;i&gt;Bionic talismans&lt;/i&gt; can be crafted from any power storage or power generation CBM. Using the bionic talisman will temporarily summon a magical avatar of the bionic, who will install any bionic for you before disappearing. This provides a means of installing bionics outside of the Exodii using another otherworldly force who may be more or less friendly.&lt;/p&gt;
&lt;/div&gt;</description>
	<category>software</category><category>games</category><category>cdda</category>
	<link>https://benleskey.com/blog/cdda_arcana_technoclysm_2</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_arcana_technoclysm_2</guid>
	<pubDate>Fri, 17 May 2024 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Recent great improvements in Cataclysm: DDA</title>
	<description>&lt;div&gt;&lt;p&gt;&lt;a href=&quot;https://cataclysmdda.org&quot;&gt;Cataclysm: Dark Days Ahead&lt;/a&gt; has recieved some really nice updates to the experimental branch in recent months. My top three are:&lt;/p&gt;
&lt;h2&gt;&lt;a href=&quot;https://github.com/CleverRaven/Cataclysm-DDA/pull/67907&quot;&gt;Default sort zone&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;This one is huge! Now you can define a loot sorting zone as a catchall, where items will be sorted unless there&#x27;s a more specific zone for them to go into. Previously, every time I settled down in a location or mobile base, I would have to set every zone for every filter as many times as there were tiles. It was so tedious that I wrote a Bash script to do it for me using xdotool, a script that is entirely useless now!&lt;/p&gt;

&lt;h3&gt;mobile-base-zones script&lt;/h3&gt;
&lt;pre&gt;
&lt;code language=&quot;bash&quot;&gt;
#!/bin/bash

. `which qterminal-helper`

# Custom zone letter
CUSTOM=j

# Delay between keys (msec)
DELAY=200

set -x

W=&quot;$(wmctrl -l | grep Cataclysm | cut -d&quot; &quot; -f1)&quot;
xdotool windowactivate &quot;$W&quot;
sleep 1

type() {
	xdotool type --delay $DELAY &quot;$(echo -e &quot;$1&quot;)&quot;
}

key() {
	sleep $(echo &quot;$DELAY / 1000&quot; | bc -l)
	xdotool key &quot;$@&quot;
}

zone() {
	pos=&quot;$1&quot;
	zone=&quot;$2&quot;
	type &quot;YA$zone\r$pos\r\r$CONFIRM&quot;
	key Escape
	type &quot;Y&quot;
}

customzone() {
	pos=&quot;$1&quot;
	filter=&quot;$2&quot;
	type &quot;YA$CUSTOM$filter\r\r$pos\r\r$CONFIRM&quot;
	key Escape
	type &quot;Y&quot;
}

. `which mobile-base-zones-config`

for pos in $GENERIC_P; do
	for zone in $GENERIC_Z; do
			zone &quot;$pos&quot; &quot;$zone&quot;
	done
done

for pos in $DUMP_P; do
	for zone in $DUMP_Z; do
			zone &quot;$pos&quot; &quot;$zone&quot;
	done
done
&lt;/code&gt;
&lt;/pre&gt;

&lt;h3&gt;mobile-base-zones-config&lt;/h3&gt;
&lt;pre&gt;
&lt;code&gt;
#!/bin/bash

# Y if vehicle, otherwise empty
CONFIRM=

# Collect positions from origin
GENERIC_P=&quot;&quot;
# Collect zones
GENERIC_Z=&quot;&quot;

# Dump positions from origin
DUMP_P=&quot;.&quot;
# Dump zones
DUMP_Z=&quot;0 a b c d e f g h i k l m n o p q t u v w x y z C D E F G J I K&quot;
&lt;/code&gt;
&lt;/pre&gt;

&lt;h2&gt;&lt;a href=&quot;https://github.com/CleverRaven/Cataclysm-DDA/pull/64334&quot;&gt;Plugging in tools&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;This one is just great quality of life. Now players can plug tools like welders, soldering irons, and especially smartphones (with their unswappable batteries) directly into appliances or vehicle dashboards. This saves all the tedium of continually swapping out batteries, and makes using electric tools just that much easier.&lt;/p&gt;

&lt;h2&gt;&lt;a href=&quot;https://github.com/CleverRaven/Cataclysm-DDA/pull/68686&quot;&gt;Brawling buff&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Finally there&#x27;s been a small buff to the Brawling style where waiting for a turn or two will grant a bonus to accuracy. This makes melee combat using the Brawling style feel more engaging, and gives more edge to early-to-mid-game melee combat.&lt;/p&gt;
&lt;/div&gt;</description>
	<category>games</category><category>cdda</category>
	<link>https://benleskey.com/blog/cdda_improvements</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_improvements</guid>
	<pubDate>Thu, 02 Nov 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Arcana Technoclysm: A small mod for Cataclysm: DDA</title>
	<description>&lt;div&gt;&lt;p&gt;&lt;a href=&quot;https://cataclysmdda.org&quot;&gt;Cataclysm: DDA&lt;/a&gt;&#x27;s premier magic mod is &lt;a href=&quot;http://www.cddawiki.chezzo.com/cdda_wiki/index.php?title=Magiclysm&quot;&gt;&lt;/a&gt;Magiclysm, which not only adds an entire magic system and slew of useful spells, items, and locations but also alters the lore of the game to imply that magic has existed throughout history. This lore breaks significantly from real world history, so I prefer mods that keep magic as something esoteric and hidden, such as the newly added mod &lt;i&gt;Mind Over Matter&lt;/i&gt; or the mature &lt;a href=&quot;https://github.com/chaosvolt/cdda-arcana-mod&quot;&gt;Arcana&lt;/a&gt; mod.&lt;/p&gt;

&lt;p&gt;However, there is one particular spell from Magiclysm that I love that is not available in any other mod: the &lt;i&gt;Summon Motorcycle&lt;/i&gt; spell. This is amazingly useful and fun to play with, so I decided to port the idea over to Magiclysm in my own mod. This new mod, &lt;a href=&quot;https://benleskey.com/blog/../aka/cdda-arcana-technoclysm&quot;&gt;Arcana Technoclysm&lt;/a&gt;, currently adds three temporary summonable vehicles and a new location to find the magic whistles needed to summon these vehicles. It&#x27;s a simple mod but fills in the summonable vehicle gap in the more lore-friendly magic mods. The vehicles currently available are an amphibious boat with wheels, a motorcycle, and a horseless carriage with plenty of cargo space. Each of the vehicles is a tradeoff between maneuverability, compatible terrain, and cargo space, so hopefully players will have incentive to find strange warehouses and collect all the magic whistles.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../images/technoclysm_items.png&quot; alt=&quot;A screenshot of the three vehicle summoning whistles from the Arcana Technoclysm mod&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../images/technoclysm_vehicles.png&quot; alt=&quot;A screenshot of the three summonable vehicles from the Arcana Technoclysm mod&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../images/technoclysm_warehouse.png&quot; alt=&quot;A screenshot of the new location where you can find vehicle summoning whistles&quot;&gt;
&lt;/div&gt;</description>
	<category>software</category><category>games</category><category>cdda</category>
	<link>https://benleskey.com/blog/cdda_arcana_technoclysm</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_arcana_technoclysm</guid>
	<pubDate>Fri, 20 Oct 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Make horses milkable</title>
	<description>&lt;span&gt;See &lt;a href=&quot;https://github.com/CleverRaven/Cataclysm-DDA/pull/66639&quot;&gt;https://github.com/CleverRaven/Cataclysm-DDA/pull/66639&lt;/a&gt;
&lt;/span&gt;</description>
	<category>cdda</category><category>software</category>
	<link>https://github.com/CleverRaven/Cataclysm-DDA/pull/66639</link>
	<guid isPermaLink="true">https://benleskey.com/blog/make_horses_milkable</guid>
	<pubDate>Mon, 03 Jul 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>CDDA big world showcase: Ernie&#x27;s great road trip</title>
	<description>&lt;div&gt;&lt;img class=&quot;right&quot; alt=&quot;The city size and city spacing settings for this CDDA world&quot; src=&quot;https://benleskey.com/blog/../images/cdda_ernie_map_world.png&quot;&gt;

&lt;p&gt;If you like road trips through the post apocalyptic rural wasteland, I&#x27;ve got the right &lt;a href=&quot;https://cataclysmdda.org&quot;&gt;Cataclysm: Dark Days Ahead&lt;/a&gt; world generation settings for you!&lt;/p&gt;

&lt;p&gt;City size of 16 makes absolutely huge metropolises, and city spacing 8 places these massive cities far apart, producing some amazing travel experiences. Normal generation is reather unrealistic with plenty of tiny towns close together, but with these settings getting between cities basically requires a car, and simulates the long abandoned highways you&#x27;d expect in a New England apocalypse.&lt;/p&gt;

&lt;p&gt;In my latest playthrough, my character Ernie drives in his sports car across the New England countryside for an entire day on his way to the refugee center, with not a single city in the way.&lt;/p&gt;

&lt;video src=&quot;https://benleskey.com/blog/../videos/cdda_ernie_map.webm&quot; preload controls&gt;&lt;/video&gt;

&lt;p&gt;There were plenty of interesting landmarks and happenings along the way, and lots of little rural gas stations for topping off the tanks and grabbing preserved food. This kind of travel was actually relaxing: 100 mph down straight stretches of highway. Just need to avoid all the abandoned and wrecked cars!&lt;/p&gt;

&lt;p&gt;Eventually Ernie settled down in the hunting lodge north of the refugee center, but there&#x27;ll be a lot more road trips in the future as Ernie builds a new life in this huge apocalyptic world.&lt;/p&gt;
&lt;/div&gt;</description>
	<category>games</category><category>cdda</category>
	<link>https://benleskey.com/blog/cdda_ernie_road_trip</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_ernie_road_trip</guid>
	<pubDate>Tue, 11 Apr 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Erik Otto #5: Gaining allies</title>
	<description>&lt;div&gt;&lt;ol class=&quot;toc&quot;&gt;&lt;/ol&gt;

&lt;h2 id=&quot;exploration&quot;&gt;Exploration&lt;/h2&gt;

&lt;p&gt;Before any high-level raiding, Erik wants more allies and resources. There is no more postal service or Amazon, so he goes exploring with Alejandro Quick.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/exploring.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Up around the big city should be rich pickings.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/turret%20car.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s an armored car along the side of the road with two turrets mounted on top. Erik and Alejandro pull over beside it and strip out the turrets for later.&lt;/p&gt;

&lt;p class=&quot;meta&quot;&gt;These turret mounts are the first step in a fully-automated laser defense system mounted on top of a vehicle. Such defenses would make raiding cities almost a breeze.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/battle.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik and Alejandro tear through a horde of zombies with 5.56 NATO rounds as they raid another evacuation shelter.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/southwick.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Reading a map they found on one of the zombie&#x27;s body, Erik learns about another city to the north-east. This&#x27;s one&#x27;s smaller, but no less dense.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/tower.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik climbs a radio tower to survey the surrounding area. There&#x27;s plenty of useful stores in the city, and some interesting features in the countryside.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/bunker.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He and Alejandro come across a survivor&#x27;s bunker surrounded by spiked pits. They don&#x27;t have any way to get across, so they leave it, but maybe there was something good in there, or even a survivor!&lt;/p&gt;

&lt;h2 id=&quot;gertha&quot;&gt;Gertha&lt;/h2&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/scavenger.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;As they drive across a field, they come across a survivor: a scavenger. She&#x27;s tough-looking, and Erik decides to recruit her into the cult.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/yay.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;She accepts! Gertha Solano joins the team!&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/gertha%20abilities.png&quot; alt=&quot;&quot;&gt;

&lt;p class=&quot;meta&quot;&gt;Gertha is a solid combat character. She has good melee skills, and amazing ranged skills, plus the excellent &lt;em&gt;Fast Learner&lt;/em&gt; trait which will help greatly in improving combat and non-combat skills.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/gertha%20camp.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Gertha packs up her makeshift camp and joins them in the back of the truck as they head to base to get Gertha geared up and settled in.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/gertha%20inv.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Gertha inheirits Erik&#x27;s position of primary explorer, and gets decked out with gear and weapons. Unlike Erik, she doesn&#x27;t care about fashion, so she sticks on a sturdy duster and Kevlar vest to be ready for any combat.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/faction%20camp.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;With three people in the cult now, Erik decides to set up a camp outside the bunker.&lt;/p&gt;

&lt;p class=&quot;meta&quot;&gt;
	The faction camp system lets NPCs embark on longer tasks, fetch resources, and craft items. It takes a &lt;em&gt;lot&lt;/em&gt; of resources to get faction camps up and running, so for now there&#x27;s just a tent for some shelter. Alejandro Quick can chop logs from the forest, for example, while the others are out exploring.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/gun%20basement.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;On an exploration trip in one of the Southwick houses, Gertha finds a gun basement with plenty of guns and ammunition. She uses a heavy crowbar to smash apart the ammunition safes.&lt;/p&gt;

&lt;p&gt;Later, Erik drives them to the refugee center, where they learn about some kind of scientific hub left after the apocalypse.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/hub01.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;It&#x27;s very far to the south, but the refugee leader wants them to deliver a packet of data.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/bandits.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Before that, Gertha takes their sniper rifle between the pickup seats and takes out a camp of bandits from range.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/dead%20bandits.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Those bandits weren&#x27;t even dangerous. Not since Gertha had a rifle that powerful.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/person%20spotted.png&quot; alt=&quot;&quot;&gt;

&lt;h2 id=&quot;kathy&quot;&gt;Kathy&lt;/h2&gt;

&lt;p&gt;While driving down toward the scientific hub, they spot signs of life in a little swamp shack.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/kathy.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;It&#x27;s another person! Kathy Burroughs, another survivor, agrees to join the gang. She&#x27;s in excellent physical condition, even stronger than Gertha, so she&#x27;ll be a valuable asset on the exploration team.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/raiding%20cabin.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;While raiding a bandit cabin, Gertha engages in close quarters rifle combat. She hides out of sign, training her aim on doorways, and when a hapless bandit charges out she guns him down with no more than a squeeze of her trigger.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/hub01_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Finally they reach the scientific hub, Hub 01.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/intercom.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s an intercom in the main building, but nobody alive upstairs. After some back-and-forth with the person on the other side of the intercom, Erik gets enough favor to begin accepting mercenary missions and traiding.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/intercom%20trade.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Hub 01 trades good books, armor, weapons, and scientific items.&lt;/p&gt;

&lt;h2 id=&quot;domenic&quot;&gt;Domenic&lt;/h2&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/domenic.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Hearing cries of help from a cabin on an exploration trip, Gertha and Kathy fight through a horde of zombies to rescue Domenic Driver. He agrees to join their group without Erik even present. The cult is growing.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/domenic%20stats.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Domenic is not very strong, but he&#x27;s an unarmed combat master. In the future, perhaps, he can teach the rest of them. For now he&#x27;ll be stuck on camp duty after getting geared up.&lt;/p&gt;

&lt;h2 id=&quot;turret&quot;&gt;Laser turret&lt;/h2&gt;

&lt;p&gt;One of the Hub 01 missions left the group with an &lt;em&gt;hm12 dazzle rifle&lt;/em&gt;, a weak but cheap laser weapon that damages even robots. Erik wants to mount it on the pickup truck with automatic targetting, so he reads plenty of books to design a turret and turret controller system.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/getting%20bots.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;They also retrive some broken riot control turrets that Erik shot up earlier, to strip them for parts and AI cores.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/installed%20turret.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Finally Erik installs the automated laser turret on the pickup truck. This will target and destroy anything hostile it sees, and greatly improves the teams offensive and defensive power.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/5/lab%20target.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Next stop: a top-secret scientific lab sitting in the middle of a giant ant nest to the north-west.&lt;/p&gt;
&lt;/div&gt;</description>
	<category>games</category><category>letsplay</category><category>cdda</category><category>cdda_erik</category>
	<link>https://benleskey.com/blog/cdda_erik_5</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_erik_5</guid>
	<pubDate>Tue, 14 Feb 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Erik Otto #4: Arsenal</title>
	<description>&lt;div&gt;&lt;p&gt;With lockpicks in hand, Erik drives out to the wind turbines to pick their locks and survey the area.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/picking_lock.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;It takes him nearly the whole day to pick one of the locks, stopping to eat cake and drink water for lunch.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/picked_lock.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	Finally! He picks the lock, and at the same time gains proficiency in picking locks, which will make the other wind turbines much faster.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/new_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;After climbing to the top, he gains a wide view of the surrounding area.&lt;/p&gt;

&lt;p&gt;Before heading to the next wind turbine, Erik decides to complete the mission given by Smokes the refugee center merchant and clear out their back bay.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/clearing_back_bay.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Sure enough, he pulls back a locker, opens the solid door, and a flood of zombies comes stumbling at him with outstretched arms. Erik pulls back and lets the strong guards with sturdy stone spears take care of them.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/cleared_back_bay.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The battle was bloody, but only zombies died. Erik collected his reward from Smokes: a bunch of refugee center money known as &quot;merch&quot; by the Free Merchants faction who ran the center.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/new_mission.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He also received a new mission: to find and eliminate a gang of bandits preying on Free Merchants caravans. This would be extremely dangerous, if these bandits had guns.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/more_map2.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Before that, Erik picked his way into two more wind turbines and found even more of the map.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/mansion.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There was a big mansion to the north of the last turbine, so Erik and Alejandro went to investigate.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/firefighting.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;While Alejandro guarded the pickup, Erik lit some fires and taunted zombies into the flames, stabbing at them with his combat knife. He didn&#x27;t make it far into the mansion, but there was still some good loot.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/hiking%20backpacks.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Two hiking backpacks, some of the best packs ever sold. Erik quickly made these his and Alejandro&#x27;s standard kit pack.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/another.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He converted his old rucksack into another standard kit for the next member of his team, whenever he found them.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/npc_wood.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Back at base, Erik decided he needed a fence for his cows. He had Alejandro chop down trees and cut them into planks, while he went on the hunt for nails.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/burned_down.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik burned down a moonshine still through the night, and tool the nails out of the dust and rubble left afterward. He needed lots of nails for this fence.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/fence.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;By the end of the next day, Erik and Alejandro had built a fence for their four cows!&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/22%20silent.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik&#x27;s next move was to raid some libraries, to get enough books to craft advanced items and build better cars. The problem was combat in a city: Erik didn&#x27;t want to resort to melee combat for fear of injury, and guns were too loud. However, a suppressed .22 caliber rifle was as quiet as footsteps, and powerful enough to take down even tough zombies. Erik grabbed a pocket full of ammunition and his suppressed Marlin 39A and went off library raiding.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/library1.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The first library, down to the southwest of his base, yielded some useful books, though it was severely torn up. His silenced .22 rifle tore through zombies without them even noticing him.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/library2%20map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The second library, up in the huge city, proved to be just as easy a raid, though it too had been vandalized and many of the books rendered unreadable.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/books.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik brought the books back to base with a good feeling in his heart. They would be very useful in the future.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/fridge%20and%20freezer.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He also retrieved another freezer and a refrigerator from a bunker he and Alejandro had raided on the way. He didn&#x27;t turn the freezer on yet, but the fridge would be very useful for storing cow milk for him and Alejandro to drink for the calories.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/military%20outpost.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;During his exploration, Erik had noticed a small military outpost. It didn&#x27;t look too occupied, and would have valuable ammunition, so he and Alejandro went on a raid.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/dermatiks.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;They shot down a cloud of huge ovipositing wasps, then broke into the outpost with little resistance. One C-4 explosion later, and they carted home more than 2000 rounds of 5.56 NATO ammunition.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/4/ammo.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;With this arsenal, Erik and Alejandro were ready to begin focusing on further goals: electric hybrid cars, automated laser turrets, and raiding top-secret science laboratories.&lt;/p&gt;
&lt;/div&gt;</description>
	<category>games</category><category>letsplay</category><category>cdda</category><category>cdda_erik</category>
	<link>https://benleskey.com/blog/cdda_erik_4</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_erik_4</guid>
	<pubDate>Wed, 08 Feb 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Autodrive into a crater fix</title>
	<description>&lt;div&gt;&lt;a href=&quot;https://benleskey.com/blog/../images/cdda_truck_in_hole.png&quot;&gt;&lt;img src=&quot;https://benleskey.com/blog/../thumbs/cdda_truck_in_hole.50.png&quot; alt=&quot;A pickup truck fallen into a crater in Cataclysm: Dark Days Ahead&quot; class=&quot;right&quot;&gt;&lt;/a&gt;

&lt;p&gt;
	In my current &lt;a href=&quot;https://cataclysmdda.org&quot;&gt;Cataclysm: Dark Days Ahead&lt;/a&gt; &lt;a href=&quot;https://benleskey.com/blog/tags/cdda_erik&quot;&gt;playthrough&lt;/a&gt;, I ran into a problem with the autodrive feature: it&#x27;d drive me straight into a crater and crash the vehicle.
&lt;/p&gt;

&lt;p&gt;This seemed like a straightforward fix, so I checked out the master branch and set about debugging. Autodrive definitely has the capability to avoid certain terrain, so I guessed it was just a mistake in how it was calculating ledge traps or open air terrain.&lt;/p&gt;

&lt;p&gt;Sure enough, it was just an error in how the vehicle was being considered as &quot;able to drive over air&quot;. With the existing logic, autodrive thought every vehicle could fly. The fix was simple: only consider helicopters (the only flying vehicle) that have enough rotor power as flyable.&lt;/p&gt;

&lt;p&gt;I have &lt;a href=&quot;https://github.com/CleverRaven/Cataclysm-DDA/pull/63487&quot;&gt;a pull request fixing this issue&lt;/a&gt; ready to be merged.&lt;/p&gt;
&lt;/div&gt;</description>
	<category>cdda</category><category>debugging</category><category>software</category>
	<link>https://benleskey.com/blog/cdda_no_hole</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_no_hole</guid>
	<pubDate>Wed, 08 Feb 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Erik Otto #3: Preparing for battle</title>
	<description>&lt;div&gt;&lt;ol class=&quot;toc&quot;&gt;&lt;/ol&gt;

&lt;p&gt;Now that the base is set up, Erik can start more organized exploration and raids. To manage having a large number of followers&amp;#8212;when he gets them&amp;#8212;he needs to set up stations for people to suit up and suit down.&lt;/p&gt;

&lt;h2 id=&quot;gear&quot;&gt;Organizing gear&lt;/h2&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/washboard.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;First, Erik crafts a washing kit and washes up some holsters and sheaths he took off zombie corpses while raiding light industry compounds.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/clothes.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Full outfits go into the clothes room. Currently there isn&#x27;t much difference, but in the future there may be full hazmat outfits, melee raiding outfits, summer outfits, etc.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/weapons.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Weapons&amp;#8212;including slings, holsters, sheaths, and the like&amp;#8212;go into the weapons side of this room. Weapons racks should include a gun and a backup melee weapon. In the future there&#x27;ll be sidearms and rifles in every rack.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/gear.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Finally, the racks in this half of the room hold backpacks filled with supplies. The backpacks all contain vital tools, like flashlights, multitools, lighters, and prying tools. Eventually the tools will become standardized, but for now there is a little variance between the tools, though they all provide mostly the same capabilities.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/mission_pack.png&quot; alt=&quot;&quot;&gt;
&lt;p&gt;Finally, the counters in the workshop are for mission packs, sets of items needed for various missions. Anyone can grab one of these and go.&lt;/p&gt;

&lt;h2 id=&quot;exploring&quot;&gt;Exploration&lt;/h2&gt;

&lt;p&gt;Erik takes the pickup truck out for an exploration spin to scout more of the area and collect useful loot.

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/ranch.png&quot; alt=&quot;&quot;&gt;

&lt;/p&gt;&lt;p&gt;Up near the huge city, Erik finds a ranch with a gas station nearby. The city filled with zombies is uncomfortably close, but he makes sure to stay out of dead earshot.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/steam%20tractor.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a steam-powered tractor in the barn. Not really useful, but perhaps a time will come when coal is more plentiful than gas?&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/gas%20station.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Not yet, however. Erik fills up his pickup truck with gasoline from the pump. It&#x27;s still working.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/old%20van.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The van he and Alejandro found back when the first left the evac shelter still has gas in it. Erik takes the gas.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/new%20lamp.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Back home, Erik installs a new standing lamp to light up the rest of the storage areas, then heads out for more exploration.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/shooting%20zapper.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;A zapper zombie guards a fire lookout tower. Erik guns it down with a single bullet, then goes up into the tower to survey the land.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/more%20map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Nothing much that&#x27;s interesting.&lt;/p&gt;

&lt;h2 id=&quot;weapons&quot;&gt;Weaponry&lt;/h2&gt;

&lt;p&gt;With the guns and ammunition that he has, Erik decides it&#x27;s time to take on the military helipad to the east, looking for more fuel, ammunition, and explosives.

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/helipad.png&quot; alt=&quot;&quot;&gt;

&lt;/p&gt;&lt;p&gt;The helipad itself is a small military base, very accessible.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/helipad%20fuel.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;It&#x27;s also got plenty of fuel, for when Erik converts some of his vehicles to be diesel/electric hybrids.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/zombie%20dog.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;A zombie dog attacks Erik from within an abandoned cabin. It bites his leg deeply before he shoots it to pieces.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/alcohol%20wip.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Not a problem; Erik uses some alcohol wipes to disinfect his wound and keeps going. He can&#x27;t wait to gather more followers so he doesn&#x27;t have to do this himself.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/hiding.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The military roadblocks with automated turrets are goldmines for ammunition and magazines, but the problem is the turrets. Erik devises a method shooting the turrets before they can even see him. He crouches in his truck to avoid line of sight and drives right next to the turret...&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/pop%20out%20and%20shoot.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;...then he pops up to check where it is, ducks down again, pokes his rifle out the window...&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/blam.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;...and &lt;strong&gt;BLAM&lt;/strong&gt;, there&#x27;s a dead turret. Rinse and repeat for the other turret, and for the other roadblocks in the area. Erik picks up 9mm pistol rounds as well as 5.56 NATO rifle rounds.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/more%20map%202.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/more%20map%203.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik scouts still more of the area. He spots another Last Man On Earth bunker to the north, and investigates.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/secret%20passage.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;This one had a hidden passage behind a bookcase. Erik slides the bookcase out of the way and finds a cache of guns and ammunition.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/lmoe.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The full bunker had a decent amount of supplies. Erik throws them all into his truck. Every little bit helps.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/military%20roadblock.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The military roadblock near the original evac shelter is the next nut to crack. Erik approaches with a full rifle as the zombie soldiers are distracted by the turrets.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/boom.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;One battle later, and everything but Erik is dead. He might not want to get his hands dirty, but there is no fury like the wrath of a lazy man.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/back.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He returns with a haul of guns and ammunition to base, ready to sort it out with Alejandro.&lt;/p&gt;

&lt;h2 id=&quot;return&quot;&gt;Return to base&lt;/h2&gt;

&lt;p&gt;The next step in the scouting phase is to break into some of the wind turbines to get an even broader view of the area. For this, Erik could either cut through the metal doors with an acetylene torch, which would be expensive, or he could craft some lockpicks and just spend a little time.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/workbenches.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Some sturdy workbenches looted from the helipad will make this easier.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/3/lockpicks.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik crafts a set of lockpicks with Alejandro&#x27;s help. It&#x27;s time for phase two of the scouting plan: wind turbine breaking and entering.&lt;/p&gt;
&lt;/div&gt;</description>
	<category>games</category><category>letsplay</category><category>cdda</category><category>cdda_erik</category>
	<link>https://benleskey.com/blog/cdda_erik_3</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_erik_3</guid>
	<pubDate>Mon, 06 Feb 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Erik Otto #2: Base building and car collecting</title>
	<description>&lt;div&gt;&lt;p&gt;
	Erik and Alejandro have established a base, but now they need supplies, food, weapons, and vehicles. It&#x27;s time to go exploring and looting. They purchase ammunition from the refugee center by trading novels&amp;#8212;apparently the refugees love reading&amp;#8212;and hit the road in their RV. Tools are the first priority, so they can get vehicles working and build up their base.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/raiding_light_industry.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The light industry scattered around the map are too valuable a target, with all the tools that can be found there. Erik and Alejandro move in guns blazing, Erik with his Uzi and Alejandro with his Glock 19. The battle is bloody and brutal, but they conquer the zombies and pack tools and resources into the RV to take back to the base.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/north_brookfield_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;One of the zombies was carrying a map, revealing a huge city just to the north. This interior of this huge city won&#x27;t be raidable for a while, but the outskirts could provide valuable loot if Erik finds suitable peons to do the dirty work for him. Raiding is just too risky for the king himself, and Alejandro is &lt;em&gt;really&lt;/em&gt; flimsy.&lt;/p&gt;

&lt;p class=&quot;meta&quot;&gt;This world is using bigger cities with larger city spacing, so exploring one city could take a very long time, but there&#x27;s more stuff between cities.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/dairy_farm.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;At a dairy farm, Erik finds a working ATV and a working cube van. He and Alejandro shuffle the vehicles back home. They also take four cows, and tie them up just outside the base for milk and, perhaps, meat.&lt;/p&gt;

&lt;p class=&quot;meta&quot;&gt;Having the debug ability to swap between characters makes getting new vehicles much easier. Before, the only way would be to use a folding vehicle to go back and forth, or just walk. I really like this multi-character playstyle, and I think it should become an officially supported mode.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/vehicles.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The collection of vehicles outside the bunker is steadily growing. Erik is pleased with his options.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/atv.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He and Alejandro go out on a wild ATV exploration trip.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/worm.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;They get chased by a huge underground worm, churning up the dirt, but they survive.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/drill.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;At an incomplete cabin, abandoned during construction, they find a cordless drill. This is the missing piece they needed to replace vehicle fuel tanks, letting them collect a pickup truck that Erik had been wanting for a couple days.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/more_vehicles.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The number of vehicles grows still more. Eventually they&#x27;ll probably build custom vehicles, but for now whatever they can salvage will have to do.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/electronics_reading.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;With all these tools, Erik reads an electronics book to research how to hook up his solar panels to his appliances and get electricity off the grid.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/battery.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He takes apart an electric jackhammer for the high-capacity battery and mounts it in his utility room.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/solar_panels.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Then Erik takes all of his solar panels that he salvaged from that solar car and places them up on top of the bunker hill. This will provide a lot of power during the day, even though many of the the panels are somewhat damaged. He hooks the solar panels with a long extension cord down to the battery in the bunker, to collect the power and then provide it for his appliances.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/appliance_setup.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He drags all the appliances into the workshop room for now. He&#x27;d crafted a standing lamp from flashlight parts, and built a battery recharging locker that he put by the workshop chair. He hooked up the oven, freezer, and water purifier too: food storage, cooking, and water access were no longer issues.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/2/grid_battery.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The battery fills up. The core of the base is now complete. It&#x27;s time for Erik to look toward the future of his cult, and to build his kingdom&#x27;s organization, defensive weapons, and offensive power.&lt;/p&gt;
&lt;/div&gt;</description>
	<category>games</category><category>letsplay</category><category>cdda</category><category>cdda_erik</category>
	<link>https://benleskey.com/blog/cdda_erik_2</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_erik_2</guid>
	<pubDate>Mon, 06 Feb 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Erik Otto #1: Used car cult salesman</title>
	<description>&lt;div&gt;&lt;h2 id=&quot;intro&quot;&gt;Intro&lt;/h2&gt;

&lt;p&gt;It&#x27;s time for a new &lt;a href=&quot;https://cataclysmdda.org&quot;&gt;Cataclysm: Dark Days Ahead&lt;/a&gt; let&#x27;s play!&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/character.png&quot; alt=&quot;&quot;&gt;

&lt;ol class=&quot;toc&quot;&gt;&lt;/ol&gt;

&lt;p&gt;Erik Otto is a former used car salesman shunted away to one of the many FEMA evacuation shelters during the end of the world. He&#x27;s extremely intelligent, very sociable, and attractive. If he hadn&#x27;t been a used car salesman, he always thought that he&#x27;d make a good cult leader. Well, now that the apocalypse has arrived, now is the chance for the Cult of Erik to arise.&lt;/p&gt;

&lt;p class=&quot;meta&quot;&gt;This character is designed to attract NPCs and become a sort of hub for an NPC enclave. Using a &quot;debug&quot; menu feature, I can take control of any NPC follower that Erik Otto gains and pilot that NPC just like a player. Ideally, Erik will have to adventure less and less and will become a crafting king and source of knowledge for the NPC peons that follow him. The starting scenario, Evacuee, gives us one NPC right away, which Erik will easily be able to win over. Random NPC spawning is also increased, so there will be more friends out there as Erik explores the world.&lt;/p&gt;

&lt;p class=&quot;meta&quot;&gt;Another key advantage to having NPC followers is that, in the event the player character dies, the game continues with any of the NPC followers. This is&amp;#8212;essentially&amp;#8212;extra lives, although training up a character is a time and resource intense process, and NPCs are decently rare. We start out with one extra life in the form of our first NPC ally, but ideally Erik Otto will survive to stop adventuring simply because his proteges are capable of doing the dirty work.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/start_map.png&quot; alt=&quot;&quot;&gt;

&lt;p class=&quot;meta&quot;&gt;
	The game starts with a view of the overmap. Only a small radius is viewable at the start of the game. In the top left corner we can see that there is an NPC here too, &lt;em&gt;Alejandro Quick&lt;/em&gt;. There&#x27;s a regional dump south of us, far too dangerous to be approached during the day early on, and there&#x27;s a research facility to the southeast, which is an end-game location. The mound of dirt a little ways to the east is a more immediate threat&amp;#8212;it&#x27;s a dermatik nest.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/fren.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	It&#x27;s just Erik Otto and Alejandro Quick in this evacuation shelter. Erik is dressed fine in his suit and dress shoes, sporting a gold watch. Alejandro, on the other hand, is wielding an SKS rifle and wearing explorer&#x27;s gear. He was a little more prepared when they got shunted off to the FEMA evacuation shelters. After a night of regaining their senses, they came upstairs. The shelter is no place to stay; clearly no help is coming. Erik decides to persuade Alejandro to come with him. It might be good to have someone like Alejandro escorting him to safer territory.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/got_fren.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Erik is a smooth talker, and his looks don&#x27;t hurt his chances. He easily convinces Alejandro to keep him safe. Now Alejandro is his loyal follower until one of them dies. Hopefully not Erik.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/fren_stats.png&quot; alt=&quot;&quot;&gt;

&lt;p class=&quot;meta&quot;&gt;
	Our friend has a range of stats. He&#x27;s rather fragile, but he&#x27;s got Robust Genetics. He&#x27;s also amazing at health care, good at mechanics, and a smooth talker. For combat, he&#x27;s got high rifles and submachine guns skills, and he&#x27;s wielding a 10 round rifle to boot. He&#x27;s got a leather backpack, but Erik takes for himself right away.
&lt;/p&gt;

&lt;h2 id=&quot;leaving&quot;&gt;Leaving shelter&lt;/h2&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/refugee_center.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik uses the evac shelter console to figure out the route to the regional refugee center. That place should have a lot more people, survivors of the end of the world. It&#x27;s not even that far by road.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/setting_rules.png&quot; alt=&quot;&quot;&gt;

&lt;p class=&quot;meta&quot;&gt;We set Alejandro&#x27;s NPC rules to make him a little less likely to run off into a crowd of zombies. We have him stick close to us and not smash zombie corpses to prevent them from rising again.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/heading_out.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik and Alejandro hit the road. They plan to walk all the way to the refugee center, avoiding any trouble along the way. If they do have difficulty, Alejandro can just shoot it.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/inventory.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik grabbed up a bunch of useful food, supplies, and medicine from the evac shelter. He&#x27;s got a lacking inventory heading into this hike: no weapon, but at least he has an emergency blanket!&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/roadblock.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a military roadblock set up on the road outside the evac shelter. Zombie soldiers are attacking a riot controll turret. It&#x27;s shooting them, and they can&#x27;t bash through its military-grade steel armor, so they&#x27;re keeping themselves busy.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/sneaking.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik and Alejandro sneak to the south of the roadblock. Neither the zombies nor the turrets notice them. Erik does plan to return here eventually, when he can kill those zombies and evade the turret, because the soldiers dropped a bunch of guns and ammo on the ground when they were... turned.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/cabin.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a little cabin in the woods by the road, the first signs of residence they&#x27;ve found so far. Erik decides to check it out.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/cabin_explored.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The cabin is completely abandoned, nothing useful here.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/ruined_van.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;A little further down the road the two travelers come across a van stalled in the middle of the road. Erik checks it out, but its interior is trashed. There&#x27;s some gas in there, which they can siphon off when they get a working vehicle.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/claw_bar_in_police_suv.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;In a crashed police SUV, Erik collects a claw bar. This is a useful tool that he can use to pry open doors and break into windows, as well as just swing to defend himself if necessary. He doesn&#x27;t want to get that messy though. A spear would be the nicest thing to have on his back.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/evading_wasp.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a huge wasp hovering by a ruined shed. The two travelers go around; that thing looks really dangerous.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;A light industrial compound connected to the road above them but they didn&#x27;t stop there. Maybe later, once they&#x27;ve stocked up on supplies and weapons, but for now they just want to get to safety.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/corpses.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Some kind of deal went down here, and there&#x27;s a bunch of bodies. Erik spots a gun on the ground.&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/uzi_stats.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	This Uzi submachine gun is decent, and uses the common 9x19mm ammunition. Erik takes this gun as his own.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/more_corpses.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s more corpses in a field by the road. When the end of the world hit, too many people were caught out in the open.&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/binoculars_stats.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	Erik takes a pair of binoculars from a dead man&#x27;s pack. These will be useful for surveying the land as they travel.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/grave.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a lonely grave in the field. They stop and look at it for a moment.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/solar_car.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;A high-tech solar car is parked on the road. It&#x27;s motor is completely shot, but the panels are still operational and so is the internal recharging station. Erik notes where it is on his scrawled map.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/map_lmoe.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;They come down to a little hump in the land, a Last Man On Earth shelter bunker. It doesn&#x27;t look like anyone lives here, and its really close to the refugee center.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/bunker.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik and Alejandro head down inside. The cool underground air and earth scent wafts up to meet them.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/cleaned_up_around_the_place.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;This is a lovely place! There were some survival supplies and tools, plus random clothing. Erik likes it so much he decides that this will be their permanent base. With some solar panels and batteries it could be a pretty good house for his future plans!&lt;/p&gt;

&lt;h2 id=&quot;refugee&quot;&gt;Refugee center&lt;/h2&gt;

&lt;p&gt;It&#x27;s now time to visit the refugee center. Erik sets out on foot and the journey is uneventful.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/entering_refugee_center.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The forest and fields give way to a fenced-in overgrown road leading to a huge brick building.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/refugee_entrance.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Here at the entrance to the refugee center, Erik approaches the reinforced wood doors. Vehicles scatter the parking area surrounding the refugee center, and the place is lit up with electric lights.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/refugee_lobby.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik steps into the refugee center lobby, the center of trading and life in the post-apocalyptic world.&lt;/p&gt;

&lt;p class=&quot;meta&quot;&gt;
	The refugee center is one of the primary mission hubs in the world of Cataclysm: Dark Days Ahead. Here we find Smokes, the tough leader figure who trades useful tools and raw materials. We also can find the doctor. There are plenty of other NPCs here too, some who can be persuaded to join us, and some with missions of their own.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/trading.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Smokes offers Erik a wide array of bartering options.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/clear_back_bay.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/analyze_zombie_blood.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Smokes and the doctor both offer Erik some missions. Smokes wants Erik&#x27;s group to help clear out the back bay of zombies. The doctor wants Erik to analyze some zombie blood.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/hospital_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The nearest hospital is a ways to the south, according to the doctor, but now at least Erik knows where a city is.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/stripped_car.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;After returning from the refugee center, Erik and Alejandro strip the solar car of panels. They&#x27;ll set up a solar-powerered base soon.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/warrener_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;A cabin visible in the forest nearby draws Erik&#x27;s attention, so he and Alejandro go check it out.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/warrener.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a strange man with hooves and fur keeping rabbits living there. He&#x27;d like them to bring him logs, so maybe Erik will curry favor with the rabbit man that way.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/isherwood_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He also wants Erik&#x27;s crew to contact a farm family a long way to the south east.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/campsites.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;After that, Erik decides to check out some campgrounds nearby, looking for vehicles and supplies.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/hotwiring.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;At one of them Erik hotwires a diesel hatchback and drives it home.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/hotel_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a motel to the west. Erik and Alejandro checks it out.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/motel_rv.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Erik sneaks past zombies to steal an RV parked in the motel lot.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/rv_home.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;It makes a nice view, parked in front of his bunker.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/drive_belt.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He just installs a makeshift drive belt for the alternator, and it&#x27;s a solid vehicle, if very fuel inefficient due to the damaged engine.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/erik/1/zones.png&quot; alt=&quot;&quot;&gt;

&lt;p class=&quot;meta&quot;&gt;
	Part of every serious base is setting up sort zones. These zones let loot be automatically sorted all over the base. Here we have most loot in the workshop room, but food goes into the kitchen.
&lt;/p&gt;

&lt;p&gt;Now that Erik and Alejandro have moved in to their new base and made contact with their neighbors, it&#x27;s time for them to build an electrical grid and get started collecting supplies, weapons, and friends.&lt;/p&gt;
&lt;/div&gt;</description>
	<category>games</category><category>letsplay</category><category>cdda</category><category>cdda_erik</category>
	<link>https://benleskey.com/blog/cdda_erik_1</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_erik_1</guid>
	<pubDate>Sun, 05 Feb 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>CDDA let&#x27;s play: Post-mortem</title>
	<description>&lt;div&gt;&lt;p&gt;I tried my hand at a &lt;a href=&quot;https://cataclysmdda.org&quot;&gt;Cataclysm: Dark Days Ahead&lt;/a&gt; screenshot and text let&#x27;s play, featuring &lt;a href=&quot;https://benleskey.com/blog/tags/cdda_raymon&quot;&gt;Raymon Ortega: Would-be Wizard&lt;/a&gt;. It was really fun to write, but there&#x27;s a few points I&#x27;ll remember for next time:&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;Choose a more active start. Most of this let&#x27;s play wasn&#x27;t very exciting, just trying to get to the refugee center. There wasn&#x27;t much action. Maybe a megacity playthrough?&lt;/li&gt;
	&lt;li&gt;Build more story. Getting missions and/or goals sooner will give drive to the character and make the story interesting.&lt;/li&gt;
	&lt;li&gt;Play patiently. The LP can be built slowly; no need to rush objectives. Raymon probably didn&#x27;t have to 100% get to the refugee center, I could have built up gear and spells where I was before I reached the refugee center.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I do want to try another. C:DDA is a great game for text-based let&#x27;s plays, and if I keep in my what I learned here, I&#x27;ll be able to have even more fun and put out an even better let&#x27;s play.&lt;/p&gt;
&lt;/div&gt;</description>
	<category>games</category><category>letsplay</category><category>cdda</category><category>cdda_raymon</category>
	<link>https://benleskey.com/blog/cdda_raymon_postmortem</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_raymon_postmortem</guid>
	<pubDate>Thu, 02 Feb 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Raymon Ortega #4: The End</title>
	<description>&lt;div&gt;&lt;ol class=&quot;toc&quot;&gt;&lt;/ol&gt;

&lt;p&gt;&lt;em&gt;In the previous episode:&lt;/em&gt; Raymon camped out for a couple nights below a city, looting and fighting. After looting and fighting for a while, and discovering there was no way around the city from where he was, he hopped into his SUV and backtracked to try and find an off-road path back to a route toward the refugee center.&lt;/p&gt;

&lt;h2 id=&quot;leg&quot;&gt;First leg&lt;/h2&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/found_road.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Sure enough, Raymon finds road just ahead, and it&#x27;s leading east-west! This could be his ticket to the refugee center.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/more_light_industry.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a light industrial compound built right next to the road, and it doesn&#x27;t look very infested with the dead. A few zombies here and there, but what with Raymon&#x27;s practice back at the city (which he still doesn&#x27;t know the name of) Raymon feels up to the challenge of clearing this area in search of valuable tools and books.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/zombie_runner.png&quot; alt=&quot;&quot;&gt;
&lt;blockquote&gt;&lt;p&gt;This recently-risen body moves quickly, darting its head back and forth and gnawing at its hands.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Zombie runners are fast, but not as fast as Raymon when he runs. He kites them around, stabbing with his spear, and they only catch up once or twice to land a glancing scratch or two. Raymon&#x27;s spear is more than a match for them.&lt;/p&gt;

&lt;div class=&quot;image-set&quot;&gt;&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/flyer.png&quot; alt=&quot;&quot;&gt;&lt;/div&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/vending_machines.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s vending machines in the lobby of the industrial complex, but Raymon doesn&#x27;t have a cash card on him.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/dropping_backpack.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;One of the most effective things Raymon can do to prepare for combat is drop his backpack. With that weight off his shoulders, his spear almost sings through the air as he impales zombies limb from limb.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/flyer2.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;This flyer Raymon remembers. It was one of many that made him aware of the new evacuation shelters, and probably saved his life when the world fell apart. He couldn&#x27;t quite remember how he got there though...&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/zombie_in_chains.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;One zombie had managed to get itself stuck in a fenced-off machinery area. Raymon pokes at it through the holes until it dies.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/fighting_fire_with_fire.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Another tactic Raymon uses is lighting a small brush fire and letting the zombies step into it and burn to death as he holds them back with his spear. He manages to kill half a dozen zombies this way, all in the same place.&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/denarius.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	One of the zombies is carrying a strange coin that Raymon&#x27;s never seen before. Something seems magical about it&amp;#8212;the metal feels too smooth, too strong.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/cube_van.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	A cube van parked by the other half of the compound holds nearly six liters of gasoline. It&#x27;s a little too bulky to be his main vehicle though. Raymon siphons the gas and fills up his own SUV.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/zombie_child.png&quot; alt=&quot;&quot;&gt;

&lt;blockquote&gt;&lt;p&gt;It was only a child, and little is different about it now aside from the hungry look in its eyes. You&#x27;d be hard-pressed to not feel like you were killing an actual child by putting it down.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/guilt.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	Killing that little zombie brings Rayon&#x27;s mood down a ton. He can hardly think of anything else.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/magic_missile_tough.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s no time to mope, however. Juking a tough zombie with the cube van, Raymon blasts at it with magic missile until it dies. He&#x27;s slowly improving, maybe in the future magic missile can become a primary weapon.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/misc_repair.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/useful_tools.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	There&#x27;s a ton of useful tools in the boxes and crates stored around the industrial compound. Raymon takes whatever he thinks he can use later; there&#x27;ll be time to sort it out when he gets to safety.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/flames.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;One downside to using tactical fire is that it spreads. It&#x27;s getting hot around there.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/cop_loot.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Hidden in a dark corner was a zombie in police gear. It&#x27;s tough to kill, but Raymon brings it down with a final spear thrust through the chest. It&#x27;s got some decent gear that Raymon can use. That holster could be useful if Raymon ever finds a gun big enough to fit it.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/explored_light.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/explored_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Having cleared this entire industrial compound, Raymon dumps his loot into the trunk of his SUV and hits the road again, heading west.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/irradiation_plant_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a huge irradiation plant tucked into the forest, but Raymon doesn&#x27;t stay long. He does notice a van in really good condition parked just in front, so that he investigates.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/pristine_van.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Sure enough, it&#x27;s in pristine condition. But, as before, it&#x27;s a little too bulky to be his primary vehicle. Maybe in the future he&#x27;ll want more space, so he makes a note of where it is on his map. He does, however, take the gasoline.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/evac_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;A little futher down the road is another evacuation shelter. This one is empty too, it seems nobody found shelter here.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/cause_bear.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt; In one of the bathrooms in the basement Raymon finds a smudged magic scroll. Well, that might be useful later.&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/music.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	Raymon switches on his SUV&#x27;s stereo and finds that it&#x27;s loaded with all kinds of music. His mood improves dramatically as he drives 45 mph down the road blasting some songs with open windows.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/fork_in_road.png&quot; alt=&quot;&quot;&gt;
&lt;p&gt;
	There&#x27;s a fork in the road just past the evacuation shelter. Raymon decides to head north first, to try and get closer to the refugee center. He wishes he had binoculars: it&#x27;d make scouting much easier.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/public_pond.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon takes a breath at a public pond. Just him and the water. And, of course, the corpses of the mutant bullfrogs and zombies he had to kill to get here.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/roadside_gas_station.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Further north, there&#x27;s a roadside gas station, with plenty of gas in the pumps. Raymon tops off his SUV. If only his second gas tank wasn&#x27;t cracked, he could fill all the way.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/crate_drops.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Some crates were airdropped nearby, but there wasn&#x27;t anything spectacular inside, just a MRE and a first aid kit.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/henniker_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;A small town comes into view. Raymon decides to go in and loot, he&#x27;s feeling confident.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/fire_fighting.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Fitting that he&#x27;d kill a firefighter zombie with fire. Fire is just so powerful.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/mp3_player.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;In one of the houses Raymon finds a mp3 player. This will be a huge morale boost; he can listen to his favorite music while killing zombies.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/sports_car.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a beautiful sports car in one of the garages. Raymon siphons out the gas.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/amoebic.png&quot; alt=&quot;&quot;&gt;
&lt;blockquote&gt;&lt;p&gt;A formless slime mold the size of a cow. Crusty bits of cytoplasm fall away as it oozes across the ground.&lt;/p&gt;&lt;/blockquote&gt;

&lt;h2 id=&quot;van&quot;&gt;Van life&lt;/h2&gt;

&lt;p&gt;After looting the light industry compound and now this town, Raymon&#x27;s SUV is full to bursting. The damage quarter of the trunk doesn&#x27;t help either. Raymon decides to drive back to the irradiation plant and steal the pristine van instead. It might be bulky, but in the future it could become a decent mobile home or be useful to carry people or property back and forth.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/transferring_to_van.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon smashes down the chain link fence and drives the van out, then transferrs all the fuel, supplies, and spare car batteries from his SUV.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/full_van.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;It&#x27;s beautiful, and in such good condition it can take a lot of abuse before he&#x27;ll need a new vehicle.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/recharging_station.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/fueling_up.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	To complete his new van, Raymon reads a new manual he found, &lt;em&gt;Under the Hood&lt;/em&gt;, and uses it to install a recharging station in the cab. This will charge his batteries far faster than the little charger he put in the SUV. Then he waves goodbye to his SUV and drives his new van up to the gas station, topping off both tanks. Beautiful.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/feral_human.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;While looting the little town of Henniker more, one of the wild-eyed feral humans charges him, throwing rocks. They hurt! Some magic missiles and a coup-de-gr&amp;#226;ce with his tough spear take down the crazed man.&lt;/p&gt;

&lt;div class=&quot;image-set&quot;&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/flyer3.png&quot; alt=&quot;&quot;&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/survivors_note.png&quot; alt=&quot;&quot;&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/newspaper.png&quot; alt=&quot;&quot;&gt;
&lt;/div&gt;

&lt;p&gt;That survivor&#x27;s note is almost funny. Raymon remembers the rise in cult behavior before the end. Powerful cults, with thousands, even millions of members. There might have been something to them.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/swat_truck.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a SWAT truck stalled in the middle of the street. Zombies swarm it but can&#x27;t get inside. Raymon looks for guns or tools inside, but doesn&#x27;t find anything notable.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/groundhog.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Returning to his van, Raymon finds two dogs chasing a groundhog. That&#x27;s the most normal thing he&#x27;s seen these past days.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/river_blockage.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a river blocking the way west toward the refugee center, so Raymon plans to head north and around instead.&lt;/p&gt;

&lt;h2 id=&quot;The end&quot;&gt;The end&lt;/h2&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/mi-gos.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon passes a pack of migos on the road. They try to pursue him, but his van is too fast.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/swamp-shack.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;In a little corner of swamp there&#x27;s a shack. It&#x27;s empty, but Raymon takes a stepladder and stows it in his van. Never know when that might be useful.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/huge_farm.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a massive farm across the river. Raymon drives slowly along the dirt roads looking for an outlet to get to the refugee center, but there isn&#x27;t one. He&#x27;s surrounded on all sides by forest.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/note2.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;This is definitely not true. Knowledge is power!&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/more_explore.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/more_explore_2.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/end_of_road.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/no_way_out.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon drives all around the area, looking for a way to get to the refugee center by van, but there just isn&#x27;t any. Finally he parks at the edge of the farm and starts looking for a clear path through the forest; maybe he can chop down some trees?&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/owlbear.png&quot; alt=&quot;&quot;&gt;

&lt;blockquote&gt;&lt;p&gt;The horrible owlbear is probably the result of genetic experimentation by some insane wizard.  These creatures inhabit the tangled forest regions of every temperate clime, as well as subterranean labyrinths.  They are ravenous eaters, aggressive hunters, and evil tempered at all times.  They attack prey on sight and will fight to the death.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;A huge owlbear comes barreling out of the forest. Raymon saw it earlier, but he didn&#x27;t look long enough to see if it was chasing him, and now it&#x27;s here. He&#x27;s already beat up. This will be a fight for his life. He readies his spear and his hands glow with magic missile.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/4/dead.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;It&#x27;s not enough. Raymon dies as the owlbear tears through him. He survived only a few days after the end of the world, and never made it to the refugee center. Perhaps someone else will find his van packed with gear, or perhaps it will rot away, unused. Who knows?&lt;/p&gt;

&lt;h2 id=&quot;analysis&quot;&gt;Analysis&lt;/h2&gt;

&lt;p&gt;Owlbears are deadly, but that death was avoidable. I shouldn&#x27;t have gone away from the van with my torso health that low, but I was getting impatient at not being able to reach the refugee center. Once again, one mistake is deadly in Cataclysm: Dark Days Ahead. See you next time!&lt;/p&gt;
&lt;/div&gt;</description>
	<category>games</category><category>letsplay</category><category>cdda</category><category>cdda_raymon</category>
	<link>https://benleskey.com/blog/cdda_raymon_4</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_raymon_4</guid>
	<pubDate>Thu, 02 Feb 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Raymon Ortega #3: Camping out of town</title>
	<description>&lt;div&gt;&lt;ol class=&quot;toc&quot;&gt;&lt;/ol&gt;

&lt;h2 id=&quot;first_night&quot;&gt;First Night&lt;/h2&gt;

&lt;p&gt;
	Raymon needs more supplies. He&#x27;d like a map of the area; extra food is good; tools would be useful. It&#x27;s almost nightfall; he&#x27;s spent the whole day traveling toward the refugee center, but now he&#x27;s stuck just outside a city of unknown dimensions. The zombies can&#x27;t see very far at night, so Raymon plans to raid some of the houses for supplies as soon as nightfall comes. It&#x27;s time to set up camp.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/camp_map.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/camp.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	His camp is barebones, just a tent and a car, but it&#x27;s better than nothing. The tent ensures no zombies (or aliens, for that matter) can see him.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/magical_light.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon learns a new spell, &lt;em&gt;Magical Light&lt;/em&gt;. It&#x27;s not very bright&amp;#8212;even reading by it is slower&amp;#8212;but there&#x27;s no downside to learning it and it might come in handy later.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/black_coffee.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He makes some black coffee with boiled puddle water and his atomic coffee maker.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/reading.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Then Raymon spends the rest of the day reading, improving his mechanics and tailoring knowledge. Now that he has an SUV, he needs to know how to repair it. Making his own gear will be very handy too. He wants a strap to carry his spear, but he doesn&#x27;t quite understand how to sew one together, nor does he have the tools. He reads until nightfall. When there&#x27;s nothing else to do, reading is always a good way to spend time: knowledge is power.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/sneaking_to_houses.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Finally, night falls. Raymon creeps up toward the houses. He can barely see in the dark, but that means that the zombies can&#x27;t either.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/feral_human.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	A feral human breaks wielding a pipe breaks out of the house, mumbling something about intruders. Raymon avoids that house.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/alarm.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	While sneaking into a garage in another house, something trips the alarm system. A beeping noise pierces the night from somewhere, and Raymon knows that zombies will be stumbling toward his location even now.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/zombies_coming_for_me.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Sure enough, here they are. Raymon leaves by the window, letting the zombies break into an empty house.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/brainless.png&quot; alt=&quot;&quot;&gt;

&lt;blockquote&gt;&lt;p&gt;A zombie like any other, except that its facial features and skull have been devastated. It&#x27;s unclear what caused the damage, but between the scraps of flesh you can see that its face and brain are gone, though its ears remain intact.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;
	In another house, Raymon spots a brainless zombie with no eyes. It can&#x27;t see him, but it seems to react to sound, so he stays quiet. He sneaks through the house, looting useful items.
&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/ice_axe_stats.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	One of the most useful items he finds is an ice axe. This tool is a decent weapon, in case he drops his spear, and it can be used to pry open doors, windows, and act as a hammer too. It will be handy for the rest of his adventures. He clips it onto his belt for easy access.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/sewing_basement.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Down in the basement of the house he hits another jackpot. Whoever lived here was a tailor, or a dressmaker, and they had all kinds of fabric and threads and tailor&#x27;s kits and buttons and fasteners. There&#x27;s enough material here to last him for a long time in his own makeshift tailoring. He loots as much as he can carry.
&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/headlamp_stats.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	He replaces his flashlight with a headlamp he finds in one of the dressers. Every bit of space saved in his sling is space for more loot. The headlamp comes with a high-capacity rechargable battery, but he doesn&#x27;t have a way to charge batteries yet.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/newspaper.png&quot; alt=&quot;&quot;&gt;
&lt;p&gt;
	This was the video that Raymon remembered. That was the moment that he knew the end of the world was here, now. That was when he knew that everyone was going to die. And now he was killing them again.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/tough_zombie.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	As Raymon leaves the houses, he&#x27;s jumped by a huge musclar zombie that comes sprinting out of the gloom. Raymon swings his ice axe, chops into the festering bulk, but the zombie lands a few powerful hits on Raymon&#x27;s body. He is bleeding and bruised by the time he finally chops through the zombie&#x27;s head, and his rain coat is torn up.
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/wounded.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/bandaging.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Making his way painfully back to camp, Raymon patches himself up with bandages and antiseptic from the first aid kit. He needs to get more bandages, he&#x27;s nearly out from that fight.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/tailoring.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;But for now, to ignore the pain, Raymon reads more about tailoring and starts to form a plan for making a spear strap. He doesn&#x27;t want to be caught out in the open without a spear again, but he also doesn&#x27;t want to have to carry a spear in his hand all the time.&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/spear_strap_stats.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	After a couple hours of study and sewing, Raymon comes up with something good. He ties it onto his back and straps his battered spear in. This will serve.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/sleep.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/morning.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He falls asleep, and there is morning, the second day.&lt;/p&gt;

&lt;h2 id=&quot;second_day&quot;&gt;Second Day&lt;/h2&gt;

&lt;p&gt;Raymon feels much better after that sleep. He still needs supplies, especially a map, so he decides to hang around this camp a little longer. The first order of business is to craft a new fire-hardened spear to replace his current battered weapon. He shouldn&#x27;t have tried prying apart a fridge with it. He also needs a better backpack. More bandages would be good too.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/crafted_new_spear.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;An hour and half of work and Raymon sharpens and hardens himself a new spear. It goes straight into his spear strap; it feels solid against his back.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/installing_battery_charger.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	After reading a bit about mechanics, Raymon jury rigs a household battery charger into his SUV&#x27;s electrical system. It&#x27;s not very fast, certainly not as efficient as the recharging station he has in the trunk, but it&#x27;s a lot easier to set up and can keep his headlamp juiced up.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/learning_phase_door.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;To spend the rest of the day, Raymon decides to learn some more magic. The next spell he learns is &lt;em&gt;Phase Door&lt;/em&gt;, which teleports him a short distance. This could be very useful as an escape, or even to break in to places.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/phase_door_1.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon starts inside the tent. The world seems to waver around him, and suddenly...&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/phase_door_2.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;...He&#x27;s outside the tent! This will take a little time for him to get used to it, but there&#x27;s no doubt that it will save his life at some point.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/sound_bomb.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The final spell is &lt;em&gt;Sound Bomb&lt;/em&gt;, which creates a loud noise at a location of his choosing. He can&#x27;t choose a location very far, for now, but later, after much practice, when he can make a noise several dozen meters away, it will become a very useful distraction.&lt;/p&gt;

&lt;h2 id=&quot;second_night&quot;&gt;Second Night&lt;/h2&gt;

&lt;p&gt;As night falls, Raymon sneaks up toward the town and starts hitting the houses for loot again.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/loot_smash.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Zombies flood these houses on the edge of town, smashing through windows at Raymon&#x27;s approach. He kites one back to the sand pit.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/spear_battle.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Running to gain distance, then thrusting with his new sturdy spear deals with that zombie; its blood soaks into the sand.&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/trenchcoat_stats.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	Raymon replaces his tattered raincoat with a sturdy trenchcoat. Not only does it provide good protection, it also has huge pockets. Pockets mean everything in the apocalypse.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/aspirin.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;In what will become a common scene, Raymon pops a few aspirin pills to deal with the aching pain of being gnawed on by zombies.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/backpack_in_zombie_basement.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He spots a backpack leaning against a wall in one basement, but the place is filled with strange meat cocoons and zombies. He quickly retreats up the stairs and leaves.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/demon_spiderling.png&quot; alt=&quot;&quot;&gt;

&lt;blockquote&gt;&lt;p&gt;Despite it being the size of a small dog, you can tell this is a very young spider.  Its red color is why you gave it this name; you have never seen this creature before the Cataclysm.  It is quick, and its large fangs drip with venom.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;
	Raymon stumbles across this horrifying thing in the dark, and just as quickly flees into one of the nearby houses, shutting the window after him.
&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/hiking_backpack_stats.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	In a bedroom of the house he fled into, Raymon finds one of the best possible backpacks. This monster backpack can hold nearly 80 liters, and is fairly comfortable too. This will serve as his main pack for the forseeable future.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/flyer.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/newspaper2.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Some papers in a mailbox deliver more record of the cataclysm that&#x27;s destroyed the world. Raymon glances over them in the thin darkness. They&#x27;re just depressing, but he can&#x27;t turn away.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/tight_spot.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Inside one of the houses Raymon gets cornered by two zombies. He didn&#x27;t play this right, and didn&#x27;t run when he should have. Now there&#x27;s nowhere to run. He takes several hits as he runs out of the house, and gets nearly run down before he can reach a drain pipe hanging down from the roof.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/made_it_to_safety.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Bruised and bleeding, Raymon climbs up to the roof of the house as the zombies stumble and slam into the walls below. He stays there for a while, catching his breath, thinking about how close he came to dying.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/climbed_down.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Finally Raymon climbs down, managing not to hurt himself more in the process. He keeps on looting, despite the brush with death. Something&#x27;s made him braver recently, but he doesn&#x27;t know what.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/cockroach_battle.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	In one basement there&#x27;s a pile of human bodies and huge cockroach carcasses. They seem to have fought to the death down here. Raymon picks his way through the refuse to claim his prize.
&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/first_gun_stats.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	Raymon finds a gun! It&#x27;s not a very powerful pistol, but it&#x27;s lightweight and fits in his pocket, and he found plenty of extra ammunation with it too, in the backpack of the dead woman he pulled the gun from. She must have been zombified before fighting the cockroaches, or he would have heard shots. Either way, this is another tool in his arsenal to increase his chances of survival.
&lt;/p&gt;

&lt;div class=&quot;image-set&quot;&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/newspaper3.png&quot; alt=&quot;&quot;&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/newspaper4.png&quot; alt=&quot;&quot;&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/newspaper5.png&quot; alt=&quot;&quot;&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/newspaper6.png&quot; alt=&quot;&quot;&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/newspaper7.png&quot; alt=&quot;&quot;&gt;
&lt;/div&gt;

&lt;p&gt;
	In a basement office, Raymon finds a stack of newspaper articles recounting events just before the end of the world. Raymon remembers the China-blaming fever, but that all seems trite now. The canning article seems the most relevant to his situation. Maybe he&#x27;ll get to the point where canning food makes sense again instead of scavenging whatever is left in people&#x27;s abandoned homes.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/escaping_tough_zombie.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon jumps a fence to escape a huge muscular zombie, but he knows he can&#x27;t outrun it; he can feel his breath giving and his heart pounds in his chest.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/killed_tough_zombie.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He kites the tough zombie a little way and takes stabs with his spear until it collapses, bleeding out. Another victory.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/makeshift_bandage.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Back at camp, makeshift bandages staunch his own bleeding. Then it&#x27;s off to the city again, for another round of night raiding.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/pitch_dark_alarm.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;As Raymon pries open the back door in another house, it triggers their security system. He knows that dozens of zombies are now stumbling toward him in the darkness, and runs.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/zombie_dog.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He&#x27;s almost out of breath when a zombie dog catches up to him. He kills it with his ice axe, but it landed several bites. Raymon doesn&#x27;t think he can raid any more tonight.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/patching_up.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Yeah, he&#x27;s too injured to keep going. He settles down in his camp and patches up, cleaning and bandaging his wounds.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/reading_2.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/churning_through_batteries.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	To spend the time, Raymon reads two books on throwing technique and handgun basics. He figures both&#x27;ll be good investments, especially now that he has a pistol in his pocket. He churns through headlamp batteries, but his battery charger in the SUV keeps the lights on.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/sleeping_melatonin.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Finally, with the help of some melatonin tablets he looted in the night, he falls asleep snuggling his blanket.
&lt;/p&gt;

&lt;h2 id=&quot;third_day&quot;&gt;Third Day&lt;/h2&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/tent_down.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;When he wakes up, Ramon decides it&#x27;s time to move on. He&#x27;s got some good loot here, but the hunting grounds are stretching thin. He needs to find either a way north past the city, or go around and find another way to the refugee center.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/fungus.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	A strange fungus-like tower emerges from the ground near some of the houses; he hadn&#x27;t seen it before because it was so dark.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/blocked.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon&#x27;s way around the city is blocked by forest and more residential areas. He can&#x27;t get through here with his SUV; it&#x27;s time to backtrack again.

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/try_here.png&quot; alt=&quot;&quot;&gt;

&lt;/p&gt;&lt;p&gt;
	He consults his hastily drawn maps and decides the best place to drive cross-country is there, just above the hunting lodge. If there&#x27;s an opening in the forest, he can drive up toward the refugee center until he hits roads again.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/derelict.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	As he drives, he finds a run-down house with some makeshift beds and graffiti littering the walls. There is nothing of value there.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/3/clear_path.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	As Raymon comes round a bend in the forest, he finds his path clear in front of him. The couple of nights spent camping by the city are over. The journey to the refugee center begins again.
&lt;/p&gt;
&lt;/div&gt;</description>
	<category>games</category><category>letsplay</category><category>cdda</category><category>cdda_raymon</category>
	<link>https://benleskey.com/blog/cdda_raymon_3</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_raymon_3</guid>
	<pubDate>Wed, 01 Feb 2023 12:00:00 +0000</pubDate>
</item>
<item>
	<title>Raymon Ortega #2: Battery Heist and a Sweet Chariot</title>
	<description>&lt;div&gt;&lt;ol class=&quot;toc&quot;&gt;&lt;/ol&gt;

&lt;h2 id=&quot;foot&quot;&gt;On foot&lt;/h2&gt;

&lt;p&gt;Last we left Raymon, he had scrounged together some meagre gear and a sturdy spear and was about to hike north west toward the refugee center.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/toward_dump.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Striking out across the field, Raymon headed toward the regional dump near the evac shelter. It wasn&#x27;t far as the crow flies, though not connected by road anywhere nearby.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/saw_kreck.png&quot; alt=&quot;&quot;&gt;
&lt;blockquote&gt;
	&lt;p&gt;This is some form of otherworldly hound. Lean and hungry-looking, its twisted red flesh is stretched tightly across its misshapen, angular frame. Loping grotesquely along, its unusually long neck stretches forward, its skull-like head near the ground as it sniffs out its prey. Its foulness partially veiled by some arcane force, it seems to almost flicker in and out of your perceptions in a fashion that awakens ancient nameless terrors in the back of your mind.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;
	A strange red monster comes into view, hanging just outside the barbed wire fence surrounding the dump. It doesn&#x27;t seem to notice Raymon, but he&#x27;s not taking any chances. Taking chances is how he&#x27;ll die. He goes further north, toward the main entrance.
&lt;/p&gt;

&lt;p&gt;
	&lt;img class=&quot;right&quot; src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/kreck_vs_chipmunk.png&quot; alt=&quot;&quot;&gt;
	As he walks furtively north, looking over his shoulder to make sure the creature doesn&#x27;t chase him, he sees it lunge at a frightened chipmunk that scrambles away from the beast&#x27;s long gaping jaws.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/edge_of_dump.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon spots movement among the dumpsters at the near corner of the dump. A huge fly, so big it might have been a balloon, buzzes lazily over the barbed wire. Behind it are two stumbling figures. One is big and bloated. The other crawls with its forelimbs, its legs mangled beyond belief. They reach for the fly and seem to wave at him across the field. He recoils in horror and moves on toward the entrance.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/solar_car.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	There&#x27;s one of the cutting-edge solar cars parked in front of the dump. Raymon gets excited for a moment&amp;#8212;most of the panels and the cab are in good shape&amp;#8212;but then he sees that the tires are shot. He moves further toward the dump, cautiously. There are huge black rats moving in and out of the mountains of trash, with teeth as big as his hand.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/saw_flatbed.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	When Raymon gets close enough he sees a big flatbed truck in pretty good condition sitting there in the parking lot of the dump. It&#x27;s got all its wheels! If he can get it working, he&#x27;d feel so much safer.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/heading_south.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon walks along the road toward the dump to get at the truck. All the rats put him on edge, high alert.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/middle_of_dump.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Getting closer he can see that the dump is filled with zombies. They shamble among the old appliances and bathtubs and stumble over metal piles and old cars. They start to notice him as he walks up to the truck.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/reached_flatbed.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon gets to the truck door before the zombies reach the other side. He flings it open and pokes his head inside.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/flatbed_stats.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	It&#x27;d run. The truck would run. It&#x27;s got gas. He starts frantically searching for keys anywhere in the truck, maybe in the glove box? Maybe in the console? The zombies get closer, and another massive fly casts a long shadow on the ground and buzzes as loud as if it were right next to his ear.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/flatbed_locked.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	There were no keys in the truck, and he doesn&#x27;t have time to hotwire it. The zombies are almost knocking on the other side of the truck. Raymon jumps out and runs for the fence. The shambling zombies can&#x27;t get around the truck quick enough to catch him, and soon he&#x27;s on the other side of the fence.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/zombies_stuck_in_barbed_wire.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	The zombies get stuck in the barbed wire, cutting their flesh and clothes in their vain attempt to get at him. Eventually they seem to lose interest.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/getting_out_of_there.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon gets out of there and walks north along the road, past a swampy area.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/mosquitos_in_forest.png&quot; alt=&quot;&quot;&gt;
&lt;blockquote&gt;
	&lt;p&gt;
		A mutant mosquito the size of a small dog, buzzing and fluttering erratically.
	&lt;/p&gt;
&lt;/blockquote&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/pond.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Finally a normal sight: fish playing in a pond. Raymon just stands by the pond for a few moments and contemplates what his life has come to. Then he&#x27;s on his way again
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/spotted_scrap_yard.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	To the north, Raymon sees a little scrap yard jutting off the roadway. Maybe there&#x27;s something left for him to scavenge.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/in_scrap_yard.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	There&#x27;s a tow truck in pristine condition sitting in the driveway, and the place looks kept. Raymon goes to the little office building and slowly pushes the door aside.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/human.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	There&#x27;s a man behind the counter in a workmans outfit, sitting with his feet up on a wooden chair, a huge crowbar within arms reach, a rifle holstered on his back. They stare at each other for a few moments of disbelief.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/scrapper_dialogue.png&quot; alt=&quot;&quot;&gt;

&lt;blockquote&gt;
	&lt;p&gt;
		&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/scrapper.png&quot; alt=&quot;Close of up the scrapper NPC&quot; class=&quot;left&quot;&gt;
		&lt;strong&gt;Francisco Amos, scrapper:&lt;/strong&gt; Haven&#x27;t seen another face in quite a while. Not a living one, at least. State your business. Maybe you got some use for some of this scrap metal?
	&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;
	Raymon talks with this guy for a bit. Basically, he was a working at the scrap yard on a solo shift when the cataclysm hit. He decided to just stay here, and now he&#x27;s selling scrap metal to anyone passing by. He fortified his scrap yard. He even offers that Raymon can sleep in the shed out back, where there&#x27;s a little cot, but Raymon has to be on his way.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/scrapper_trades.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	If we wanted, we could trade items with the scrapper for, well, scrap metal of all varieties. This might be useful later, but scrap metal isn&#x27;t important for our journey to the refugee center.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/leaving_scrapper.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;After saying goodbye to the first human he&#x27;s seen since the cataclysm, Raymon continues his journey out into the unknown.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/saw_wasp.png&quot; alt=&quot;&quot;&gt;

&lt;blockquote&gt;
	&lt;p&gt;A huge wasp the size of a large cat with bright yellow markings on her jet-black carapace and a threatening stinger. She flies around erratically, searching for smaller prey.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Raymon stays far away from that, though secretly he thinks he might have a shot with the new magic missile he&#x27;s learned.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/sinkhole_above.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/sinkhole_below.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	There&#x27;s a massive sinkhole opened in the field here, he peeks down and sees some water, but there&#x27;s nothing for him here.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/forest.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Finally, after a long walk, he reaches the edge of a forest. He starts stumbling through the brush and trees, heading north toward where he knows a road will be.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/campground.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	But in the distance, he spots a campground with tents and tables!
&lt;/p&gt;

&lt;h2 id=&quot;campground&quot;&gt;Campground&lt;/h2&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/campground_real.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Yes, it&#x27;s a campground! There&#x27;s a lightweight electric solar car on the far side of the campfire, and an SUV closer to him, parked by the abandoned tents. Both cars look in good shape, and Raymon&#x27;s heart gives a flutter.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/ruined_shrine_in_distance.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	To the west is a strange stone building with snakes swimming and diving in the water surrounding it. Raymon just keeps his distance and stays in the campground.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/SUV_stats.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	The SUV works. One of its gas tanks is leaking, but the other has over seven liters in it. The battery is draining, however, and that means that unless Raymon can get a new battery, this car will be useless.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/driving_suv_first_time.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon backs the SUV out of the campground to the road and puts it in park. He&#x27;ll deal with the battery situation later.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/electric_car_stats.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	The electric car is fully functional, though its solar panels are heavily damaged and one of its batteries has given out. An electric car would be extremely useful because it can just charge from its solar panels without ever needing to scavenge fuel, but this one charges so slowly it might not be practical to wait weeks just to travel a few miles.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/bringing_out_ecar.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon drives this car out to the road too, just in case.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/looting_food.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Then Raymon loots the campground for canned goods and other stuff.&lt;/p&gt;

&lt;p&gt;
	&lt;img class=&quot;right&quot; src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/runner_pack.png&quot; alt=&quot;&quot;&gt;
	&lt;img class=&quot;right&quot; src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/runner_pack_stats_2.png&quot; alt=&quot;&quot;&gt;
	He finds a runner pack in one of the tents. It&#x27;s smaller than his makeshift sling, but he straps it on too. More space to carry stuff is good, and the runner pack could be better long term.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/hauling_tent.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon takes down one of the tents and hauls it toward the cars. It&#x27;s time to make a decision. Does he dump everything in the electric car and drive as far as it can take him, then just wait as it recharges? Or does he go find a battery for the SUV, and just deal with scavenging fuel? Raymon decides on the SUV. It shouldn&#x27;t be to hard to find a working car battery somewhere in an abandoned car, nor gasoline. He doesn&#x27;t want to be stranded with a finicky, lightweight electric car when he could be cruising past zombies in an SUV.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/dropping_all.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He drops all of his looted supplies into the big trunk of the SUV. Now it&#x27;s time to find a battery. The electric car still has a little charge, so Raymon hops in to go scout north and see if there are any abandoned cars.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/driving_north_ecar.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He drives north for a little ways.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/driving_north_facility.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Eventually a huge building looms up in front of him beside the road, high brick walls reaching toward the sky, some kind of research facility if he had to guess. He hears an explosion, and up ahead part of the brick wall collapses.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/driving_north_robot.png&quot; alt=&quot;&quot;&gt;

&lt;blockquote&gt;
	&lt;p&gt;
		This robot looks like a large metal spider, a bit bigger than a person, with its thorax covered in tiny holes. An ominous buzzing emanates from it.
	&lt;/p&gt;
&lt;/blockquote&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/backing_up.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Nope. Raymon shifts into reverse and hits the accelerator.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/backing_up_all_the_way.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He backs up all the way to the campground.&lt;/p&gt;

&lt;h2 id=&quot;heist&quot;&gt;Battery heist&lt;/h2&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/target_old_car.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Time for plan B. He remembers the wrecked car in front of one of those houses near the evac shelter. Maybe it had a battery? He can&#x27;t remember, but he&#x27;ll walk all the way back to check. It&#x27;s not &lt;em&gt;that&lt;/em&gt; far.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/missiling_wasp.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;As Raymon walks, one of the huge cat-size wasps swoops down from nowhere and starts charging him, darting this way and that. There&#x27;s no way he could hit that thing with his spear, so he drops his spear and remembers what he read from the magic pamphlet. &lt;em&gt;Magic missile!&lt;/em&gt; The first missile pierces the wasp&#x27;s chitin, and a few more send it fleeing.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/another_wasp.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Another big wasp comes buzzing at him, but this time he&#x27;s ready. He drops his spear again and raises his hands.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/killed_wasp.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;A few magic missile&#x27;s later, and that wasp is dead. It couldn&#x27;t get away from Raymon, no! He shakes his head. Something&#x27;s wrong with his brain, why is he so aggressive? He doesn&#x27;t know.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/smashed_wasp.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He smashes the wasp to a pulp with his boot, just for attacking him, then walks the rest of the way to the wrecked car.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/no_battery.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	It doesn&#x27;t have a battery. Raymon chuckles coldly. He decides to head north through the forest as he cuts back to the campground, maybe there&#x27;ll be a car with a battery on the road up that way.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/up_through_forest_shadow_snake.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon reaches the road, but spots a strange strange snakelike shadow flying through the air. He heads the other way, toward a golf course.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/golf_course.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	The golf course is almost peaceful, and still looks good too. Raymon walks over the green toward the club house. Is that a person over by the club house, holding a crowbar and talking with someone?
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/feral_human.png&quot; alt=&quot;&quot;&gt;

&lt;blockquote&gt;
	&lt;p&gt;
		Their pupils are dilated and what can be seen of the iris and sclera are bloodshot. This crowbar-wielding maniac still breathes, but the zombies treat them like one of their own.
	&lt;/p&gt;
&lt;/blockquote&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/golf_course_2.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	The presence of these strange people walking among the shambling zombies fills Raymon with a cold dread. He sneaks around the bottom of the golf course, past the club house.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/map_at_golf.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Something about the golf course scared Raymon. He just wants to get out of this place and get to the refugee center. It doesn&#x27;t really matter how. He starts to concoct a plan. That scapper, Francisco Amos, had a tow truck in perfect condition, except it had no front wheels. It wasn&#x27;t going anywhere. What if... What if Raymon stole the trucks battery? He&#x27;d have to make it stealthy, or the scrapper would no doubt pull out his rifle or beat him to death with his crowbar, but if he could just get that battery... The more Raymon thought about it the more he liked the idea. The scrapper would be fine, of that he was sure. It would be easy for a survivor like him to find another battery. Yes, that&#x27;s what Raymon&#x27;d do. He&#x27;d steal the battery from the scrappers tow truck.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/forest_travel.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon walks through the forest toward the scrapyard.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/back_at_scrapper.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He&#x27;s back, and his heart is pounding as he begins his heist.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/closing_curtains.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;First he goes into the office, and when Franciso isn&#x27;t really paying attention, he closes the curtains. They were almost closed anyway, but this way the scapper won&#x27;t be able to see what&#x27;s going on in the driveway.

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/removed_battery.png&quot; alt=&quot;&quot;&gt;

&lt;/p&gt;&lt;p&gt;Then Raymon slips outside and removes the battery. It takes less than a minute, and the scrapper suspects nothing.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/left_behind_spear.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He drags the battery out a ways from the scrap yard, but is forced to leave behind his spear to carry it further. That&#x27;s OK, he&#x27;ll be back.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/slimes.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Walking back to the campground, he sees the field to the north is just covered in the moving blobs of slime, some big, some small, just glooping around the grass aimlessly. He moves on quickly.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/installed_battery.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Boom. The battery is installed, and Raymon has a working SUV.
	&lt;img class=&quot;right&quot; src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/gasoline.png&quot; alt=&quot;&quot;&gt;
	He even has a decent amount of gasoline. But he&#x27;s going to need more to keep this car running, and he doesn&#x27;t think that the pumps are exactly the best place to get gas right now. Raymon needs a hose to siphon gas from other abandoned cars. One of the refrigerators in the houses by the evac shelter should have one, he&#x27;ll just need to smash it up a bit to get to the internals.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/map_going_spear.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/got_spear_again.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	First, though, Raymon drives down to where he left his spear and picks it up again. Even if magic missile is a good weapon, a spear in hand is just... comforting.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/back_at_house.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon arrives back at the house by the evac shelter.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/damaged_spear.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He tries to pry apart the refrigerator, but only manages to damage his spear. Oh well.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/smashed_bench.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He goes outside, smashes a bench, and gets one of the sturdy planks. This will serve.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/caught_breath.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He catches his breath before smashing down the refrigerator&lt;/p&gt;

&lt;p&gt;
	&lt;img class=&quot;right&quot; src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/got_hose.png&quot; alt=&quot;&quot;&gt;
	This rubber hose will serve well for siphoning gas out of people&#x27;s abandoned cars and into his own.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/books.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He takes advantage of having the trunk space in his SUV and loots some of the books he had to leave behind before. Raymon is a bookworm, and there&#x27;ll probably be something useful in these volumes.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/ate.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Back in his car, Raymon downs a bottle of water and four hot dogs. He feels satisfied and ready to take on the world.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/back_beneath_scrapper.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He drives back to the fork in the road beneath the scrapper, but decides to head south west for now instead of north west, to see if there&#x27;s a cleaner way to cut around and avoid the research facility.
&lt;/p&gt;

&lt;h2 id=&quot;road&quot;&gt;On the road again&lt;/h2&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/strange_castle.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	There&#x27;s a huge stone... mountain? castle? beside the road, but Raymon doesn&#x27;t stop to investigate, he just keeps heading south along the road.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/another_house.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Another house comes into view, and Raymon parks in the driveway. There might be some more supplies to scavenge, and now that he has a car he doesn&#x27;t have to leave anything important behind.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/books_in_another_house.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Some books are always good. Raymon snaps these up.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/duster_and_cake.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	A sturdy canvas duster could be useful for wearing or for scraps to make something else. There&#x27;s a platter of cake that still smells good, Raymon takes that too. Whoever used to live here won&#x27;t mind.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/fzombie.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	A flicker of movement to the south makes Raymon peer out the window, where a zombie stands in the forest wearing firefighter gear. Did they die on a call to this house? He couldn&#x27;t know.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/noises.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Suddenly on high alert, Raymon hears whumping noises from the bedroom.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/looted_closet.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He hears more thumping as he loots some nonperishable foods from the pantry closet.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/zombie_in_closet.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Creeping around, he stealthily opens the bedroom door and peeks his head inside. There&#x27;s a zombie in the closet, the former occupant of this house, aimlessly stumbling among their clothes.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/closed_door.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon slams the door shut. No need to fight, right? He heads to the other bedroom door...
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/surprise_zombie.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	...and is met with a zombie in his face, dribbling saliva and black blood.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/escaping.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon runs, dodging chairs and tables to get outside. The zombie stumbles after him, groaning low in its throat.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/roundabout.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon runs around the house to the other side.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/smashing_in.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He smashes in a window and gets into the bedroom from outside. The owners are in no state to protest, they just want his brains, or whatever they&#x27;re after. Raymon didn&#x27;t care.&lt;/p&gt;


&lt;p&gt;
	&lt;img class=&quot;right&quot; src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/hard_leg_guards.png&quot; alt=&quot;&quot;&gt;
	These hard leg guards, found in one of the dressers hastily thrown open, will serve well to protect him. He straps them on, listening intently for any sound of the zombie coming around.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/going_in.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon decides he wants to search the other bedroom too. He&#x27;ll juke the zombie in there the same way he did the first one, by running around the house.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/luring.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He opens the door and lures the zombie toward the other bedroom.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/roundabout_2.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Then he plays the roundabout again. The zombie cuts itself on the shards of glass in the window.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/too_close.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He couldn&#x27;t shake it, and now the zombie is way too close for comfort.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/closed_in.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon runs out of the bedroom and shuts the door. The zombie bangs lazily on the door, and groans, but it doesn&#x27;t know how to use a doorknob anymore.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/escape_via_window.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Jumping the oven, Raymon leaves via window.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/fzombie2.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The firefighter zombie sees him, and is steadily approaching.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/preparing_missile.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon drops his spear, and his hands start to crackle with magic missile.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/too_tough.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;But his magic is too weak, and the firefighter zombie is almost grabbing him. Raymon picks his spear up and sprints to his SUV.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/reversing.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He reverses out of there with the door still open. Running away is a victory. He&#x27;s still alive.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/approaching%20bridge.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon heads south again, toward a bridge across a little river.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/map_from_bridge.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Up on the bridge he gets a look at his surroundings. Doesn&#x27;t seem like much, but he&#x27;ll scout a little further before deciding which route to take to the refugee center.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/rounding_bend.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He tries to go north-west, rounding a bend after the bridge. Maybe there&#x27;ll be another bridge across the river.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/house.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	The road trails off into a driveway. Raymon hops out of his SUV. A piece of newspaper lying on the ground catches his eye.
&lt;/p&gt;

&lt;p&gt;
	&lt;img class=&quot;right&quot; src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/newspaper.png&quot; alt=&quot;&quot;&gt;
	Raymon remembers this news story. Before everything fell apart, there was a big kerfuffle about the police using less-lethal robot turrets. They&#x27;d just watch restricted areas day and night and shoot anyone who came at them. There&#x27;d been a scandal when a kid got shot, but nothing ever came of it. Was that a year ago? Two years? Raymon couldn&#x27;t remember.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/looting_house.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon left the newspaper page in the dust and went into the unlocked house. Just like most the others, nobody was at home. He listened carefully and didn&#x27;t hear any shuffling. He loots the kitchen for useful tools.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/breaking_into_bedroom.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	One of the bedrooms was locked, so Raymon goes around and smashes through a window.
&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/bike_helmet.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	He finds a bike helmet for his trouble, and puts it on, discarding his baseball cap. A helmet might be useful, he figures, if he were to do any fighting.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/going_back_north.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	With that house looted, Raymon made the decision to try his luck on the north road again. He needed to reach the refugee center, and he couldn&#x27;t see any way across the river from down here. So he hopped into his SUV and drove back the way he came.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/return_to_campground.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Past the campground...
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/back_at_facility.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He drove all the way up to the breach in the wall of the research facility. He could see the spidery robot still skittering around the explosion crater.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/hiding_in_car.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Crouching behind the wheel, Raymon slowly eased his SUV past the breach. If the robot couldn&#x27;t see him, it couldn&#x27;t zap him or whatever it was capable of doing. He didn&#x27;t know, and he wasn&#x27;t about to find out.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/past_facility.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He made it past the facility without incident and continued north along the road.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/industry.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	A light industrial complex loomed in front of Raymon&#x27;s car. He considered trying to loot some tools or materials, but as he thought about it a crowd of zombies started smashing out the windows toward him, rage and hate glaring in their dead eyes.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/too_many_zombies.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Way too many zombies to fight. Raymon went around the industrial park instead. &lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/corpses.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Along the road, he found four dead bodies, their belongings scattered around them. He couldn&#x27;t tell what had killed them, but something caught his eye on the road beside one of the bodies.&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/mess_kit.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	This mess kit would be a huge boon for cooking food on the road. He didn&#x27;t even blink as he pulled it out from under a dead man.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/map_at_mine.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/mine.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Further up the road, down a little fork, Raymon came across a mine. There were a bunch of cars parked by the buildings, with just one zombie wandering the parking lot as if it had stepped out of one of the cars and lost its mind.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/spear_battle.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;This zombie was ripe for a spearing. Raymon closed distance and thrust with his spear, piercing the zombie&#x27;s flesh.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/kiting.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He slowly kited the zombie back toward the SUV, running to keep distance and stabbing at it as it bled out.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/dead.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;With a final fierce thrust, the zombie collapsed, twitched, and lay still.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/siphoning.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon siphoned gasoline out of the parked cars into two of his zipper bags that he&#x27;d brought from the first house near the evac shelter. He poured these into his own SUV.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/dangerous_siphoning.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Some of the zombie miners broke through the wire fence just as he siphoned gas out of the last car, but he ran back to his SUV before they could catch him.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/target_before_rumford.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Still heading northwest, he scanned his scrawled map copied from the restaraunt brochure earlier that morning. He&#x27;d drive across a field toward Rumford, and try to get around that way.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/wooden_fort_map.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/wooden_fort.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;A big wooden fort stood stark and squat toward the north. He could see spikes on the battlements. Something told him whoever lived there wasn&#x27;t friendly. Nobody took any shots, but he didn&#x27;t antagonize whoever lived there either.

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/wrecked_military_truck.png&quot; alt=&quot;&quot;&gt;

&lt;/p&gt;&lt;p&gt;There was a pulverized wreck of a military truck on the side of the road as Raymon rounded another bend. No use to him now.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/riot_control.png&quot; alt=&quot;&quot;&gt;

&lt;blockquote&gt;
	&lt;p&gt;These TALON-derived riot control platforms were widely publicized a few years before the Cataclysm as a new semi-autonomous device that could fire less-lethal rounds with far more accuracy than a human, ensuring safer hits against a target&#x27;s limbs. They were quickly adopted by prisons and inner-city police forces, where they demonstrated that &#x27;less lethal&#x27; does not mean &#x27;non-lethal&#x27;. In the days before the Cataclysm, massive stockrooms of these things were put into circulation. On the bright side, although it shoots autonomously, it requires a human operator to relocate, so it&#x27;s not mobile anymore.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;
	Raymon doesn&#x27;t mess with this roadblock. He drives off road a little ways, avoiding the range of the automatic guns.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/mall_map.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/mall.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;There&#x27;s a huge mall on the edge of Rumford. Raymon drives as close as he can, but the zombies are just too thick to venture further.

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/mall_2.png&quot; alt=&quot;&quot;&gt;

&lt;/p&gt;&lt;p&gt;He drives parallel to the horde, heading north.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/quick_siphon.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Just beyond the horde he stops to quickly siphon some gas from a pickup truck, then hops back in and drives away as the zombies start to catch up.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/lots_o_gas.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon&#x27;s SUV is looking pretty good, over a quarter tank of gas just from what he could scavenge. This should be enough to get him to the refugee center, if the roads didn&#x27;t give out.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/hunting_lodge_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon spots a hunting lodge alongside the road, and eases off the accelerator.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/parked_in_hunting_lodge.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;He parks in the hunting lodge, a long building with huge water tanks outside, and starts looting.&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/strange_book.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	This book looks interesting. It&#x27;s not a spellbook, that much he can tell, but it seems to have strange arcane recipies for tools, and it talks of a force from beyond the veil. He&#x27;ll have to study this more later.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/lots_of_books.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	There&#x27;s a lot more books, far more mundane, but not necessarily less useful.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/atomic_coffee.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;

&lt;p&gt;
	Jack. Pot. This atomic coffee maker doesn&#x27;t need batteries, and it can boil water, make coffee, make noodles, anything he needs. This is going straight into his supplies.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/newspaper_2.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Those riots... That&#x27;s when Raymon knew the world was ending. They thought it was China back then. He guessed China didn&#x27;t exist anymore.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/hunting_lodge_basement.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He went down the basements steps and found a little office room with some meaningless files.
&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/8ball.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	There was a Magic 8-Ball hidden in one of the desk drawers, carelessly left open. He took the 8-ball in his hand. &lt;em&gt;Will I survive this?&lt;/em&gt;. He shook the ball.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/ask_8ball.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Sounds good to Raymon.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/secret_room.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;A crack between the bookshelves makes Raymon pull one back, and he finds a secret room. What could be in here?&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/games.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Just some board games. What, did the members of this hunting club just hang around in their secret society playing shogi?
&lt;/p&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/motorcycle_helmet.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	Upstairs he found a motorcycle helmet, sturdier than his bike helmet. He swapped helmets. Better to be prepared for something hard smashing into his head.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/lodge_upstairs&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	The upstairs of the lodge looked comfortable, but there wasn&#x27;t much more useful up there.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/eating_lodge_food.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/lodge_explored.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Raymon enjoyed some food left behind in the lodge, then returned to his car.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/saw_cabin.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	While he&#x27;d been upstairs, he&#x27;d looked out toward the forest and saw a cabin tucked away in the woods. He drove down across the field to the edge of the forest and walked the rest of the way toward that cabin.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/explored_corpse_cabin.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/newspaper_3.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt;
	A gruesome sight met him. The cabin was filled with corpses, and bodies littered the ground outside. He searched briefly for anything useful, but was glad to get out of there. There was a torn newspaper article stuffed hurriedly into one of the bookshelves. Raymon wondered if that had been the start of a lethal argument.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/going_north.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/magic_meadow.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Raymon drove north a little ways, and came across one of the strangest sights he&#x27;d seen so far. Crystals grew out of the ground and glowed, and he could &lt;em&gt;feel&lt;/em&gt; the magic in the air. Something seemed holy about that place, but also dangerous. He looked, but he didn&#x27;t touch.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/prisoner_van.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The road forked, and down the west fork a prisoner bus blocked the road; zombie prisoners spilled out like clowns from a clown car. They shuffled and moaned low in their striped shirts. Raymon didn&#x27;t want to drive around that block, so he tried the other fork, heading north.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/migo_on_other_fork.png&quot; alt=&quot;&quot;&gt;

&lt;blockquote&gt;
	&lt;p&gt;An alien creature of uncertain origin. Its shapeless pink body bears numerous sets of paired appendages of unknown function, and a pair of ribbed, membranous wings which seem to be quite useless. Its odd, vaguely pyramid-shaped head bristles with numerous wavering antennae, and simply gazing upon the unnatural beast fills you with primordial dread.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;
	As usual, Raymon noped out of there. Better to maneuver past a prisoner bus full of zombies than face some kind of alien monstrosity.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/sneaking_past.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He lined up his SUV and hit the gas, zooming past the slow zombies.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/orchard.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	But the road didn&#x27;t go any further past that point, it just curved around into an apple orchard.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/recharging_station.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/recharging_station_stats.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	There was a recharging station sitting on one of the countertops in the barn. This might be useful later, but right now Raymon didn&#x27;t have the skill to even use the thing. He stowed it away in his SUV trunk anyway.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/orchard_map.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;Since there was nowhere else to go, Raymon had to return and try to drive past the alien mi-go creature. He&#x27;d just drive fast, that&#x27;s it. But before that, he had to get past the prisoner zombies again. They were blocking the entire road.&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/luring_zombies.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	He drove up then slowly reversed, luring the bulk of the group toward him.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/sneaking_past_back.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	Then he turned down, accelerated, and shot past them, nearly grazing one on his way out.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/sneaking_past_migo.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	The alien mi-go wasn&#x27;t even much of a problem, though it seemed to have killed at least four people on the road. Raymon didn&#x27;t care; he drove straight over the bodies, confident in the sturdy make of his SUV.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/lab_map.png&quot; alt=&quot;&quot;&gt;
&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/moose_and_lab.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;
	A solid concrete laboratory lay nestled by the side of the road, thick metal doors sealed shut. A moose grazed in the lawn outside. Raymon didn&#x27;t bother stopping, he didn&#x27;t want to know what horrors lay inside there. &lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/lab_blam.png&quot; alt=&quot;&quot; class=&quot;right&quot;&gt; Even where he was on the surface, he could hear a &lt;strong&gt;blam!&lt;/strong&gt; from deep underground, shaking the earth.
&lt;/p&gt;

&lt;img src=&quot;https://benleskey.com/blog/../cdda_images/raymon/2/houses_to_north.png&quot; alt=&quot;&quot;&gt;

&lt;p&gt;The road gave way to an open area, and Raymon saw yards and houses in the distance. Another city, right in his path. This might be a good thing, it was growing dark, and from what he observed these zombies couldn&#x27;t really see int he dark. He needed information about the area, and surely there would be maps in the houses, and maybe some food too so he wouldn&#x27;t have to dip into his stock. He would rest a distance away from the city for a few hours, then when it grew dark he would creep up for a night raid. He settled back into his SUV and picked up a book. Night was coming.&lt;/p&gt;
&lt;/div&gt;</description>
	<category>games</category><category>letsplay</category><category>cdda</category><category>cdda_raymon</category>
	<link>https://benleskey.com/blog/cdda_raymon_2</link>
	<guid isPermaLink="true">https://benleskey.com/blog/cdda_raymon_2</guid>
	<pubDate>Tue, 31 Jan 2023 12:00:00 +0000</pubDate>
</item>_
	</channel>
</rss>
