forked from Rotwood-Vale/Ratwood-Keep
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
573 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/obj/item/reagent_containers/glass/cup/golden | ||
sellprice = 40 // было 50 | ||
|
||
/obj/item/dildo/gold | ||
sellprice = 30 // было 50. Хватит продавать ИХ | ||
|
||
/obj/item/natural/fur | ||
sellprice = 15 // как в стокпайле | ||
|
||
/obj/item/natural/hide | ||
sellprice = 15 // нельзя выгодно продать голым на корабле (в обход казначея) | ||
|
||
/obj/item/natural/hide/cured | ||
sellprice = 10 // нельзя выгодно продать голым на корабле (в обход казначея) | ||
|
||
/obj/item/natural/cured/essence | ||
sellprice = 15 // корм дровосеков | ||
|
||
/obj/item/reagent_containers/powder | ||
sellprice = 1 // Фикс возможности перемолоть камень за 2 маммона в пыль за 10 маммонов |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/mob/living/simple_animal/hostile/retaliate/rogue/goatmale | ||
butcher_results = list(/obj/item/reagent_containers/food/snacks/rogue/meat/steak = 3, // на 1 меньше | ||
/obj/item/reagent_containers/food/snacks/fat = 1, | ||
/obj/item/natural/hide = 1, // на 1 меньше | ||
/obj/item/natural/fur = 1) | ||
|
||
/mob/living/simple_animal/hostile/retaliate/rogue/goat | ||
butcher_results = list(/obj/item/reagent_containers/food/snacks/rogue/meat/steak = 3, // на 1 меньше | ||
/obj/item/reagent_containers/food/snacks/fat = 2, | ||
/obj/item/natural/hide = 1, // на 1 меньше | ||
/obj/item/natural/fur = 1) | ||
|
||
/mob/living/simple_animal/hostile/retaliate/rogue/saiga | ||
butcher_results = list(/obj/item/reagent_containers/food/snacks/rogue/meat/steak = 3, // на 1 меньше | ||
/obj/item/reagent_containers/food/snacks/fat = 2, | ||
/obj/item/natural/hide = 3) // на 1 меньше | ||
|
||
/mob/living/simple_animal/hostile/retaliate/rogue/saigabuck | ||
butcher_results = list(/obj/item/reagent_containers/food/snacks/rogue/meat/steak = 3, // на 1 меньше | ||
/obj/item/reagent_containers/food/snacks/fat = 1, | ||
/obj/item/natural/hide = 3) // на 1 меньше |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/datum/crafting_recipe/roguetown/sewing/wizrobeblue | ||
name = "robe (wizard) - (4 cloths, 2 silk, 3 fibers; MASTER)" | ||
reqs = list(/obj/item/natural/cloth = 4, | ||
/obj/item/natural/fibers = 3, | ||
/obj/item/natural/silk = 2) | ||
skill_level = 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/datum/supply_pack/rogue/rawmats/iron | ||
cost = 80 // Стратегический материал (а также, повышает ценность шахтёров) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/datum/anvil_recipe | ||
// Сообщение, выдающееся юзеру, если ему не хватает навыка персонажа для крафта на наковальне | ||
var/low_skill_message = "This recipe is too hard for me... I need to be more skilled." | ||
|
||
/* | ||
* ЗОЛОТО - Золотым вещам в среднем пятый навык, если они идут на продажу из города или стоят 120+ | ||
*/ | ||
|
||
/datum/anvil_recipe/cutlery | ||
low_skill_message = "This recipe is too hard for me... I need to be more skilled to craft golden cutlery." | ||
skill_level = 5 // Роскошь | ||
|
||
/datum/anvil_recipe/valuables/gold | ||
low_skill_message = "This recipe is too hard for me... I need to be more skilled to craft golden valuables." | ||
skill_level = 5 // Роскошь | ||
|
||
/datum/anvil_recipe/gold_dildo | ||
low_skill_message = "This recipe is too hard for me... I need to be more skilled to craft it." | ||
skill_level = 5 // Псайдона четвертовали за вас | ||
|
||
/datum/anvil_recipe/weapons/decsword | ||
skill_level = 4 // Оружие продаётся за себестоимость | ||
|
||
/datum/anvil_recipe/weapons/decsaber | ||
skill_level = 4 // Оружие продаётся за себестоимость | ||
|
||
/datum/anvil_recipe/weapons/decrapier | ||
skill_level = 4 // Оружие продаётся за себестоимость | ||
|
||
/datum/anvil_recipe/weapons/terminus | ||
skill_level = 5 // 2 слитка золота | ||
|
||
/* | ||
* СЕРЕБРО - Серебрянным вещам, если они идут на продажу или как драгоценности, четвертый навык | ||
*/ | ||
|
||
/datum/anvil_recipe/valuables/silver | ||
skill_level = 4 // Роскошь | ||
|
||
/datum/anvil_recipe/cutlery/silver | ||
skill_level = 4 // Роскошь | ||
|
||
/datum/anvil_recipe/silver_dildo | ||
skill_level = 4 // Псайдона четвертовали за вас | ||
|
||
/datum/anvil_recipe/weapons/silver | ||
skill_level = 3 // Оружие продаётся за себестоимость |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
|
||
/datum/roguestock/stockpile/stone | ||
payout_price = 0 | ||
passive_generation = 15 | ||
|
||
/datum/roguestock/stockpile/gold | ||
payout_price = 15 | ||
withdraw_price = 80 | ||
export_price = 80 | ||
|
||
/datum/roguestock/stockpile/silver // Используется в крафте оружия против нечисти И драгоценностях | ||
payout_price = 15 | ||
withdraw_price = 65 | ||
export_price = 65 | ||
|
||
/datum/roguestock/stockpile/cured | ||
payout_price = 5 | ||
withdraw_price = 10 | ||
export_price = 10 | ||
|
||
/datum/roguestock/stockpile/hide | ||
payout_price = 10 | ||
withdraw_price = 15 | ||
export_price = 15 | ||
|
||
/datum/roguestock/stockpile/fur | ||
payout_price = 10 | ||
withdraw_price = 15 | ||
export_price = 15 | ||
|
||
/datum/roguestock/stockpile/grain | ||
payout_price = 1 | ||
|
||
/datum/roguestock/stockpile/oat | ||
payout_price = 1 | ||
|
||
/datum/roguestock/stockpile/apple | ||
payout_price = 2 | ||
withdraw_price = 5 | ||
|
||
/datum/roguestock/stockpile/meat | ||
payout_price = 5 | ||
withdraw_price = 10 | ||
export_price = 10 | ||
|
||
/datum/roguestock/stockpile/beet | ||
payout_price = 2 | ||
withdraw_price = 6 | ||
export_price = 6 | ||
|
||
/datum/roguestock/stockpile/cabbage | ||
payout_price = 2 | ||
withdraw_price = 6 | ||
export_price = 6 | ||
|
||
/datum/roguestock/stockpile/potato | ||
payout_price = 2 | ||
withdraw_price = 6 | ||
export_price = 6 | ||
|
||
/datum/roguestock/stockpile/onion | ||
payout_price = 2 | ||
withdraw_price = 6 | ||
export_price = 6 | ||
|
||
/datum/roguestock/stockpile/poultry | ||
payout_price = 5 | ||
withdraw_price = 10 | ||
export_price = 10 |
Oops, something went wrong.