diff --git a/src/config/drugs.cairo b/src/config/drugs.cairo index 89311a7ab..5108c5848 100644 --- a/src/config/drugs.cairo +++ b/src/config/drugs.cairo @@ -144,7 +144,7 @@ fn initialize_drug_config(world: IWorldDispatcher) { drug: Drugs::Speed, drug_id: Drugs::Speed.into(), base: 150, - step: 4, + step: 8, weight: 14, name: Bytes16Impl::from('Speed') } @@ -156,7 +156,7 @@ fn initialize_drug_config(world: IWorldDispatcher) { drug: Drugs::Weed, drug_id: Drugs::Weed.into(), base: 402, - step: 8, + step: 16, weight: 19, name: Bytes16Impl::from('Weed') } @@ -168,7 +168,7 @@ fn initialize_drug_config(world: IWorldDispatcher) { drug: Drugs::Shrooms, drug_id: Drugs::Shrooms.into(), base: 906, - step: 16, + step: 32, weight: 27, name: Bytes16Impl::from('Shrooms') } @@ -180,7 +180,7 @@ fn initialize_drug_config(world: IWorldDispatcher) { drug: Drugs::Acid, drug_id: Drugs::Acid.into(), base: 1914, - step: 32, + step: 64, weight: 37, name: Bytes16Impl::from('Acid') } @@ -192,7 +192,7 @@ fn initialize_drug_config(world: IWorldDispatcher) { drug: Drugs::Ketamine, drug_id: Drugs::Ketamine.into(), base: 3930, - step: 64, + step: 128, weight: 52, name: Bytes16Impl::from('Ketamine') } @@ -204,7 +204,7 @@ fn initialize_drug_config(world: IWorldDispatcher) { drug: Drugs::Heroin, drug_id: Drugs::Heroin.into(), base: 7962, - step: 128, + step: 256, weight: 72, name: Bytes16Impl::from('Heroin') } @@ -216,7 +216,7 @@ fn initialize_drug_config(world: IWorldDispatcher) { drug: Drugs::Cocaine, drug_id: Drugs::Cocaine.into(), base: 16026, - step: 256, + step: 512, weight: 100, name: Bytes16Impl::from('Cocaine') } diff --git a/src/systems/ryo.cairo b/src/systems/ryo.cairo index da996fc6a..f090c4c93 100644 --- a/src/systems/ryo.cairo +++ b/src/systems/ryo.cairo @@ -59,7 +59,7 @@ mod ryo { ryo_config.paused = false; ryo_config.leaderboard_version = 1; - ryo_config.leaderboard_duration = FEW_MIN; // ONE_WEEK + ryo_config.leaderboard_duration = 8 * ONE_HOUR; // ONE_WEEK ryo_config.paper_fee = 100; // in ether ryo_config.treasury_fee_pct = 5;