From 55d1ebd0e4e0d70f417999413e567df34ba982bb Mon Sep 17 00:00:00 2001
From: Kwazygloo <85138054+Kwazygloo@users.noreply.github.com>
Date: Sun, 20 Jun 2021 13:31:15 -0400
Subject: [PATCH] Synthetic Heart and Combat Rib Description Changes
---
src/Augmentation/AugmentationHelpers.jsx | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/Augmentation/AugmentationHelpers.jsx b/src/Augmentation/AugmentationHelpers.jsx
index 22fbb1595..55f0981cc 100644
--- a/src/Augmentation/AugmentationHelpers.jsx
+++ b/src/Augmentation/AugmentationHelpers.jsx
@@ -202,8 +202,8 @@ function initAugmentations() {
const SyntheticHeart = new Augmentation({
name:AugmentationNames.SyntheticHeart, moneyCost:2.875e9, repCost:7.5e5,
- info:"This advanced artificial heart, created from plasteel and graphene, is capable of pumping more blood " +
- "at much higher efficiencies than a normal human heart.
" +
+ info:"This advanced artificial heart, created from plasteel and graphene, is capable of pumping blood " +
+ "more efficiently than an organic heart.
" +
"This augmentation increases the player's agility and strength by 50%.",
agility_mult: 1.5,
strength_mult: 1.5,
@@ -233,8 +233,8 @@ function initAugmentations() {
const CombatRib1 = new Augmentation({
name:AugmentationNames.CombatRib1, repCost:7.5e3, moneyCost:2.375e7,
- info:"The human body's ribs are replaced with artificial ribs that automatically and continuously release cognitive " +
- "and performance-enhancing drugs into the bloodstream, improving the user's abilities in combat.
" +
+ info:"The rib cage is augmented to continuously release boosters into the bloodstream " +
+ "which increase the oxygen-carrying capacity of blood.
" +
"This augmentation increases the player's strength and defense by 10%.",
strength_mult: 1.1,
defense_mult: 1.1,
@@ -248,8 +248,8 @@ function initAugmentations() {
const CombatRib2 = new Augmentation({
name:AugmentationNames.CombatRib2, repCost:1.875e4, moneyCost:6.5e7,
- info:"This is an upgrade to the Combat Rib I augmentation, and is capable of releasing even more potent combat-enhancing " +
- "drugs into the bloodstream.
" +
+ info:"An upgraded version of the 'Combat Rib' augmentation that adds potent stimulants which " +
+ "improve focus and endurance while decreasing reaction time and fatigue.
" +
"This augmentation increases the player's strength and defense by 14%.",
prereqs:[AugmentationNames.CombatRib1],
strength_mult: 1.14,
@@ -264,8 +264,8 @@ function initAugmentations() {
const CombatRib3 = new Augmentation({
name:AugmentationNames.CombatRib3, repCost:3.5e4, moneyCost:1.2e8,
- info:"This is an upgrade to the Combat Rib II augmentation, and is capable of releasing even more potent combat-enhancing " +
- "drugs into the bloodstream.
" +
+ info:"The latest version of the 'Combat Rib' augmentation releases advanced anabolic steroids that " +
+ "improve muscle mass and physical performance while being safe and free of side effects.
" +
"This augmentation increases the player's strength and defense by 18%.",
prereqs:[AugmentationNames.CombatRib2],
strength_mult: 1.18,