Skip to content

Commit

Permalink
Rework port searches/evil goods
Browse files Browse the repository at this point in the history
Increase base search chance from 15% to 20%
Increase smuggling search reduction from 4% to 10%
Increase narcotics price from 259 to 295
Increase weapons price from 168 to 191
Increase slaves price from 89 to 101
  • Loading branch information
Page- committed Jan 27, 2021
1 parent 91d142c commit f660260
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions db/patches/V1_6_65_11__evil_goods_adjustment.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

UPDATE `good` SET `base_price` = 295 WHERE `good_name` = 'Narcotics';
UPDATE `good` SET `base_price` = 191 WHERE `good_name` = 'Weapons';
UPDATE `good` SET `base_price` = 101 WHERE `good_name` = 'Slaves';
4 changes: 2 additions & 2 deletions src/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@
/*
* Port searchs
*/
const PORT_SEARCH_BASE_CHANCE = 15;
const PORT_SEARCH_BASE_CHANCE = 20;
const PORT_SEARCH_REDUCTION_PER_EVIL_GOOD = 4;
const PORT_SEARCH_REDUCTION_FOR_EVIL_SHIP = 4;
const PORT_SEARCH_REDUCTION_FOR_EVIL_SHIP = 10;

/*
* Ship types
Expand Down

0 comments on commit f660260

Please sign in to comment.