Difference between revisions of "Cassandra Classic"

From RimWorld Wiki
Jump to navigation Jump to search
m (Fixed broken image.)
(→‎Code specifics: Added example of on-off window)
 
(39 intermediate revisions by 19 users not shown)
Line 1: Line 1:
{{infobox main|ai|
+
{| align=center
|name = Cassandra Classic
+
| {{AI_Storytellers_Nav}}
|image = Cassandra.png|250px|Cassandra Classic
+
|}
|info = "The essence of good storytelling is the perfect progression of intensifying struggle." - Cassandra Classic, RimWorld Primary AI.
+
{{Infobox main|ai
|type = AI Storytellers{{!}}AI Storytellers
+
| name = Cassandra Classic
 +
| image = Cassandra.png
 +
| description = Cassandra creates story events on a steadily-increasing curve of challenge and tension.
 +
| type = AI Storytellers
 
}}
 
}}
  
<div class="pull-left text-center" style="max-width:500px; margin-right:10px;">
+
Cassandra Classic is the default storyteller. In the beginning, Cassandra will always send a single [[Events#Mad animal|mad animal]], followed by a single [[raider]]. The single raider will appear on Day 5 hour 15 unless a different minor event appears at that exact time. In that case, the single raider will appear the following day. Challenges remain consistent, ramping up in difficulty as you progress, but with breaks every 1-2 raids.
<div class="mpb padding-tb br10tl br10tr br10bl br10br mpth2">
 
<span class="quote_lr">“</span><span style="font-size: 88%;">''The essence of good storytelling is the perfect progression of intensifying struggle.''</span><span class="quote_lr">”</span>
 
<div class="mpbt mpbb ai_bg">[[File:Cassandra.png|400px|Cassandra]]</div>
 
<span style="font-size: 88%;">Cassandra Classic, RimWorld Primary AI.</span>
 
</div></div>
 
  
<includeonly>
+
===Analysis===
''Main Article: [[Cassandra Classic]]
+
Many players find Cassandra to be more difficult than Randy, since her raids are consistent and more frequent (on average). While Randy is often quiet for months or even years at a time, Cassandra is forced to send major threats on a semi-regular basis. At the same time, players can take advantage of her hardcoded breaks. When playing with Randy, a raid can happen at any time, so players can never be 100% secure.  
</includeonly>
 
<onlyinclude>
 
{{quote|"Cassandra creates story events on a steadily-increasing curve of challenge and tension."|In-game description}}
 
  
Cassandra Classic is your go-to AI for a standard RimWorld experience. She will give you a fair game experience that begins with small challenges that amp up over time to intense events that can only be survived by smart planning and perhaps a little luck.
+
In addition,  Randy ''could'' send multiple 1.5x size raids back-to-back, potentially creating situations that are harder than what Cassandra can possibly dish out.
</onlyinclude>
 
  
{{clear}}
+
== Code specifics ==
==Code Specifics==  
+
{{Stub|section=1|reason=Add table of, say, the first 10 or 20 phases with dates to serve as reference and worked example for on/of phases}}  
{{v|{{:Version}}}}
+
Major Threats
ID: Storyteller_ClassicNormal
+
 
desiredPopulationMin = 3
+
Cassandra's cycle begins on day 11. Cassandra begins in her 4.6 day "On" phase. During the "On" phase, there is a 50-50 chance either 1 or 2 major threats will be sent. There will be at least 1.9 days between major threats. Cassandra alternates between 4.6 day "On" phases and 6 day "Off" phases. The dates of these phases are always the same. Cassandra always begins the first "On" phase on day 11 and the first "Off" phase begins on day 15.6. Rimworld days begin at hour 6. Day 15.6 is on day 15 hour 20.
desiredPopulationMax = 10
+
 
  desiredPopulationCritical = 15
+
Cassandra averages about 8.5 major threats sent per Rimworld year.
  challengeScale = .85
+
 
  threatCycleLength = 11
+
These On and Off cycles are the same after saving and reloading the game, on multiple map tiles, and when changing storytellers.
  minIntervalBigThreats = 60000
+
 
 +
{| class="wikitable"
 +
|-
 +
!On Cycle Start || On Cycle End
 +
|-
 +
| style="text-align:right" | 11 || style="text-align:right" | 15.6
 +
|-
 +
| style="text-align:right" | 21.6 || style="text-align:right" | 26.2
 +
|-
 +
| style="text-align:right" | 32.2 || style="text-align:right" | 36.8
 +
|-
 +
| style="text-align:right" | 42.8 || style="text-align:right" | 47.4
 +
|-
 +
| style="text-align:right" | 53.4 || style="text-align:right" | 58
 +
|-
 +
| style="text-align:right" | Previous +10.6 || style="text-align:right" | Previous +10.6
 +
|}
 +
 
 +
  <minDaysPassed>11.0</minDaysPassed>
 +
<onDays>4.6</onDays>
 +
<offDays>6.0</offDays>
 +
  <minSpacingDays>1.9</minSpacingDays>
 +
  <numIncidentsRange>1~2</numIncidentsRange>
 +
 
 +
Misc. Events
 +
 
 +
  <mtbDays>4.8</mtbDays>
  
 
{{nav|ai}}
 
{{nav|ai}}
 
[[Category:AI]]
 
[[Category:AI]]

Latest revision as of 18:46, 27 December 2023

Basics Menus Game Creation Gameplay Pawns Plants Resources Gear Mods
Game Creation Scenario system AI Storytellers World Generation Biomes
AI Storytellers Cassandra Classic Phoebe Chillax Randy Random

Cassandra Classic

Cassandra Classic

Cassandra creates story events on a steadily-increasing curve of challenge and tension.

Base Stats

Type
AI Storytellers

Cassandra Classic is the default storyteller. In the beginning, Cassandra will always send a single mad animal, followed by a single raider. The single raider will appear on Day 5 hour 15 unless a different minor event appears at that exact time. In that case, the single raider will appear the following day. Challenges remain consistent, ramping up in difficulty as you progress, but with breaks every 1-2 raids.

Analysis[edit]

Many players find Cassandra to be more difficult than Randy, since her raids are consistent and more frequent (on average). While Randy is often quiet for months or even years at a time, Cassandra is forced to send major threats on a semi-regular basis. At the same time, players can take advantage of her hardcoded breaks. When playing with Randy, a raid can happen at any time, so players can never be 100% secure.

In addition, Randy could send multiple 1.5x size raids back-to-back, potentially creating situations that are harder than what Cassandra can possibly dish out.

Code specifics[edit]

Major Threats

Cassandra's cycle begins on day 11. Cassandra begins in her 4.6 day "On" phase. During the "On" phase, there is a 50-50 chance either 1 or 2 major threats will be sent. There will be at least 1.9 days between major threats. Cassandra alternates between 4.6 day "On" phases and 6 day "Off" phases. The dates of these phases are always the same. Cassandra always begins the first "On" phase on day 11 and the first "Off" phase begins on day 15.6. Rimworld days begin at hour 6. Day 15.6 is on day 15 hour 20.

Cassandra averages about 8.5 major threats sent per Rimworld year.

These On and Off cycles are the same after saving and reloading the game, on multiple map tiles, and when changing storytellers.

On Cycle Start On Cycle End
11 15.6
21.6 26.2
32.2 36.8
42.8 47.4
53.4 58
Previous +10.6 Previous +10.6
<minDaysPassed>11.0</minDaysPassed>
<onDays>4.6</onDays>
<offDays>6.0</offDays>
<minSpacingDays>1.9</minSpacingDays>
<numIncidentsRange>1~2</numIncidentsRange>

Misc. Events

<mtbDays>4.8</mtbDays>