Ver código fonte

update loot rules

master
peter 5 anos atrás
pai
commit
3dd1c01d3d

+ 47
- 36
src/frontend/src/app/frontcraft/pages/rules/rules.component.html Ver arquivo

@@ -1,66 +1,77 @@
1
-<nb-card class="col-12 col-xl-9">
2
-    <nb-card-body>
3
-        <nb-tabset>
4
-            <nb-tab tabTitle="Info">
1
+<div class="row">
2
+    <div class="col-12 col-lg-8">
3
+        <nb-card>
4
+            <nb-card-body>
5 5
                 <h3>How it works</h3>
6 6
                 <ul>
7 7
                     <li>
8
-                        Everyone starts out with 1 soft reserve right per raid tier (you can see them in your user profile)
8
+                        Everyone starts out with 1 soft reserve per raid tier (you can see them in your user profile)
9 9
                     </li>
10 10
                     <li>
11 11
                         The tiers are: MC+Ony, BWL, ZG, AQ20, AQ40, Naxx
12 12
                     </li>
13 13
                     <li>
14
-                        You gain 1 reserve right for a raid you attend. 2 if you were benched. Rights are granted on raid start.
14
+                        You gain 1 reserve for a raid you attend. 2 if you were benched. New reserves are granted on
15
+                        raid start.
15 16
                     </li>
16 17
                     <li>
17
-                        When you sign up to a raid you can spend your reserve rights
18
+                        When you sign up to a raid you can spend your reserves on an item
18 19
                     </li>
19 20
                     <li>
20 21
                         Every week you can re-reserve the same item to build a streak on it
21 22
                     </li>
22 23
                     <li>
23
-                        If an item was not reserved at all, players may roll according to their priority <br />(e.g. Mage has +1, Warlock has +2. Nobody reserved, only Warlocks roll)
24
+                        If you want to change your reserve you can unsign and sign up again.
24 25
                     </li>
25
-                    <!--
26
-                    <li>
27
-                        Steaks are color coded. If this means anything will be decided by guild culture: 
28
-                        <span style="color: #ff8000">[+ 10]</span>
29
-                        <span style="color: #a335ee">[9. 8]</span>
30
-                        <span style="color: #0070dd">[7, 6]</span>
31
-                        <span style="color: #1eff00">[5, 4]</span>
32
-                        <span style="color: #ffffff">[3, 2]</span>
33
-                        <span style="color: #9d9d9d">[1]</span>
34
-                    </li>
35
-                    -->
36 26
                 </ul>
37
-                <br />
38
-                <h3>Specifics about streaks</h3>
27
+                <h3>Priorities</h3>
39 28
                 <ul>
40 29
                     <li>
41
-                        Some classes and races get an initial boost to specific reserves. The list is on the second tab. 
30
+                        Some classes and races may get an initial boost to specific streaks. The list is on the
31
+                        right
42 32
                     </li>
43 33
                     <li>
44
-                        Switching the selected item destroys previous streaks. (Streaks must be continued without switchup)    
34
+                        If an item was not reserved at all, players may roll according to their priority <br />(e.g.
35
+                        Mage
36
+                        has +1, Warlock has +2. Nobody reserved, only Warlocks roll)
45 37
                     </li>
38
+                </ul>
39
+                <br />
40
+                <h3>Streaks</h3>
41
+                <ul>
46 42
                     <li>
47
-                        If you have more than 1 softreserve you can reserve multiple different items. You may only continue one streak the following raid.
43
+                        Switching the selected item destroys previous streaks. (Streaks must be continued without
44
+                        switchup)
48 45
                     </li>
49 46
                     <li>
50
-                        If you have more than 1 softreserve you can reserve the same item several times to increase its streak.
47
+                        The softreserve counter, Reserves, and Streaks are tiers-specific and only count within
48
+                        their tier. This means for example BWL raids do in no way affect the AQ loot system.
51 49
                     </li>
50
+                </ul>
51
+                <h3>Pitfalls</h3>
52
+                <ul>
52 53
                     <li>
53
-                        The softreserve counter, Reserves, and Streaks are tiers-specific and only count within their tier.
54
+                        Canceling the signup refunds active reserves <b>as if the item was reserved using one
55
+                            reserve.</b> Try to keep this in mind if you were benched and reserve a fresh item.
54 56
                     </li>
55 57
                     <li>
56
-                        Canceling the signup refunds active reserves and continued streaks. Destroyed streaks cannot be recovered. 
58
+                        No reserve is a valid reserve. This means forgetting to continue your streak will set it
59
+                        zero.
57 60
                     </li>
58 61
                 </ul>
59
-            </nb-tab>
60
-            <nb-tab tabTitle="priorities">
62
+            </nb-card-body>
63
+        </nb-card>
64
+    </div>
65
+
66
+    <div class="col-12 col-lg-4">
67
+        <nb-card>
68
+            <nb-card-body>
69
+                <h3 *ngIf="(rules | json) == '{}'">
70
+                    No active priorities
71
+                </h3>
61 72
                 <nb-list>
62 73
                     <nb-list-item *ngFor="let item of rules | keyvalue">
63
-                        <table >
74
+                        <table>
64 75
                             <tr>
65 76
                                 <td colspan="2">
66 77
                                     <wowhead [item]="item.value[0]"></wowhead>
@@ -68,7 +79,8 @@
68 79
                             </tr>
69 80
                             <tr *ngFor="let rule of item.value">
70 81
                                 <td style="width: 250px;">
71
-                                    <span *ngIf="rule.modifier>0">+</span>{{rule.modifier}} {{rule.race}} <span [ngStyle]="{'color':rule.color}">{{rule.specname}} {{rule.class}}</span> 
82
+                                    <span *ngIf="rule.modifier>0">+</span>{{rule.modifier}} {{rule.race}} <span
83
+                                        [ngStyle]="{'color':rule.color}">{{rule.specname}} {{rule.class}}</span>
72 84
                                 </td>
73 85
                                 <td>
74 86
                                     <div style="color:white"> ({{rule.description}})</div>
@@ -77,8 +89,7 @@
77 89
                         </table>
78 90
                     </nb-list-item>
79 91
                 </nb-list>
80
-            </nb-tab>
81
-        </nb-tabset>
82
-    </nb-card-body>
83
-</nb-card>
84
-
92
+            </nb-card-body>
93
+        </nb-card>
94
+    </div>
95
+</div>

Carregando…
Cancelar
Salvar