mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 20:52:41 +00:00
Corruption fix - we had way too many strings somehow.
This commit is contained in:
@@ -789,40 +789,44 @@ datum/objective/heist/kidnap
|
||||
return 0
|
||||
|
||||
datum/objective/heist/loot
|
||||
|
||||
choose_target()
|
||||
|
||||
if(pick("hardware","weapons") == "hardware")
|
||||
target = pick("a complete particle accelerator","a gravitational generator","four emitters","a nuclear bomb")
|
||||
else
|
||||
target = pick("six guns","four energy guns","two laser guns","an ion gun")
|
||||
|
||||
explanation_text = "We are lacking in hardware. Steal [target]."
|
||||
|
||||
switch(target)
|
||||
if("a complete particle accelerator")
|
||||
var/loot = "an object"
|
||||
switch(rand(1,8))
|
||||
if(1)
|
||||
target = /obj/structure/particle_accelerator
|
||||
target_amount = 6
|
||||
if("a gravitational generator")
|
||||
loot = "a complete particle accelerator"
|
||||
if(2)
|
||||
target = /obj/machinery/the_singularitygen
|
||||
target_amount = 1
|
||||
if("four emitters")
|
||||
loot = "a gravitational generator"
|
||||
if(3)
|
||||
target = /obj/machinery/power/emitter
|
||||
target_amount = 4
|
||||
if("a nuclear bomb")
|
||||
loot = "four emitters"
|
||||
if(4)
|
||||
target = /obj/machinery/nuclearbomb
|
||||
target_amount = 1
|
||||
if("six guns")
|
||||
loot = "a nuclear bomb"
|
||||
if(5)
|
||||
target = /obj/item/weapon/gun
|
||||
target_amount = 6
|
||||
if("four energy guns")
|
||||
loot = "six guns"
|
||||
if(6)
|
||||
target = /obj/item/weapon/gun/energy
|
||||
target_amount = 4
|
||||
if("two laser guns")
|
||||
loot = "four energy guns"
|
||||
if(7)
|
||||
target = /obj/item/weapon/gun/energy/laser
|
||||
target_amount = 2
|
||||
if("an ion gun")
|
||||
loot = "two laser guns"
|
||||
if(8)
|
||||
target = /obj/item/weapon/gun/energy/ionrifle
|
||||
target_amount = 1
|
||||
loot = "an ion gun"
|
||||
|
||||
explanation_text = "We are lacking in hardware. Steal [loot]."
|
||||
|
||||
check_completion()
|
||||
|
||||
@@ -844,36 +848,33 @@ datum/objective/heist/loot
|
||||
datum/objective/heist/salvage
|
||||
|
||||
choose_target()
|
||||
var/list/possible_items = list("300 metal sheets","200 glass sheets","100 plasteel sheets","100 units of solid plasma","50 silver bars","20 gold bars","20 uranium bars","20 diamonds")
|
||||
target = pick(possible_items)
|
||||
explanation_text = "Ransack the station and escape with [target]."
|
||||
|
||||
switch(target)
|
||||
if("300 metal sheets")
|
||||
switch(rand(1,8))
|
||||
if(1)
|
||||
target = "metal"
|
||||
target_amount = 300
|
||||
if("200 glass sheets")
|
||||
if(2)
|
||||
target = "glass"
|
||||
target_amount = 200
|
||||
if("100 plasteel sheets")
|
||||
if(3)
|
||||
target = "plasteel"
|
||||
target_amount = 100
|
||||
if("100 units of solid plasma")
|
||||
if(4)
|
||||
target = "plasma"
|
||||
target_amount = 100
|
||||
if("50 silver bars")
|
||||
if(5)
|
||||
target = "silver"
|
||||
target_amount = 50
|
||||
if("20 gold bars")
|
||||
if(6)
|
||||
target = "gold"
|
||||
target_amount = 20
|
||||
if("20 uranium bars")
|
||||
if(7)
|
||||
target = "uranium"
|
||||
target_amount = 20
|
||||
if("20 diamonds")
|
||||
if(8)
|
||||
target = "diamond"
|
||||
target_amount = 20
|
||||
|
||||
explanation_text = "Ransack the station and escape with [target_amount] [target]."
|
||||
|
||||
check_completion()
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
icon_state ="bookEngineering"
|
||||
author = "Engineering Encyclopedia" // Who wrote the thing, can be changed by pen or PC. It is not automatically assigned
|
||||
title = "Station Repairs and Construction"
|
||||
dat = {"
|
||||
/*dat = {"
|
||||
|
||||
<html><head>
|
||||
</head>
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
</html>
|
||||
|
||||
"}
|
||||
"}*/
|
||||
|
||||
/obj/item/weapon/book/manual/engineering_particle_accelerator
|
||||
name = "Particle Accelerator User's Guide"
|
||||
@@ -32,7 +32,7 @@
|
||||
title = "Particle Accelerator User's Guide"
|
||||
//big pile of shit below.
|
||||
|
||||
dat = {"<html>
|
||||
/*dat = {"<html>
|
||||
<head>
|
||||
<style>
|
||||
h1 {font-size: 18px; margin: 15px 0px 5px;}
|
||||
@@ -65,7 +65,7 @@
|
||||
</ol>
|
||||
|
||||
</body>
|
||||
</html>"}
|
||||
</html>"}*/
|
||||
|
||||
|
||||
/obj/item/weapon/book/manual/engineering_hacking
|
||||
@@ -75,7 +75,7 @@
|
||||
title = "Hacking"
|
||||
//big pile of shit below.
|
||||
|
||||
dat = {"
|
||||
/*dat = {"
|
||||
|
||||
<html><head>
|
||||
</head>
|
||||
@@ -86,7 +86,7 @@
|
||||
|
||||
</html>
|
||||
|
||||
"}
|
||||
"}*/
|
||||
|
||||
/obj/item/weapon/book/manual/engineering_singularity_safety
|
||||
name = "Singularity Safety in Special Circumstances"
|
||||
@@ -95,7 +95,7 @@
|
||||
title = "Singularity Safety in Special Circumstances"
|
||||
//big pile of shit below.
|
||||
|
||||
dat = {"<html>
|
||||
/*dat = {"<html>
|
||||
<head>
|
||||
<style>
|
||||
h1 {font-size: 18px; margin: 15px 0px 5px;}
|
||||
@@ -134,14 +134,14 @@
|
||||
Step one: <b>GET THE FUCK OUT OF THERE!!! FORGET THE WOMEN AND CHILDREN, SAVE YOURSELF!!!</b><br>
|
||||
</body>
|
||||
</html>
|
||||
"}
|
||||
"}*/
|
||||
|
||||
/obj/item/weapon/book/manual/hydroponics_pod_people
|
||||
name = "The Human Harvest - From seed to market"
|
||||
icon_state ="bookHydroponicsPodPeople"
|
||||
author = "Farmer John"
|
||||
title = "The Human Harvest - From seed to market"
|
||||
dat = {"<html>
|
||||
/*dat = {"<html>
|
||||
<head>
|
||||
<style>
|
||||
h1 {font-size: 18px; margin: 15px 0px 5px;}
|
||||
@@ -169,7 +169,7 @@
|
||||
|
||||
</body>
|
||||
</html>
|
||||
"}
|
||||
"}*/
|
||||
|
||||
/obj/item/weapon/book/manual/medical_cloning
|
||||
name = "Cloning techniques of the 26th century"
|
||||
@@ -178,7 +178,7 @@
|
||||
title = "Cloning techniques of the 26th century"
|
||||
//big pile of shit below.
|
||||
|
||||
dat = {"<html>
|
||||
/*dat = {"<html>
|
||||
<head>
|
||||
<style>
|
||||
h1 {font-size: 18px; margin: 15px 0px 5px;}
|
||||
@@ -246,7 +246,7 @@
|
||||
|
||||
</body>
|
||||
</html>
|
||||
"}
|
||||
"}*/
|
||||
|
||||
|
||||
/obj/item/weapon/book/manual/ripley_build_and_repair
|
||||
@@ -256,7 +256,7 @@
|
||||
title = "APLU \"Ripley\" Construction and Operation Manual"
|
||||
//big pile of shit below.
|
||||
|
||||
dat = {"<html>
|
||||
/*dat = {"<html>
|
||||
<head>
|
||||
<style>
|
||||
h1 {font-size: 18px; margin: 15px 0px 5px;}
|
||||
@@ -322,7 +322,7 @@
|
||||
|
||||
<h2>Operation</h2>
|
||||
Coming soon...
|
||||
"}
|
||||
"}*/
|
||||
|
||||
|
||||
/obj/item/weapon/book/manual/research_and_development
|
||||
@@ -330,7 +330,8 @@
|
||||
icon_state = "rdbook"
|
||||
author = "Dr. L. Ight"
|
||||
title = "Research and Development 101"
|
||||
dat = {"<html>
|
||||
/*dat = {"
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
h1 {font-size: 18px; margin: 15px 0px 5px;}
|
||||
@@ -372,7 +373,7 @@
|
||||
Many machines produces from circuit boards and inserted into a machine frame require a variety of parts to construct. These are parts like capacitors, batteries, matter bins, and so forth. As your knowledge of science improves, more advanced versions are unlocked. If you use these parts when constructing something, its attributes may be improved. For example, if you use an advanced matter bin when constructing an autolathe (rather then a regular one), it'll hold more materials. Experiment around with stock parts of various qualities to see how they affect the end results! Be warned, however: Tier 3 and higher stock parts don't have 100% reliability and their low reliability may affect the reliability of the end machine.
|
||||
</body>
|
||||
</html>
|
||||
"}
|
||||
"}*/
|
||||
|
||||
|
||||
/obj/item/weapon/book/manual/robotics_cyborgs
|
||||
@@ -380,7 +381,7 @@
|
||||
icon_state = "borgbook"
|
||||
author = "XISC"
|
||||
title = "Cyborgs for Dummies"
|
||||
dat = {"<html>
|
||||
/*dat = {"<html>
|
||||
<head>
|
||||
<style>
|
||||
h1 {font-size: 21px; margin: 15px 0px 5px;}
|
||||
@@ -575,7 +576,7 @@
|
||||
|
||||
</body>
|
||||
</html>
|
||||
"}
|
||||
"}*/
|
||||
|
||||
/obj/item/weapon/book/manual/security_space_law
|
||||
name = "Space Law"
|
||||
@@ -583,7 +584,7 @@
|
||||
icon_state = "bookSpaceLaw"
|
||||
author = "Nanotrasen"
|
||||
title = "Space Law"
|
||||
dat = {"
|
||||
/*dat = {"
|
||||
|
||||
<html><head>
|
||||
</head>
|
||||
@@ -593,14 +594,14 @@
|
||||
|
||||
</html>
|
||||
|
||||
"}
|
||||
"}*/
|
||||
|
||||
/obj/item/weapon/book/manual/engineering_guide
|
||||
name = "Engineering Textbook"
|
||||
icon_state ="bookEngineering2"
|
||||
author = "Engineering Encyclopedia"
|
||||
title = "Engineering Textbook"
|
||||
dat = {"
|
||||
/*dat = {"
|
||||
|
||||
<html><head>
|
||||
</head>
|
||||
@@ -610,7 +611,7 @@
|
||||
|
||||
</html>
|
||||
|
||||
"}
|
||||
"}*/
|
||||
|
||||
|
||||
/obj/item/weapon/book/manual/chef_recipes
|
||||
@@ -618,7 +619,7 @@
|
||||
icon_state = "cooked_book"
|
||||
author = "Lord Frenrir Cageth"
|
||||
title = "Chef Recipes"
|
||||
dat = {"<html>
|
||||
/*dat = {"<html>
|
||||
<head>
|
||||
<style>
|
||||
h1 {font-size: 18px; margin: 15px 0px 5px;}
|
||||
@@ -663,14 +664,14 @@
|
||||
|
||||
</body>
|
||||
</html>
|
||||
"}
|
||||
"}*/
|
||||
|
||||
/obj/item/weapon/book/manual/barman_recipes
|
||||
name = "Barman Recipes"
|
||||
icon_state = "barbook"
|
||||
author = "Sir John Rose"
|
||||
title = "Barman Recipes"
|
||||
dat = {"<html>
|
||||
/*dat = {"<html>
|
||||
<head>
|
||||
<style>
|
||||
h1 {font-size: 18px; margin: 15px 0px 5px;}
|
||||
@@ -715,7 +716,7 @@
|
||||
|
||||
</body>
|
||||
</html>
|
||||
"}
|
||||
"}*/
|
||||
|
||||
|
||||
/obj/item/weapon/book/manual/detective
|
||||
@@ -723,7 +724,7 @@
|
||||
icon_state ="bookDetective"
|
||||
author = "Nanotrasen"
|
||||
title = "The Film Noir: Proper Procedures for Investigations"
|
||||
dat = {"<html>
|
||||
/*dat = {"<html>
|
||||
<head>
|
||||
<style>
|
||||
h1 {font-size: 18px; margin: 15px 0px 5px;}
|
||||
@@ -757,14 +758,14 @@
|
||||
It really is that easy! Good luck!
|
||||
|
||||
</body>
|
||||
</html>"}
|
||||
</html>"}*/
|
||||
|
||||
/obj/item/weapon/book/manual/nuclear
|
||||
name = "Fission Mailed: Nuclear Sabotage 101"
|
||||
icon_state ="bookNuclear"
|
||||
author = "Syndicate"
|
||||
title = "Fission Mailed: Nuclear Sabotage 101"
|
||||
dat = {"<html>
|
||||
/*dat = {"<html>
|
||||
Nuclear Explosives 101:<br>
|
||||
Hello and thank you for choosing the Syndicate for your nuclear information needs.<br>
|
||||
Today's crash course will deal with the operation of a Fusion Class Nanotrasen made Nuclear Device.<br>
|
||||
@@ -792,4 +793,4 @@
|
||||
<b>Disk, Code, Safety, Timer, Disk, RUN!</b><br>
|
||||
Intelligence Analysts believe that normal Nanotrasen procedure is for the Captain to secure the nuclear authorisation disk.<br>
|
||||
Good luck!
|
||||
</html>"}
|
||||
</html>"}*/
|
||||
Reference in New Issue
Block a user