tung tung tung

This commit is contained in:
lda
2026-03-31 01:12:56 +07:00 Unverified
parent 67f52b41c0
commit 2dbd3de074
4 changed files with 175 additions and 64 deletions
+52
View File
@@ -0,0 +1,52 @@
---
config:
flowchart:
curve: linear
---
graph TD;
__start__([<p>__start__</p>]):::first
init(init)
tick(tick)
counter_up(counter_up)
rate_up(rate_up)
rate_same(rate_same)
rate_guarantee(rate_guarantee)
r_g10(r_g10)
r_g80(r_g80)
r_gs(r_gs)
c_80_p(c_80_p)
c_10_p(c_10_p)
prep(prep)
roll(roll)
c_80(c_80)
c_10(c_10)
end_roll(end_roll)
__end__([<p>__end__</p>]):::last
__start__ --> init;
c_10 --> end_roll;
c_10_p --> prep;
c_80 --> end_roll;
c_80_p --> c_10_p;
counter_up -. &nbsp;0&nbsp; .-> rate_same;
counter_up -. &nbsp;65&nbsp; .-> rate_up;
end_roll -.-> __end__;
end_roll -.-> tick;
init -.-> __end__;
init -.-> tick;
prep --> roll;
r_g10 --> c_10_p;
r_g80 --> c_80_p;
r_gs --> c_80_p;
rate_guarantee -. &nbsp;1&nbsp; .-> prep;
rate_guarantee -. &nbsp;10&nbsp; .-> r_g10;
rate_guarantee -. &nbsp;80&nbsp; .-> r_g80;
rate_guarantee -. &nbsp;240&nbsp; .-> r_gs;
rate_same --> rate_guarantee;
rate_up --> rate_guarantee;
roll -. &nbsp;10&nbsp; .-> c_10;
roll -. &nbsp;240&nbsp; .-> c_80;
roll -. &nbsp;1&nbsp; .-> end_roll;
tick --> counter_up;
classDef default fill:#f2f0ff,line-height:1.2
classDef first fill-opacity:0
classDef last fill:#bfb6fc