调整奖励金额,现在太多了
This commit is contained in:
@@ -1125,7 +1125,7 @@ class XiuxianPlugin(MessagePluginInterface):
|
||||
stones_gain = 0
|
||||
mats_gain: Dict[str, int] = {}
|
||||
if r < jack_p:
|
||||
stones_gain = int(random.uniform(2000, 5000) * d)
|
||||
stones_gain = int(random.uniform(100, 500) * d)
|
||||
n = random.randint(2, 3)
|
||||
tiers = ["T3", "T2"] if rs >= 40 else ["T2", "T1"]
|
||||
for _ in range(n):
|
||||
@@ -1136,7 +1136,7 @@ class XiuxianPlugin(MessagePluginInterface):
|
||||
name = random.choice(pool)
|
||||
mats_gain[name] = mats_gain.get(name, 0) + 1
|
||||
elif r < jack_p + succ_p:
|
||||
stones_gain = int(random.uniform(200, 800) * d)
|
||||
stones_gain = int(random.uniform(20, 80) * d)
|
||||
n = random.randint(1, 2)
|
||||
tiers = ["T2", "T1"]
|
||||
for _ in range(n):
|
||||
|
||||
Reference in New Issue
Block a user