Screeps/screeps.com/testing-sim/settings.js

27 lines
398 B
JavaScript

var settings = {
getCreepGoalAmount: function() {
var getCreepGoalAmountDict = {
harvester: 1,
upgrader: 0,
builder: 0
}
return getCreepGoalAmountDict;
},
getSpawnCreeps: function() {
return true
},
getColorScheme: function() {
let colors = {
primary: "#7b9ce6",
secondary: "f6e6bd",
tertiary: "cc2222",
};
return colors;
},
};
module.exports = settings;