Skip to content

Commit 99c3f33

Browse files
Shinko Ultimate: decrease abilitie duration (#1164)
* turn on shinko * Decrease ulti time 550ms>400ms, turn off Shinko * solve conflicts * solve conflicts * update
1 parent 1356056 commit 99c3f33

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

priv/repo/seeds.exs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ skills = [
10471047
"attack_type" => "melee",
10481048
"cooldown_mechanism" => "time",
10491049
"cooldown_ms" => 10000,
1050-
"execution_duration_ms" => 525,
1050+
"execution_duration_ms" => 400,
10511051
"activation_delay_ms" => 0,
10521052
"is_passive" => false,
10531053
"autoaim" => false,
@@ -1375,6 +1375,12 @@ otix_basic_params = %{
13751375
character_id: Enum.find(characters, fn c -> c.name == "otix" end).id
13761376
}
13771377

1378+
shinko_basic_params = %{
1379+
is_default: true,
1380+
name: "Basic",
1381+
character_id: Enum.find(characters, fn c -> c.name == "shinko" end).id
1382+
}
1383+
13781384
# Insert skins
13791385
[
13801386
h4ck_fenix_params,
@@ -1385,7 +1391,8 @@ otix_basic_params = %{
13851391
kenzu_basic_params,
13861392
otix_corrupt_underground,
13871393
otix_basic_params,
1388-
muflus_basic_params
1394+
muflus_basic_params,
1395+
shinko_basic_params
13891396
]
13901397
|> Enum.each(fn skin_params -> Characters.insert_skin(skin_params) end)
13911398

0 commit comments

Comments
 (0)