silkedit 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/silkedit/cheats/merger.rb +1 -1
- data/lib/silkedit/config/silksong/zones.yaml +13 -0
- data/lib/silkedit/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a3c8b0ac9a8e357a55371222d33b96da76b94884a15f126d2ef36a02f9f683c
|
|
4
|
+
data.tar.gz: 7d651b39a72174ffbe683bc398e28e363671600819054095420b02be5452df26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2468a5b91665ae710266252fd71aa8071ef9c9616558ee14a497f3efa7bc89806dc49b42c18e3c16a5ac18b2e9c0a36488afbd3c26dfd472211823e2436438fc
|
|
7
|
+
data.tar.gz: 4bed491ba2c20b5038104089dc2c49ea985a81f706937051100f369a6518e284784a58eb44a2105c872d98f510a1ee7c55078c6bbd3960289a2da3f13333aaa6
|
|
@@ -51,7 +51,7 @@ module Silkedit::Cheat
|
|
|
51
51
|
end
|
|
52
52
|
# First determine the primary key(s) for the object
|
|
53
53
|
pkeys = []
|
|
54
|
-
[%w[Name], %w[
|
|
54
|
+
[%w[Name], %w[SceneName ID]].each do |pkey_arr|
|
|
55
55
|
pkeys = pkey_arr if pkey_arr.all? { |k| data.first.key?(k) || cheat.first.key?(k) }
|
|
56
56
|
end
|
|
57
57
|
cheat.each do |c|
|
|
@@ -1006,6 +1006,19 @@ memory:
|
|
|
1006
1006
|
soft_reqs: {}
|
|
1007
1007
|
hard_reqs: {}
|
|
1008
1008
|
min_act: 1
|
|
1009
|
+
silkheart_1:
|
|
1010
|
+
data:
|
|
1011
|
+
playerData:
|
|
1012
|
+
atBench: false
|
|
1013
|
+
respawnScene: Memory_Silk_Heart_BellBeast
|
|
1014
|
+
mapZone: 33
|
|
1015
|
+
extraRestZone: 0
|
|
1016
|
+
respawnMarkerName: Death Respawn Marker
|
|
1017
|
+
respawnType: 0
|
|
1018
|
+
hazardRespawnFacing: 0
|
|
1019
|
+
soft_reqs: {}
|
|
1020
|
+
hard_reqs: {}
|
|
1021
|
+
min_act: 1
|
|
1009
1022
|
mossgrove:
|
|
1010
1023
|
bonebottom:
|
|
1011
1024
|
data:
|
data/lib/silkedit/version.rb
CHANGED