diff options
author | Fedja Beader <fedja@protonmail.ch> | 2025-01-11 23:31:41 +0100 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-01-11 23:34:25 +0100 |
commit | 1f2321a83d56ceeb271df01c31a3ce3c884ac443 (patch) | |
tree | 997e93fb4238f31ddb2152c5e07c000d7322f161 /maps/016-1.tmx | |
parent | c425b1e915e641b9e97695eefdf29dade2150ac3 (diff) | |
download | clientdata-deduplicate_spawners.tar.gz clientdata-deduplicate_spawners.tar.bz2 clientdata-deduplicate_spawners.tar.xz clientdata-deduplicate_spawners.zip |
Deduplicate remaining duplicate spawners I could finddeduplicate_spawners
Utilities:
cat npc/*/_mobs.txt | grep monster | sort | uniq -c | grep -v ' 1 '
cat maps/031-3.tmx | grep 'object id=' | cut -d' ' -f 5- | sort | uniq
-c | grep -v ' 1'
NB: 016-1 has another overlapping MauvePlant spawner that has
unconfigured delay (thus is not a direct duplicate). As changing it
would change game mechanis, it is out of scope for this commit.
NB: One of the 031-1 Bat dupe was probably added in
ff1acc14dcc3683aad70907c3748f. I could not extract a reason,
and did not look into who/what/why added the other duplicates.
Diffstat (limited to 'maps/016-1.tmx')
-rw-r--r-- | maps/016-1.tmx | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/maps/016-1.tmx b/maps/016-1.tmx index b2cb0802..4c006e56 100644 --- a/maps/016-1.tmx +++ b/maps/016-1.tmx @@ -694,7 +694,7 @@ <object id="9" name="MauvePlant" type="spawn" x="0" y="0"> <properties> <property name="death" value="180000"/> - <property name="max_beings" value="4"/> + <property name="max_beings" value="8"/> <property name="monster_id" value="27"/> <property name="spawn" value="270000"/> </properties> @@ -707,14 +707,6 @@ <property name="spawn" value="0"/> </properties> </object> - <object id="11" name="MauvePlant" type="spawn" x="0" y="0"> - <properties> - <property name="death" value="180000"/> - <property name="max_beings" value="4"/> - <property name="monster_id" value="27"/> - <property name="spawn" value="270000"/> - </properties> - </object> <object id="13" name="Silkworm" type="spawn" x="0" y="0"> <properties> <property name="death" value="7000"/> |