diff --git a/_sources/games/genshin_impact/gacha_models.rst.txt b/_sources/games/genshin_impact/gacha_models.rst.txt
index c13b4a2..1af3b21 100644
--- a/_sources/games/genshin_impact/gacha_models.rst.txt
+++ b/_sources/games/genshin_impact/gacha_models.rst.txt
@@ -30,6 +30,8 @@ GGanalysis 使用基本的抽卡模板模型结合 `原神抽卡系统参数
+
+
-
-
+
+
+
-
+
+
+
-
-
+
+
+
-
+
+
+
-
-
+
+
+
-
+
参数意义multi_dist 是否以列表返回获取 1-item_num 个物品的所有分布列
item_pity
道具保底状态,通俗的叫法为水位、垫抽
up_pity
UP道具保底状态,设为 1 即为玩家所说的大保底
cr_pity
「捕获明光」保底状态
角色活动祈愿5.0版本后获得UP五星角色的模型
--注意此模型为当前为近似模型,仅将UP概率改为了55%。
-
双重保底抽卡类
+gacha_model.up_5star_character(multi_dist: bool = False, item_pity=0, up_pity=0, cr_pity=0) FiniteDist | list# +针对原神5.0后加入的「捕获明光」机制的模型
角色活动祈愿5.0版本前获得UP五星角色的模型
@@ -328,8 +326,8 @@import GGanalysis.games.genshin_impact as GI
# 原神角色池的计算
-print('角色池在垫了20抽,有大保底的情况下抽3个UP五星抽数的分布')
-dist_c = GI.up_5star_character(item_num=3, item_pity=20, up_pity=1)
+print('角色池在垫了20抽,有大保底,已经连歪两次的情况下抽3个UP五星抽数的分布')
+dist_c = GI.up_5star_character(item_num=3, item_pity=20, up_pity=1, cr_pity=2)
print('期望为', dist_c.exp, '方差为', dist_c.var, '分布为', dist_c.dist)
从角色活动祈愿中获取位于常驻祈愿的特定五星角色的模型
+5.0前从角色活动祈愿中获取位于常驻祈愿的特定五星角色的模型
从武器活动祈愿中获取位于常驻祈愿的特定五星武器的模型
+5.0前从武器活动祈愿中获取位于常驻祈愿的特定五星武器的模型
+ |