culture type bonuses for production

This commit is contained in:
Azgaar 2021-08-06 21:06:49 +03:00
parent fe421bcd0d
commit a316ce692a
6 changed files with 542 additions and 80 deletions

View file

@ -0,0 +1,12 @@
'use strict';
window.Production = (function () {
const collectResources = () => {
const {burgs} = pack;
for (const burg of burgs) {
}
};
return {collectResources};
})();