diff --git a/game/base-system/characteristics.twee b/game/base-system/characteristics.twee
index 280b3237d9c6975a1097b151ce051d979dcb1965..075d2f5c3974324da1bd40e70a2166af40aff509 100644
--- a/game/base-system/characteristics.twee
+++ b/game/base-system/characteristics.twee
@@ -203,20 +203,6 @@ You have a <<skincolourtext>> <<if $breastsize gte 1>>You have <<breasts>>.<</if
 	<div id="base-characteristics" class="characteristic-box-list">
 		<!--Core skill configurations-->
 		<<silently>>
-			<!--AWARENESS-->
-			<<set _awarenessConfig = { name : "Awareness", icon : "ui/sym_awareness", displayType : "level", currentValue : $awareness, modifier: 100,
-				states : [
-					{ requiredValue: -200, 	level: 7, color: 'green',	description: 'You are innocent.'},
-					{ requiredValue: 1, 	level: 6, color: 'teal',	description: 'You are almost entirely innocent.'},
-					{ requiredValue: 100, 	level: 5, color: 'lblue',	description: 'You have a limited understanding of sexuality.'},
-					{ requiredValue: 200, 	level: 4, color: 'blue',	description: 'You have a normal understanding of sexuality.'},
-					{ requiredValue: 300, 	level: 3, color: 'purple',	description: 'Your knowledge of sexual depravity extends beyond that of most people.'},
-					{ requiredValue: 400, 	level: 2, color: 'pink',	description: 'You have seen things that few are privy to.'},
-					{ requiredValue: 500, 	level: 1, color: 'red',		description: 'You have peered into the depths of depravity.'},
-					{ requiredValue: 1000,	level: 0, color: 'red',		description: 'Your understanding is transcendental.'}
-				]
-			}>>
-
 			<!--PURITY-->
 			<<if $demon gte 6>>
 				<<set _purityIcon='ui/sym_demon_purity'>>
@@ -238,6 +224,19 @@ You have a <<skincolourtext>> <<if $breastsize gte 1>>You have <<breasts>>.<</if
 				]
 			}>>
 
