mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2025-10-30 14:17:55 +00:00
* [Parse Error] - Rarity: Magic #285 (#315) * Add in fix Co-authored-by: @vagrant-soul * Adds regression tests * Features/uniqueRollsRewrite (#316) * update with new rolls system * More or less working now * adds fix for some stats from json having + * Features/jewels (#317) * Fix help text on jewels * Add fix for shock * [Not Recognized Modifier] - (most monster map modifiers) #314 * Features/showItemOnHover (#322) * Move row into own component * add tooltip on shift and hover * works MVP * style and fix affix strings * pseudo add * change tooltip method to more dynamic * Corrupted back to red * style updates * Add option for tooltip in settings * Features/relics (#323) * update en strings * translation client strings * Fix relic parse error * Tag text * enable relic filters by default * add spanish? (#324) Co-authored-by: @mgallego * Divider line shows when it shouldn't on non weapons or armour #325 * Features/newRunes (#326) * Rip out old rune code * final removed stuff? * change filter back to number * use new rune filter * done runes * Remove alpha * Features/runeSocketsPart4 (#327) * some stat change is working * iron working? * new betterer way? * DONE DONE DONE * add translation line * version bump
36 lines
1.5 KiB
Bash
36 lines
1.5 KiB
Bash
|
|
echo "Copying files from EXPORT/tables/English to data/en"
|
|
cp -R EXPORT/tables/English/* vendor/client/tables/en/
|
|
|
|
echo "Copying files from EXPORT/tables/Russian to data/ru"
|
|
cp -R EXPORT/tables/Russian/* vendor/client/tables/ru/
|
|
|
|
echo "Copying files from EXPORT/tables/Korean to data/ko"
|
|
cp -R EXPORT/tables/Korean/* vendor/client/tables/ko/
|
|
|
|
echo "Copying files from EXPORT/tables/Traditional Chinese to data/cmn-Hant"
|
|
cp -R EXPORT/tables/Traditional\ Chinese/* vendor/client/tables/cmn-Hant/
|
|
|
|
echo "Copying files from EXPORT/tables/Japanese to data/ja"
|
|
cp -R EXPORT/tables/Japanese/* vendor/client/tables/ja/
|
|
|
|
echo "Copying files from EXPORT/tables/German to data/de"
|
|
cp -R EXPORT/tables/German/* vendor/client/tables/de/
|
|
|
|
echo "Copying files from EXPORT/tables/Spanish to data/es"
|
|
cp -R EXPORT/tables/Spanish/* vendor/client/tables/es/
|
|
|
|
echo "Copying not generated files from english to other languages"
|
|
|
|
# Copy without overwriting English -> data/ru
|
|
cp -n vendor/client/tables/en/* vendor/client/tables/ru/
|
|
cp -n vendor/client/tables/en/* vendor/client/tables/ko/
|
|
cp -n vendor/client/tables/en/* vendor/client/tables/cmn-Hant/
|
|
cp -n vendor/client/tables/en/* vendor/client/tables/ja/
|
|
cp -n vendor/client/tables/en/* vendor/client/tables/de/
|
|
cp -n vendor/client/tables/en/* vendor/client/tables/es/
|
|
|
|
# Copy description files from EXPORT/files to client/descriptions
|
|
echo "Copying description files from EXPORT/files to client/descriptions"
|
|
cp -R EXPORT/files/* vendor/client/descriptions/
|