From ea40dbdb908eb5ffdcf179f3044fd072e78dae47 Mon Sep 17 00:00:00 2001 From: blah Date: Wed, 4 Nov 2015 16:01:32 +0000 Subject: [PATCH] Fixes rpgloot.dm by removing + and - --- code/modules/events/wizard/rpgloot.dm | 4 ++-- data/mode.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/events/wizard/rpgloot.dm b/code/modules/events/wizard/rpgloot.dm index 557f61f330b..116a614740d 100644 --- a/code/modules/events/wizard/rpgloot.dm +++ b/code/modules/events/wizard/rpgloot.dm @@ -8,14 +8,14 @@ /datum/round_event/wizard/rpgloot/start() var/list/prefixespositive = list("greater", "major", "blessed", "superior", "enpowered", "honed", "true", "glorious", "robust") var/list/prefixesnegative = list("lesser", "minor", "blighted", "inferior", "enfeebled", "rusted", "unsteady", "tragic", "gimped") - var/list/suffixes = list("orc-slaying", "elf-slaying", "corgi-slaying", "strength", "dexterity", "constitution", "intelligence", "wisdom", "charisma", "the forest", "the hills", "the plains", "the sea", "the sun", "the moon", "the void", "the world", "the fool", "many secrets", "many tales", "many colors", "rending", "sundering", "the night", "the day") + var/list/suffixes = list("orc slaying", "elf slaying", "corgi slaying", "strength", "dexterity", "constitution", "intelligence", "wisdom", "charisma", "the forest", "the hills", "the plains", "the sea", "the sun", "the moon", "the void", "the world", "the fool", "many secrets", "many tales", "many colors", "rending", "sundering", "the night", "the day") for(var/obj/item/I in world) if(istype(I,/obj/item/organ/)) continue var/quality = rand(-5,5) if(quality > 0) - I.name = "[pick(prefixespositive)] [I.name] of [pick(suffixes)] +[quality]" + I.name = "[pick(prefixespositive)] [I.name] of [pick(suffixes)] plus [quality]" else if(quality < 0) I.name = "[pick(prefixesnegative)] [I.name] of [pick(suffixes)] [quality]" else diff --git a/data/mode.txt b/data/mode.txt index cf1ffd5c991..d97c5eada5d 100644 --- a/data/mode.txt +++ b/data/mode.txt @@ -1 +1 @@ -extended \ No newline at end of file +secret