+			<!--BEAUTY-->
+			<<set _beautyConfig = { name : "Beauty", icon : "ui/sym_beauty", displayType : "level", currentValue : $beauty, maxValue: $beautymax, modifier: 100,
+				states : [
+					{ requiredValue: 0, 					level: 0, color: 'red',		description: 'You are plain.'},
+					{ requiredValue:  $beautymax / 7, 		level: 1, color: 'pink',	description: 'You are cute.'},
+					{ requiredValue: ($beautymax / 7) * 2, 	level: 2, color: 'purple',	description: 'You are pretty.'},
+					{ requiredValue: ($beautymax / 7) * 3, 	level: 3, color: 'blue',	description: 'You are charming.'},
+					{ requiredValue: ($beautymax / 7) * 4, 	level: 4, color: 'lblue',	description: 'You are beautiful.'},
+					{ requiredValue: ($beautymax / 7) * 5, 	level: 5, color: 'teal',	description: 'You are ravishing.'},
+					{ requiredValue: ($beautymax / 7) * 6, 	level: 6, color: 'green',	description: 'Your beauty is divine.'}
+				]
+			}>>
+
 			<!--PHYSIQUE-->
 			<<set _physiqueConfig = { name : "Physique", icon : "ui/sym_physique", displayType : "level", currentValue : $physique, maxValue: $physiquesize, modifier: 100,
 				states : [
@@ -282,16 +281,17 @@ You have a <<skincolourtext>> <<if $breastsize gte 1>>You have <<breasts>>.<</if
 				<<set _willpowerConfig.modifier to Math.floor(_willpowerConfig.modifier * 0.9)>>
 			<</if>>
 
-			<!--BEAUTY-->
-			<<set _beautyConfig = { name : "Beauty", icon : "ui/sym_beauty", displayType : "level", currentValue : $beauty, maxValue: $beautymax, modifier: 100,
+			<!--AWARENESS-->
+			<<set _awarenessConfig = { name : "Awareness", icon : "ui/sym_awareness", displayType : "level", currentValue : $awareness, modifier: 100,
 				states : [
-					{ requiredValue: 0, 					level: 0, color: 'red',		description: 'You are plain.'},
-					{ requiredValue:  $beautymax / 7, 		level: 1, color: 'pink',	description: 'You are cute.'},
-					{ requiredValue: ($beautymax / 7) * 2, 	level: 2, color: 'purple',	description: 'You are pretty.'},
-					{ requiredValue: ($beautymax / 7) * 3, 	level: 3, color: 'blue',	description: 'You are charming.'},
-					{ requiredValue: ($beautymax / 7) * 4, 	level: 4, color: 'lblue',	description: 'You are beautiful.'},
-					{ requiredValue: ($beautymax / 7) * 5, 	level: 5, color: 'teal',	description: 'You are ravishing.'},
-					{ requiredValue: ($beautymax / 7) * 6, 	level: 6, color: 'green',	description: 'Your beauty is divine.'}
+					{ requiredValue: -200, 	level: 0, color: 'green',	description: 'You are innocent.'},
+					{ requiredValue: 1, 	level: 1, color: 'teal',	description: 'You are almost entirely innocent.'},
+					{ requiredValue: 100, 	level: 2, color: 'lblue',	description: 'You have a limited understanding of sexuality.'},
+					{ requiredValue: 200, 	level: 3, color: 'blue',	description: 'You have a normal understanding of sexuality.'},
+					{ requiredValue: 300, 	level: 4, color: 'purple',	description: 'Your knowledge of sexual depravity extends beyond that of most people.'},
+					{ requiredValue: 400, 	level: 5, color: 'pink',	description: 'You have seen things that few are privy to.'},
+					{ requiredValue: 500, 	level: 6, color: 'red',		description: 'You have peered into the depths of depravity.'},
+					{ requiredValue: 1000,	level: 7, color: 'red',		description: 'Your understanding is transcendental.'}
 				]
 			}>>
 
@@ -335,11 +335,11 @@ You have a <<skincolourtext>> <<if $breastsize gte 1>>You have <<breasts>>.<</if
 			}>>
 		<</silently>>
 
-		<<characteristic-box _awarenessConfig>>
 		<<characteristic-box _purityConfig>>
+		<<characteristic-box _beautyConfig>>
 		<<characteristic-box _physiqueConfig>>
 		<<characteristic-box _willpowerConfig>>
-		<<characteristic-box _beautyConfig>>
+		<<characteristic-box _awarenessConfig>>
 		<<characteristic-box _promiscuityConfig>>
 		<<characteristic-box _exhibitionismConfig>>
 		<<characteristic-box _deviancyConfig>>
diff --git a/game/base-system/cheats.twee b/game/base-system/cheats.twee
index 7421086eb3b859880768cd91014fce31cacc572b..399ffc7a19d0ade9156f30dbd2559cb9718af86b 100644
--- a/game/base-system/cheats.twee
+++ b/game/base-system/cheats.twee
@@ -425,15 +425,6 @@ Hallucinogens: <span id="statshallucinogen"><<print Math.trunc($hallucinogen)>><
 
 <u>Characteristics</u>
 <br>
-<<link "<<<">><<set $awareness -= 1000>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>> |
-<<link "<<">><<set $awareness -= 100>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>> |
-<<link "<">><<set $awareness -= 10>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>> |
-Awareness: <span id="statsawareness"><<print Math.trunc($awareness)>></span>
-| <<link ">">><<set $awareness += 10>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>>
-| <<link ">>">><<set $awareness += 100>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>>
-| <<link ">>>">><<set $awareness += 1000>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>>
-<br>
-
 <<link "<<<">><<set $purity -= 1000>><<clamp>><<replace "#statspurity">><<print Math.trunc($purity)>><</replace>> <<updatesidebarimg>><</link>> |
 <<link "<<">><<set $purity -= 100>><<clamp>><<replace "#statspurity">><<print Math.trunc($purity)>><</replace>> <<updatesidebarimg>><</link>> |
 <<link "<">><<set $purity -= 10>><<clamp>><<replace "#statspurity">><<print Math.trunc($purity)>><</replace>> <<updatesidebarimg>><</link>> |
@@ -443,6 +434,15 @@ Purity: <span id="statspurity"><<print Math.trunc($purity)>></span>
 | <<link ">>>">><<set $purity += 1000>><<clamp>><<replace "#statspurity">><<print Math.trunc($purity)>><</replace>> <<updatesidebarimg>><</link>>
 <br>
 
+<<link "<<<">><<set $beauty -= 5000>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>> |
+<<link "<<">><<set $beauty -= 500>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>> |
+<<link "<">><<set $beauty -= 50>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>> |
+Beauty: <span id="statsbeauty"><<print Math.trunc($beauty)>></span>
+ | <<link ">">><<set $beauty += 50>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>>
+ | <<link ">>">><<set $beauty += 500>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>>
+ | <<link ">>>">><<set $beauty += 5000>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>>
+<br>
+
 <<link "<<<">><<set $physique -= 5000>><<clamp>><<replace "#statsphysique">><<print Math.trunc($physique)>><</replace>> <<updatesidebarimg>><</link>> |
 <<link "<<">><<set $physique -= 500>><<clamp>><<replace "#statsphysique">><<print Math.trunc($physique)>><</replace>> <<updatesidebarimg>><</link>> |
 <<link "<">><<set $physique -= 50>><<clamp>><<replace "#statsphysique">><<print Math.trunc($physique)>><</replace>> <<updatesidebarimg>><</link>> |
@@ -461,13 +461,13 @@ Willpower: <span id="statswillpower"><<print Math.trunc($willpower)>></span>
  | <<link ">>>">><<set $willpower += 1000>><<clamp>><<replace "#statswillpower">><<print Math.trunc($willpower)>><</replace>> <<updatesidebarimg>><</link>>
 <br>
 
-<<link "<<<">><<set $beauty -= 5000>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>> |
-<<link "<<">><<set $beauty -= 500>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>> |
-<<link "<">><<set $beauty -= 50>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>> |
-Beauty: <span id="statsbeauty"><<print Math.trunc($beauty)>></span>
- | <<link ">">><<set $beauty += 50>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>>
- | <<link ">>">><<set $beauty += 500>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>>
- | <<link ">>>">><<set $beauty += 5000>><<clamp>><<replace "#statsbeauty">><<print Math.trunc($beauty)>><</replace>> <<updatesidebarimg>><</link>>
+<<link "<<<">><<set $awareness -= 1000>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>> |
+<<link "<<">><<set $awareness -= 100>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>> |
+<<link "<">><<set $awareness -= 10>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>> |
+Awareness: <span id="statsawareness"><<print Math.trunc($awareness)>></span>
+| <<link ">">><<set $awareness += 10>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>>
+| <<link ">>">><<set $awareness += 100>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>>
+| <<link ">>>">><<set $awareness += 1000>><<clamp>><<replace "#statsawareness">><<print Math.trunc($awareness)>><</replace>> <<updatesidebarimg>><</link>>
 <br>
 
 <<link "<<<">><<set $promiscuity -= 100>><<clamp>><<replace "#statspromiscuity">><<print Math.trunc($promiscuity)>><</replace>> <<updatesidebarimg>><</link>> |
diff --git a/game/base-system/statistics.twee b/game/base-system/statistics.twee
index 2a784c58f216b80672c187b494254514c1bc5893..59d8c775e513f500cc54c2831cc8c84a9ec787cc 100644
--- a/game/base-system/statistics.twee
+++ b/game/base-system/statistics.twee
@@ -324,15 +324,15 @@ __Save Game Details__
 
 	__Characteristics__
 	<br>
-	Awareness: <<print Math.trunc($awareness)>>
-	<br>
 	Purity: <<print Math.trunc($purity)>>
 	<br>
+	Beauty: <<print Math.trunc($beauty)>>
+	<br>
 	Physique: <<print Math.trunc($physique)>>
 	<br>
 	Willpower: <<print Math.trunc($willpower)>>
 	<br>
-	Beauty: <<print Math.trunc($beauty)>>
+	Awareness: <<print Math.trunc($awareness)>>
 	<br>
 	Promiscuity: <<print Math.trunc($promiscuity)>>
 	<br>