Skip to content

Commit db863cf

Browse files
committed
update marvel rivals
1 parent 6d30e6f commit db863cf

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

worlds/keymasters_keep/games/marvel_rivals_game.py

+18-14
Original file line numberDiff line numberDiff line change
@@ -41,50 +41,54 @@ def optional_game_constraint_templates(self) -> List[GameObjectiveTemplate]:
4141
def game_objective_templates(self) -> List[GameObjectiveTemplate]:
4242
return [
4343
GameObjectiveTemplate(
44-
label="Win a Domination match on MAP as HERO",
44+
label="Win a match as HERO",
4545
data={
46-
"MAP": (self.maps_domination, 1),
4746
"HERO": (self.heroes, 1),
4847
},
4948
is_time_consuming=False,
5049
is_difficult=False,
51-
weight=4,
50+
weight=9,
51+
),
52+
GameObjectiveTemplate(
53+
label="Win a Domination match on MAP",
54+
data={
55+
"MAP": (self.maps_domination, 1),
56+
},
57+
is_time_consuming=False,
58+
is_difficult=False,
59+
weight=2,
5260
),
5361
GameObjectiveTemplate(
54-
label="Win a Convoy match on MAP as HERO",
62+
label="Win a Convoy match on MAP",
5563
data={
5664
"MAP": (self.maps_convoy, 1),
57-
"HERO": (self.heroes, 1),
5865
},
5966
is_time_consuming=False,
6067
is_difficult=False,
61-
weight=4,
68+
weight=2,
6269
),
6370
GameObjectiveTemplate(
64-
label="Win a Convergence match on MAP as HERO",
71+
label="Win a Convergence match on MAP",
6572
data={
6673
"MAP": (self.maps_convergence, 1),
67-
"HERO": (self.heroes, 1),
6874
},
6975
is_time_consuming=False,
7076
is_difficult=False,
71-
weight=4,
77+
weight=2,
7278
),
7379
GameObjectiveTemplate(
74-
label="Win a Conquest match on MAP as HERO",
80+
label="Win a Conquest match on MAP",
7581
data={
7682
"MAP": (self.maps_conquest, 1),
77-
"HERO": (self.heroes, 1),
7883
},
7984
is_time_consuming=False,
8085
is_difficult=False,
8186
weight=1,
8287
),
8388
GameObjectiveTemplate(
84-
label="Win a Doom Match on MAP as HERO",
89+
label="Win a Doom Match on MAP",
8590
data={
8691
"MAP": (self.maps_doom_match, 1),
87-
"HERO": (self.heroes, 1),
8892
},
8993
is_time_consuming=False,
9094
is_difficult=False,
@@ -101,7 +105,7 @@ def game_objective_templates(self) -> List[GameObjectiveTemplate]:
101105
weight=1,
102106
),
103107
GameObjectiveTemplate(
104-
label="Get a kill streak of at least COUNT as HERO",
108+
label="Get a K.O. streak of at least COUNT as HERO",
105109
data={
106110
"COUNT": (self.kill_streak_count_range, 1),
107111
"HERO": (self.heroes, 1),

0 commit comments

Comments
 (0)