Skip to content

Commit

Permalink
Add new renames
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFenX committed Sep 18, 2024
1 parent 5b0df0a commit 1312177
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/itemDiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def printrenames(ren_dict, title):
print('\nRenamed ' + title + ':')
for id in sorted(ren_dict):
couple = ren_dict[id]
print((" \"{0}\": \"{1}\",".format(couple[0].encode('utf-8'), couple[1].encode('utf-8'))))
print((" \"{0}\": \"{1}\",".format(couple[0], couple[1])))

groupcats = {}
def getgroupcat(grp):
Expand Down
24 changes: 24 additions & 0 deletions service/conversions/releaseSep2024.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
CONVERSIONS = {
# Renamed items
"Large Rudimentary Concussion Bomb I": "'Concussion' Compact Large Graviton Smartbomb",
"Small Rudimentary Concussion Bomb I": "'Concussion' Compact Small Graviton Smartbomb",
"Large 'Vehemence' Shockwave Charge": "'Vehemence' Compact Large EMP Smartbomb",
"Small 'Vehemence' Shockwave Charge": "'Vehemence' Compact Small EMP Smartbomb",
"Medium Rudimentary Concussion Bomb I": "'Concussion' Compact Medium Graviton Smartbomb",
"Medium 'Vehemence' Shockwave Charge": "'Vehemence' Compact Medium EMP Smartbomb",
"Small 'Notos' Explosive Charge I": "'Notos' Compact Small Proton Smartbomb",
"Medium 'Notos' Explosive Charge I": "'Notos' Compact Medium Proton Smartbomb",
"Large 'Notos' Explosive Charge I": "'Notos' Compact Large Proton Smartbomb",
"Small YF-12a Smartbomb": "'YF-12a' Compact Small Plasma Smartbomb",
"Medium YF-12a Smartbomb": "'YF-12a' Compact Medium Plasma Smartbomb",
"Large YF-12a Smartbomb": "'YF-12a' Compact Large Plasma Smartbomb",
"Small Degenerative Concussion Bomb I": "'Degenerative' Small Proton Smartbomb",
"Small Degenerative Concussion Bomb I Blueprint": "'Degenerative' Small Proton Smartbomb Blueprint",
"Medium Degenerative Concussion Bomb I": "'Dwindling' Medium Proton Smartbomb",
"Medium Degenerative Concussion Bomb I Blueprint": "'Dwindling' Medium Proton Smartbomb Blueprint",
"Large Degenerative Concussion Bomb I": "'Regressive' Large Proton Smartbomb",
"Large Degenerative Concussion Bomb I Blueprint": "'Regressive' Large Proton Smartbomb Blueprint",
"'Pike' Small EMP Smartbomb I": "'Pike' Small EMP Smartbomb",
"'Lance' Medium EMP Smartbomb I": "'Lance' Medium EMP Smartbomb",
"'Warhammer' Large EMP Smartbomb I": "'Warhammer' Large EMP Smartbomb",
}

0 comments on commit 1312177

Please sign in to comment.