From f13f395db78bfa44bf36f6afe8715628e00d70fb Mon Sep 17 00:00:00 2001 From: Enzo-Leon Date: Mon, 2 Oct 2023 11:40:19 -0700 Subject: [PATCH] Altevian Adjustments - Descriptions & Small Tweaks --- code/game/objects/items/weapons/melee/energy_vr.dm | 4 ++-- .../game/objects/items/weapons/tools/transforming.dm | 4 ++-- code/game/objects/structures/props/altevian.dm | 8 ++++---- .../preference_setup/loadout/loadout_uniform_vr.dm | 4 ++-- .../preference_setup/loadout/loadout_xeno_vr.dm | 4 ++-- code/modules/client/preferences_factions.dm | 5 ++++- code/modules/clothing/spacesuits/void/event_vr.dm | 6 +++--- code/modules/clothing/suits/jobs.dm | 2 +- code/modules/clothing/suits/miscellaneous_vr.dm | 4 ++-- .../clothing/under/accessories/altevian_vr.dm | 8 ++++---- code/modules/clothing/under/altevian_vr.dm | 6 +++--- code/modules/food/food/snacks_vr.dm | 12 ++++++------ .../subtypes/humanoid/mercs/mercs_altevian.dm | 12 ++++++------ code/modules/power/port_gen_vr.dm | 10 +++++----- code/modules/projectiles/guns/energy/altevian_vr.dm | 12 ++++++------ .../projectiles/guns/projectile/altevian_vr.dm | 2 +- 16 files changed, 53 insertions(+), 50 deletions(-) diff --git a/code/game/objects/items/weapons/melee/energy_vr.dm b/code/game/objects/items/weapons/melee/energy_vr.dm index 62f3201619..063c62f3e9 100644 --- a/code/game/objects/items/weapons/melee/energy_vr.dm +++ b/code/game/objects/items/weapons/melee/energy_vr.dm @@ -9,7 +9,7 @@ /obj/item/weapon/melee/energy/sword/altevian name = "plasma blade cutter" - desc = "A device used as both defense and operational purposes to cut through most metals. This is usually seen on engineers from the altevian hegemony when working salvaging derelicts." + desc = "A device that's seen use as both a defense, and standard cutter to melt through most metals. It's normally seen on engineers from the Altevian Hegemony when salvaging derelicts." icon_state = "altevian-cutter" item_state = "altevian-cutter" icon = 'icons/obj/weapons_vr.dmi' @@ -22,4 +22,4 @@ if(active) icon_state = "[initial(icon_state)]_active" else - icon_state = initial(icon_state) \ No newline at end of file + icon_state = initial(icon_state) diff --git a/code/game/objects/items/weapons/tools/transforming.dm b/code/game/objects/items/weapons/tools/transforming.dm index 0cd4c2c42c..41cf89a9c3 100644 --- a/code/game/objects/items/weapons/tools/transforming.dm +++ b/code/game/objects/items/weapons/tools/transforming.dm @@ -107,7 +107,7 @@ /obj/item/weapon/tool/transforming/altevian name = "Hull Systems Omni-Tool" - desc = "A big and bulky tool, used by altevians for exterior operations. Can take shape of any regular tool, scaled up to a comically large size." + desc = "A big and bulky tool, used by Altevians for engineering duties. It's able to do the job of any regular tool while scaled up to a comically large size. It seems nanites are in play to help with adjusting the tip and handling some of the heavy lifting when in use." icon = 'icons/obj/weapons_vr.dmi' icon_state = "altevian-wrench" item_icons = list( @@ -179,4 +179,4 @@ to_chat(user, "You reconfigure [src] into welding mode.") /obj/item/weapon/weldingtool/dummy/altevian - toolspeed = 0.25 \ No newline at end of file + toolspeed = 0.25 diff --git a/code/game/objects/structures/props/altevian.dm b/code/game/objects/structures/props/altevian.dm index 1bee379e7d..034615d4de 100644 --- a/code/game/objects/structures/props/altevian.dm +++ b/code/game/objects/structures/props/altevian.dm @@ -1,7 +1,7 @@ /obj/structure/prop/altevian_generator_wrecked - name = "Converted High Energy Exchange Supplier Extractor" - desc = "A take on the classic PACMAN reactors that are seen throughout the galaxy. The altevians have ripped apart the tech and seemed to of found a way to maximize the fuel usage one would see with this kind of process. \ - However, it is a lot bulkier and nearly impossible to break apart, but still can be moved if need be with special tools. This one appears to be totally wrecked though." + name = "Phoronic Conversion System" + desc = "A reactor system similar to the PACMAN generators seen throughout the stars. This one is a specific model created by the altevians. It seems this reactor has a way to maximize the fuel usage one would see with this kind of process. \ + However, due to its construction and size it is nearly impossible to break apart. It still can be moved if need be with special tools. This one appears to be totally wrecked though." icon = 'icons/obj/props/decor64x64.dmi' icon_state = "alteviangenwrecked" bound_width = 64 @@ -33,4 +33,4 @@ icon_state = "altevian_jump_drive_wrecked" desc = "A drive created by the Altevian Hegemony that focuses heavily on using Bluespace and other tactics to achieve a stable traversal between the stars. \ This drive is commonly seen on their medium sized craft to help with logistical operations. This one appears to be totally wrecked." - has_misc_overlay = FALSE \ No newline at end of file + has_misc_overlay = FALSE diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 5428bc11a4..7c41401bcd 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -143,7 +143,7 @@ Talon jumpsuit //Altevian Uniforms /datum/gear/uniform/altevian - description = "An extremely comfortable set of clothing that's made to help people handle their day to day work around the fleets with little to no discomfort." + description = "A comfortable set of clothing for people to handle their day to day work around the fleets with little to no discomfort." display_name = "altevian uniform selection" /datum/gear/uniform/altevian/New() @@ -240,4 +240,4 @@ Talon jumpsuit /datum/gear/uniform/cswoopdress/New() ..() - gear_tweaks += gear_tweak_free_color_choice \ No newline at end of file + gear_tweaks += gear_tweak_free_color_choice diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm index 489f4e857a..4f3cbee417 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm @@ -92,7 +92,7 @@ sort_category = "Xenowear" /datum/gear/uniform/altevian_outfit - description = "A uniform commonly seen from altevians during their work. The material on this uniform seems to be made of durable thread that can handle the stress of most matters of labor." + description = "A uniform commonly seen worn by altevians. The material on this uniform is made of a durable thread that can handle the stress of most forms of labor." display_name = "altevian duty jumpsuit selection (Altevian)" whitelisted = SPECIES_ALTEVIAN sort_category = "Xenowear" @@ -105,7 +105,7 @@ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(pants)) /datum/gear/accessory/altevian_aquila - description = "An emblem commonly seen worn by the altevians for their work operations." + description = "An emblem found across all altevian vessels. The unique metals and jewels denote ranks for them back home. Otherwise, it's just a pretty rat skull emblem with a set of crystals for their eyes and fangs." display_name = "royal altevian navy emblem selection" whitelisted = SPECIES_ALTEVIAN sort_category = "Xenowear" diff --git a/code/modules/client/preferences_factions.dm b/code/modules/client/preferences_factions.dm index f0f357132f..8eb411d1a2 100644 --- a/code/modules/client/preferences_factions.dm +++ b/code/modules/client/preferences_factions.dm @@ -62,7 +62,10 @@ var/global/list/home_system_choices = list( "Abundance in All Things Serene, Beta-Carnelium Ventrum", "Jorhul, Barkalis", "Shelf Flotilla", - "Ue-Orsi Flotilla" + "Ue-Orsi Flotilla", + "AH-CV Prosperity", + "AH-CV Migrant", + "Altevian Colony Ship" ) var/global/list/faction_choices = list( diff --git a/code/modules/clothing/spacesuits/void/event_vr.dm b/code/modules/clothing/spacesuits/void/event_vr.dm index f543aa48c6..3edd3a83f0 100644 --- a/code/modules/clothing/spacesuits/void/event_vr.dm +++ b/code/modules/clothing/spacesuits/void/event_vr.dm @@ -234,7 +234,7 @@ /obj/item/clothing/suit/space/void/altevian_heartbreaker name = "\improper heartbreaker voidsuit" - desc = "The altevians' newest iteration of their armored suits. This one is tailored for zero-g environments, and while it can function in an area with gravity, it'll put a strain on even the most athletic of individuals." + desc = "The altevians' newest iteration of their armored suits. This one is tailored for zero-g environments, and while it can still be worn in an area with gravity, it'll put a strain on even the most athletic of individuals." icon = 'icons/inventory/suit/item_vr_altevian.dmi' default_worn_icon = 'icons/inventory/suit/mob_vr_altevian.dmi' @@ -248,7 +248,7 @@ /obj/item/clothing/head/helmet/space/void/altevian_heartbreaker name = "\improper heartbreaker helmet" - desc = "The altevians' newest iteration of their armored suits. This one is tailored for zero-g environments, and while it can function in an area with gravity, it'll put a strain on even the most athletic of individuals." + desc = "The altevians' newest iteration of their armored suits. This one is tailored for zero-g environments, and while it can still be worn in an area with gravity, it'll put a strain on even the most athletic of individuals." icon = 'icons/inventory/head/item_vr_altevian.dmi' default_worn_icon = 'icons/inventory/head/mob_vr_altevian.dmi' @@ -286,4 +286,4 @@ armor = list("melee" = 50, "bullet" = 15, "laser" = 15, "energy" = 25, "bomb" = 45, "bio" = 100, "rad" = 80) sprite_sheets = ALL_VR_SPRITE_SHEETS_HEAD_MOB - sprite_sheets_obj = ALL_VR_SPRITE_SHEETS_HEAD_ITEM \ No newline at end of file + sprite_sheets_obj = ALL_VR_SPRITE_SHEETS_HEAD_ITEM diff --git a/code/modules/clothing/suits/jobs.dm b/code/modules/clothing/suits/jobs.dm index 1341af1b69..bc96a3847b 100644 --- a/code/modules/clothing/suits/jobs.dm +++ b/code/modules/clothing/suits/jobs.dm @@ -21,7 +21,7 @@ /obj/item/clothing/suit/storage/apron/altevian name = "Multi-purpose Crafters' Pride" - desc = "An apron designed by the space faring species that can hold an array of tools and other trinkets. It's made with a high-quality material." + desc = "An apron designed by rodent-like spacers who take pride in their work. It's made with high-quality material." icon_state = "apron_altevian" item_state_slots = list(slot_r_hand_str = null, slot_l_hand_str = null) diff --git a/code/modules/clothing/suits/miscellaneous_vr.dm b/code/modules/clothing/suits/miscellaneous_vr.dm index 2a979f41d9..49c12c8dbd 100644 --- a/code/modules/clothing/suits/miscellaneous_vr.dm +++ b/code/modules/clothing/suits/miscellaneous_vr.dm @@ -151,7 +151,7 @@ // Altevian admiralty stuff /obj/item/clothing/suit/captunic/capjacket/altevian_admiral // Subtype of capjacket because A) it makes sense and B) conviniently matching stats name = "altevian officer's suit" - desc = "Formal attire worn by officers and bridge crew from the Altevian Hegemony. The material is made of high quality silk and provides maximum comfort and breathing room for those that are working double shifts all the time." + desc = "A formal jacket worn by the bridge and command crew from the Altevian Hegemony. The material is of high quality silk, and provides maximum comfort and breathing room for those that are working for hours on end all the time." icon_state = "altevian-admiral" species_restricted = list(SPECIES_ALTEVIAN) @@ -174,4 +174,4 @@ /obj/item/clothing/suit/captunic/capjacket/altevian_admiral/yellow name = "yellow altevian officer's suit" - icon_state = "altevian-admiral-yellow" \ No newline at end of file + icon_state = "altevian-admiral-yellow" diff --git a/code/modules/clothing/under/accessories/altevian_vr.dm b/code/modules/clothing/under/accessories/altevian_vr.dm index b75757b94a..584117d92b 100644 --- a/code/modules/clothing/under/accessories/altevian_vr.dm +++ b/code/modules/clothing/under/accessories/altevian_vr.dm @@ -1,6 +1,6 @@ /obj/item/clothing/accessory/jacket/altevian name = "Altevian Hegemony Civilian Jacket" - desc = "A form fitting jacket that looks more for fashion than for work with it leaving ones mid-riff exposed to the outside elements, but when looking so good it isn't really ones worry by that point! " + desc = "A form fitting half-jacket that leaves ones body exposed to the elements. This attire is great for those summer days, or if you're someone that runs a high internal temperature." icon = 'icons/inventory/accessory/item_vr.dmi' icon_override = 'icons/inventory/accessory/mob_vr.dmi' icon_state = "altevian-jacket-civ" @@ -46,7 +46,7 @@ /obj/item/clothing/accessory/scarf/altevian name = "Blue Comfortable Scarf" - desc = "A scarf made of synthetic material that would be common among a people who don't really have the leisure of organic crops for luxury goods. They seemed to of refined this process though and one wouldn't be able to tell the difference between it and ones made normally." + desc = "A soft silk like scarf made of synthetic material. It's soft to the touch and feels like actual silk." icon = 'icons/inventory/accessory/item_vr.dmi' icon_override = 'icons/inventory/accessory/mob_vr.dmi' icon_state = "altevian-scarf-blue" @@ -81,13 +81,13 @@ /obj/item/clothing/accessory/altevian_badge name = "Altevian Civilian Badge" - desc = "An emblem commonly seen worn by the altevians off-work or by visitors of their ships." + desc = "An emblem that's normally worn by non-altevian workers on their fleet ships." icon_state = "altevian_badge" slot = ACCESSORY_SLOT_MEDAL /obj/item/clothing/accessory/altevian_badge/aquila name = "Royal Altevian Navy Emblem" - desc = "An emblem commonly seen worn by the altevians for their work operations." + desc = "An emblem found across all altevian vessels. The unique metals and jewels denote ranks for them back home. Otherwise, it's just a pretty rat skull emblem with a set of crystals for their eyes and fangs." icon_state = "altevian_aquila" /obj/item/clothing/accessory/altevian_badge/aquila/silver diff --git a/code/modules/clothing/under/altevian_vr.dm b/code/modules/clothing/under/altevian_vr.dm index d7720272f3..4ee26740e2 100644 --- a/code/modules/clothing/under/altevian_vr.dm +++ b/code/modules/clothing/under/altevian_vr.dm @@ -1,6 +1,6 @@ /obj/item/clothing/under/pants/altevian name = "Altevian Hegemony Civilian Pants" - desc = "An extremely comfortable set of clothing that's made to help people handle their day to day work around the fleets with little to no discomfort." + desc = "A comfortable set of clothing for people to handle their day to day work around the fleets with little to no discomfort." icon = 'icons/inventory/uniform/item_vr.dmi' icon_override = 'icons/inventory/uniform/mob_vr.dmi' icon_state = "altevian-pants-civ" @@ -52,7 +52,7 @@ /obj/item/clothing/under/altevian name = "Altevian Duty Jumpsuit" - desc = "A uniform commonly seen from altevians during their work. The material on this uniform seems to be made of durable thread that can handle the stress of most matters of labor." + desc = "A uniform commonly seen worn by altevians. The material on this uniform is made of a durable thread that can handle the stress of most forms of labor." icon = 'icons/inventory/uniform/item_vr.dmi' icon_override = 'icons/inventory/uniform/mob_vr.dmi' icon_state = "altevian-specialist" @@ -82,4 +82,4 @@ name = "Altevian Engineering Duty Jumpsuit" armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10) icon_state = "altevian-specialist-eng" - worn_state = "altevian-specialist-eng" \ No newline at end of file + worn_state = "altevian-specialist-eng" diff --git a/code/modules/food/food/snacks_vr.dm b/code/modules/food/food/snacks_vr.dm index def2ea3756..fa7ac5b749 100644 --- a/code/modules/food/food/snacks_vr.dm +++ b/code/modules/food/food/snacks_vr.dm @@ -828,7 +828,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratfruitcake name = "Premade Fruit Block" - desc = "A block of processed material that is infused with a mix of fruits and matter of such." + desc = "A block of processed material that is infused with a mix of fruits and other nutrients." icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_fruitcake" package_open_state = "altevian_fruitcake-open" @@ -839,7 +839,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratpackburger name = "Altevian Prepackaged Meal - Burger" - desc = "A unique twist on what most know as MREs. This seems to be made with using bluespace tech and other methods of preserving an items freshness that it's like someone just ordered this from a restaurant just minutes ago. This one seems to be of burger and fries!" + desc = "A unique twist on what most know as MREs. This seems to be made with using a specialized compression technology that possibly utilizes Bluespace alongside it. Whatever it is, it seems to keep the freshness of whatever is inside to restaurant quality. This one is a combo of a burger and fries!" icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_pack_burger" package_open_state = "altevian_pack_burger-open" @@ -851,7 +851,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratpackcheese name = "Generations Novelty Packaged Wedge" - desc = "Using the popular method of packaging that altevians use, they seemed to also use it for other methods. This one appears to have no real markings on it, save for its different coloring, and an image of the altevian emblem." + desc = "A unique twist on what most know as MREs. This seems to be made with using a specialized compression technology that possibly utilizes Bluespace alongside it. Whatever it is, it seems to keep the freshness of whatever is inside to restaurant quality. This one appears to have no real markings on it, save for its different coloring, and an image of the altevian emblem." icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_pack_cheese" package_open_state = "altevian_pack_cheese-open" @@ -863,7 +863,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratpackturkey name = "Compact Holiday Special Bird" - desc = "A great gift for holidays for assorted species. This contains a full freshly cooked turkey. Open and enjoy. Courtesy of altevian packaging." + desc = "A great gift for that special celebration or holiday for assorted species. This package contains a full freshly cooked turkey. Open and enjoy. Courtesy of altevian packaging." icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_pack_turkey" package_open_state = "altevian_pack_turkey-open" @@ -875,7 +875,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratpackramen name = "Big Noodle Package" - desc = "A pack containing fully cooked ramen meal, alongside some seafood-and-rice based sides. Utensils included. For those who prefer more traditional meals." + desc = "A compression sealed package containing a fully cooked ramen meal. It comes with some seafood-and-rice based sides. Utensils included." icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_pack_ramen" package_open_state = "altevian_pack_ramen_standard-open" @@ -903,7 +903,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratpacktaco name = "Triple Taco Tuck" - desc = "Three mini-tacos, minituarized further via altevian mad science into a convenient container. It comes with a salsa sauce!" + desc = "A compression sealed package containing three mini-tacos, miniaturized further via altevian mad science into a convenient container." icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_pack_taco" package_open_state = "altevian_pack_taco-open" diff --git a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs_altevian.dm b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs_altevian.dm index 114be552cd..41b7941b68 100644 --- a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs_altevian.dm +++ b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs_altevian.dm @@ -1,6 +1,6 @@ /mob/living/simple_mob/humanoid/merc/altevian name = "altevian naval officer" - desc = "Altevian Naval Slicer, adorned in the top of the line Heartbreaker suit. Armed with a handheld cutter." + desc = "An Altevian Naval Slicer, adorned in the top of the line Heartbreaker suit. Armed with a handheld cutter." tt_desc = "E Rattus sapiens" icon = 'icons/mob/altevian_mercs_vr.dmi' icon_state = "merc_melee_cutter" @@ -50,7 +50,7 @@ stand_down_sound = 'sound/weapons/TargetOff.ogg' /mob/living/simple_mob/humanoid/merc/altevian/sapper - desc = "Altevian Naval Sapper, adorned in the top of the line Heartbreaker suit. Armed with a giant fokken wrench." + desc = "An Altevian Naval Sapper, adorned in the top of the line Heartbreaker suit. Armed with a giant fokken wrench." icon_state = "merc_melee_wrench" icon_living = "merc_melee_wrench" @@ -65,7 +65,7 @@ loot_list = list(/obj/item/weapon/tool/transforming/altevian = 100) /mob/living/simple_mob/humanoid/merc/altevian/ranged - desc = "Altevian Naval Salvage Guard, adorned in the top of the line Heartbreaker suit. Armed with a small energy gun." + desc = "An Altevian Naval Salvage Guard, adorned in the top of the line Heartbreaker suit. Armed with a small energy gun." icon_state = "merc_gun_smol" icon_living = "merc_gun_smol" @@ -86,7 +86,7 @@ ai_holder_type = /datum/ai_holder/simple_mob/merc/ranged /mob/living/simple_mob/humanoid/merc/altevian/ranged/strong - desc = "Altevian Naval Salvage Shield, adorned in the top of the line Heartbreaker suit. Armed with a large energy gun." + desc = "An Altevian Naval Salvage Shield, adorned in the top of the line Heartbreaker suit. Armed with a large energy gun." icon_state = "merc_gun_big" icon_living = "merc_gun_big" @@ -101,7 +101,7 @@ projectilesound = 'sound/weapons/Laser.ogg' /mob/living/simple_mob/humanoid/merc/altevian/ranged/ballistic - desc = "Altevian Naval Shipbreaker, adorned in the top of the line Heartbreaker suit. Armed with a bolter gun." + desc = "An Altevian Naval Shipbreaker, adorned in the top of the line Heartbreaker suit. Armed with a bolter gun." icon_state = "merc_gun_ballistic" icon_living = "merc_gun_ballistic" @@ -128,4 +128,4 @@ faction = "neutral" /mob/living/simple_mob/humanoid/merc/altevian/ranged/ballistic/neutral - faction = "neutral" \ No newline at end of file + faction = "neutral" diff --git a/code/modules/power/port_gen_vr.dm b/code/modules/power/port_gen_vr.dm index 04fd1d6bde..7225c6a5a2 100644 --- a/code/modules/power/port_gen_vr.dm +++ b/code/modules/power/port_gen_vr.dm @@ -416,15 +416,15 @@ // Big altevian version of pacman. has a lot of copypaste from regular kind, but less flexible. /obj/machinery/power/port_gen/large_altevian - name = "Converted High Energy Exchange Supplier Extractor" - desc = "A take on the classic PACMAN reactors that are seen throughout the galaxy. The altevians have ripped apart the tech and seemed to of found a way to maximize the fuel usage one would see with this kind of process. \ - However, it is a lot bulkier and nearly impossible to break apart, but still can be moved if need be with special tools." + name = "Phoronic Conversion System" + desc = "A reactor system similar to the PACMAN generators seen throughout the stars. This one is a specific model created by the altevians. It seems this reactor has a way to maximize the fuel usage one would see with this kind of process. \ + However, due to its construction and size it is nearly impossible to break apart. It still can be moved if need be with special tools." icon = 'icons/obj/props/decor64x64.dmi' icon_state = "alteviangen" bound_width = 64 bound_height = 64 anchored = TRUE - power_gen = 200000 + power_gen = 250000 var/sheet_name = "Phoron Sheets" var/sheet_path = /obj/item/stack/material/phoron @@ -497,4 +497,4 @@ else if(sheets > 25) add_overlay("alteviangen-fuel-66") else if(sheets > 0) - add_overlay("alteviangen-fuel-33") \ No newline at end of file + add_overlay("alteviangen-fuel-33") diff --git a/code/modules/projectiles/guns/energy/altevian_vr.dm b/code/modules/projectiles/guns/energy/altevian_vr.dm index 4208d2d9e2..39543e1fcc 100644 --- a/code/modules/projectiles/guns/energy/altevian_vr.dm +++ b/code/modules/projectiles/guns/energy/altevian_vr.dm @@ -1,6 +1,6 @@ /obj/item/weapon/gun/energy/altevian name = "Magneto-Electric Energy Projector" - desc = "A hand-held version of an energy weapon for the Altevian Hegemony. This one seems to be made for more proper civilian use with its reduced charge capacity, but ease of handling." + desc = "A hand-held version of an energy weapon for the Altevian Hegemony. This one is the civilian grade version that has a reduced charge capacity. However, it is a lot easier to use." icon_state = "meep" item_state = "meep" fire_delay = 8 @@ -10,11 +10,11 @@ origin_tech = list(TECH_COMBAT = 3, TECH_MAGNET = 2) matter = list(MAT_STEEL = 1000) projectile_type = /obj/item/projectile/beam/meeplaser - charge_cost = 450 + charge_cost = 400 /obj/item/weapon/gun/energy/altevian/large name = "Proto-Reactive Beam Thruster" - desc = "A standard issue energy rifle seen for defensive purposes for a space faring rodent species. The beams are tuned for proper suppression." + desc = "The main energy rifle that the Altevian Hegemony uses for its military operations." icon_state = "altevian-pdw" item_state = "altevian-pdw" slot_flags = SLOT_BELT @@ -28,7 +28,7 @@ /obj/item/projectile/beam/meeplaser name = "meep beam" icon_state = "meep" - damage = 15 + damage = 25 light_color = "#77A6E1" hud_state = "laser_disabler" @@ -38,7 +38,7 @@ /obj/item/projectile/beam/meeplaser/strong name = "repeater beam" - damage = 35 + damage = 40 /obj/effect/projectile/muzzle/meeplaser icon_state = "muzzle_meep" @@ -56,4 +56,4 @@ icon_state = "impact_meep" light_range = 2 light_power = 0.5 - light_color = "#77A6E1" \ No newline at end of file + light_color = "#77A6E1" diff --git a/code/modules/projectiles/guns/projectile/altevian_vr.dm b/code/modules/projectiles/guns/projectile/altevian_vr.dm index 29d4800fcd..eb6c2cbe6a 100644 --- a/code/modules/projectiles/guns/projectile/altevian_vr.dm +++ b/code/modules/projectiles/guns/projectile/altevian_vr.dm @@ -1,6 +1,6 @@ /obj/item/weapon/gun/projectile/altevian name = "Altevian Rivet Repeater" - desc = "An offensive weapon designed by the altevians that is used for decompression and maximizes structural damage while also serving as a good method of personnel damage." + desc = "An offensive ballistic weapon designed by the Altevian Hegemony commonly used for decompression and structural damage tactics. It's also pretty effective at personnel damage." magazine_type = /obj/item/ammo_magazine/sam48 allowed_magazines = list(/obj/item/ammo_magazine/sam48) projectile_type = /obj/item/projectile/bullet/sam48