Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.28 KB | None | 0 0
  1. package com.minecolonies.api.configuration;
  2.  
  3. import com.minecolonies.api.util.constant.Constants;
  4. import net.minecraftforge.common.config.Config;
  5.  
  6. import static com.minecolonies.api.util.constant.Constants.CITIZEN_RESPAWN_INTERVAL_MAX;
  7. import static com.minecolonies.api.util.constant.Constants.CITIZEN_RESPAWN_INTERVAL_MIN;
  8.  
  9. @Config(modid = Constants.MOD_ID)
  10. public class Configurations
  11. {
  12. public static class Gameplay
  13. {
  14. @Config.Comment("Should builder place construction tape?")
  15. public static boolean builderPlaceConstructionTape = true;
  16.  
  17. @Config.Comment("Colony size (radius)")
  18. public static int workingRangeTownHall = 100;
  19.  
  20. @Config.Comment("Padding between colonies")
  21. public static int townHallPadding = 20;
  22.  
  23. @Config.Comment("Should supply chests be craftable on this server?")
  24. public static boolean supplyChests = true;
  25.  
  26. @Config.Comment("Should players be able to place an infinite amount of supplychests?")
  27. public static boolean allowInfiniteSupplyChests = false;
  28.  
  29. @Config.RangeInt(min = (CITIZEN_RESPAWN_INTERVAL_MIN), max = CITIZEN_RESPAWN_INTERVAL_MAX)
  30. @Config.Comment("Average citizen respawn interval (in ticks)")
  31. public static int citizenRespawnInterval = 240;
  32.  
  33. @Config.Comment("Should builder and miner build without resources? (this also turns off what they produce)")
  34. public static boolean builderInfiniteResources = false;
  35.  
  36. @Config.Comment("Should there be at max 1 warehouse per colony?")
  37. public static boolean limitToOneWareHousePerColony = true;
  38.  
  39. @Config.Comment("Delay after each block placement (Increasing it, increases the delay)")
  40. public static int builderBuildBlockDelay = 15;
  41.  
  42. @Config.Comment("Delay modifier to mine a block (Decreasing it, decreases the delay)")
  43. public static int blockMiningDelayModifier = 500;
  44.  
  45. @Config.Comment("Should worker work during the rain?")
  46. public static boolean workersAlwaysWorkInRain = false;
  47.  
  48. @Config.Comment("Should the colony protection be enabled?")
  49. public static boolean enableColonyProtection = true;
  50.  
  51. @Config.Comment("Independend from the colony protection, should explosions be turned off?")
  52. public static boolean turnOffExplosionsInColonies = true;
  53.  
  54. /* schematics usage */
  55. @Config.Comment("Should the default schematics be ignored (from the jar)?")
  56. public static boolean ignoreSchematicsFromJar = false;
  57.  
  58. @Config.Comment("Should player made schematics be allowed")
  59. public static boolean allowPlayerSchematics = false;
  60.  
  61. @Config.Comment("Max amount of schematics to be cached on the server")
  62. public static int maxCachedSchematics = 100;
  63.  
  64. /* Command configs */
  65.  
  66. @Config.Comment("Time until a next teleport can be executed (in seconds)")
  67. public static int teleportBuffer = 120;
  68.  
  69. @Config.Comment("Which level counts as op level on the server")
  70. public static int opLevelForServer = 3;
  71.  
  72. @Config.Comment("Should the player be allowed to use the '/mc rtp' command?")
  73. public static boolean canPlayerUseRTPCommand = true;
  74.  
  75. @Config.Comment("Should the player be allowed to use the '/mc colony teleport' command?")
  76. public static boolean canPlayerUseColonyTPCommand = false;
  77.  
  78. @Config.Comment("Should the player be allowed to use the '/mc home' command?")
  79. public static boolean canPlayerUseHomeTPCommand = true;
  80.  
  81. @Config.Comment("Should the player be allowed to use the '/mc citizens info' command?")
  82. public static boolean canPlayerUseCitizenInfoCommand = true;
  83.  
  84. @Config.Comment("Should the player be allowed to use the '/mc citizens list' command?")
  85. public static boolean canPlayerUseListCitizensCommand = true;
  86.  
  87. @Config.Comment("Should the player be allowed to use the '/mc citizens respawn' command?")
  88. public static boolean canPlayerRespawnCitizensCommand = true;
  89.  
  90. @Config.Comment("Should the player be allowed to use the '/mc colony info' command?")
  91. public static boolean canPlayerUseShowColonyInfoCommand = true;
  92.  
  93. @Config.Comment("Should the player be allowed to use the '/mc citizens kill' command?")
  94. public static boolean canPlayerUseKillCitizensCommand = true;
  95.  
  96. @Config.Comment("Should the player be allowed to use the '/mc colony addOfficer' command?")
  97. public static boolean canPlayerUseAddOfficerCommand = true;
  98.  
  99. @Config.Comment("Should the player be allowed to use the '/mc colony delete' command?")
  100. public static boolean canPlayerUseDeleteColonyCommand = true;
  101.  
  102. @Config.Comment("Should the player be allowed to use the '/mc colony refresh' command?")
  103. public static boolean canPlayerUseRefreshColonyCommand = false;
  104.  
  105. @Config.Comment("Should the player be allowed to use the '/mc backup' command?")
  106. public static boolean canPlayerUseBackupCommand = false;
  107.  
  108. /* Colony TP configs */
  109. @Config.Comment("Amount of attemps to find a save rtp")
  110. public static int numberOfAttemptsForSafeTP = 4;
  111.  
  112. @Config.Comment("Max distance from world spawn")
  113. public static int maxDistanceFromWorldSpawn = 8000;
  114.  
  115. @Config.Comment("Min distance from world spawn")
  116. public static int minDistanceFromWorldSpawn = 512;
  117.  
  118. @Config.Comment("Should the dman create resources out of hot air (Not implemented)")
  119. public static boolean deliverymanInfiniteResources = false;
  120.  
  121. @Config.Comment("Amount of initial citizens")
  122. public static int maxCitizens = 4;
  123.  
  124. @Config.Comment("Should citizen name tags be rendered?")
  125. public static boolean alwaysRenderNameTag = true;
  126.  
  127. @Config.Comment("Amount of blocks the builder checks (to decrease lag by builder)")
  128. public static int maxBlocksCheckedByBuilder = 1000;
  129.  
  130. @Config.Comment("Chat frequency of worker requests")
  131. public static int chatFrequency = 30;
  132.  
  133. @Config.Comment("Should in development features be enabled (might be buggy)")
  134. public static boolean enableInDevelopmentFeatures = false;
  135.  
  136. @Config.Comment("Blocks players should be able to interact with in any colony (Ex vending machines)")
  137. public static String[] freeToInteractBlocks = new String[]
  138. {
  139. "block:dirt",
  140. "0 0 0"
  141. };
  142. }
  143.  
  144. public static class Pathfinding
  145. {
  146. @Config.Comment("Draw pathfinding paths (might be laggy)")
  147. public static boolean pathfindingDebugDraw = false;
  148.  
  149. @Config.Comment("Verbosity of pathfinding")
  150. public static int pathfindingDebugVerbosity = 0;
  151.  
  152. @Config.Comment("Amount of additional threads to be used for pathfinding")
  153. public static int pathfindingMaxThreadCount = 2;
  154. }
  155.  
  156. public static class Names
  157. {
  158. @Config.Comment("Male first names to be used for colonists")
  159. public static String[] maleFirstNames = new String[]
  160. {
  161. "Aaron",
  162. "Adam",
  163. "Adrian",
  164. "Aidan",
  165. "Aiden",
  166. "Alain",
  167. "Alex",
  168. "Alexander",
  169. "Andrew",
  170. "Anthony",
  171. "Asher",
  172. "Austin",
  173. "Benjamin",
  174. "Brayden",
  175. "Bryson",
  176. "Caden",
  177. "Caleb",
  178. "Callum",
  179. "Camden",
  180. "Cameron",
  181. "Carson",
  182. "Carter",
  183. "Charles",
  184. "Charlie",
  185. "Chase",
  186. "Christian",
  187. "Christopher",
  188. "Cole",
  189. "Colton",
  190. "Connor",
  191. "Cooper",
  192. "Curtis",
  193. "Cyrille",
  194. "Damian",
  195. "Daniel",
  196. "David",
  197. "Declan",
  198. "Diego",
  199. "Diogo",
  200. "Dominic",
  201. "Duarte",
  202. "Dylan",
  203. "Easton",
  204. "Eli",
  205. "Elias",
  206. "Elijah",
  207. "Elliot",
  208. "Ethan",
  209. "Evan",
  210. "Ezra",
  211. "Félix",
  212. "Gabriel",
  213. "Gavin",
  214. "George",
  215. "Grayson",
  216. "Guewen",
  217. "Harrison",
  218. "Henrik",
  219. "Henry",
  220. "Houston",
  221. "Hudson",
  222. "Hugo",
  223. "Hunter",
  224. "Ian",
  225. "Isaac",
  226. "Isaiah",
  227. "Jack",
  228. "Jackson",
  229. "Jacob",
  230. "James",
  231. "Jason",
  232. "Jayce",
  233. "Jayden",
  234. "Jeremiah",
  235. "Jim",
  236. "Joel",
  237. "John",
  238. "Jonathan",
  239. "Jordan",
  240. "Joseph",
  241. "Joshua",
  242. "Josiah",
  243. "Julian",
  244. "Kai",
  245. "Karsen",
  246. "Kevin",
  247. "Kian",
  248. "Landon",
  249. "Leo",
  250. "Levi",
  251. "Liam",
  252. "Lincoln",
  253. "Logan",
  254. "Luís",
  255. "Lucas",
  256. "Luke",
  257. "Mark",
  258. "Mason",
  259. "Mateo",
  260. "Matthew",
  261. "Max",
  262. "Michael",
  263. "Miles",
  264. "Muhammad",
  265. "Nathan",
  266. "Nathanael",
  267. "Nicholas",
  268. "Noah",
  269. "Nolan",
  270. "Oliver",
  271. "Oscar",
  272. "Owen",
  273. "Parker",
  274. "Paul",
  275. "Peter",
  276. "Philibert",
  277. "Rénald",
  278. "Ray",
  279. "Richard",
  280. "Robert",
  281. "Rory",
  282. "Roxan",
  283. "Ryan",
  284. "Samuel",
  285. "Sebastian",
  286. "Steven",
  287. "Thaddee",
  288. "Thomas",
  289. "Tiago",
  290. "Tristan",
  291. "Tyler",
  292. "William",
  293. "Wyatt",
  294. "Xavier",
  295. "Zachary",
  296. "Zane",
  297. "Abraham",
  298. "Allen",
  299. "Ambrose",
  300. "Arthur",
  301. "Avery",
  302. "Barnaby",
  303. "Bartholomew",
  304. "Benedict",
  305. "Bernard",
  306. "Cuthbert",
  307. "Edmund",
  308. "Edward",
  309. "Francis",
  310. "Fulke",
  311. "Geoffrey",
  312. "Gerard",
  313. "Gilbert",
  314. "Giles",
  315. "Gregory",
  316. "Hugh",
  317. "Humphrey",
  318. "Jerome",
  319. "Lancelot",
  320. "Lawrence",
  321. "Leonard",
  322. "Martin",
  323. "Mathias",
  324. "Nathaniel",
  325. "Oswyn",
  326. "Philip",
  327. "Piers",
  328. "Ralph",
  329. "Reynold",
  330. "Roger",
  331. "Rowland",
  332. "Simon",
  333. "Solomon",
  334. "Stephen",
  335. "Tobias",
  336. "Walter",
  337. "William"
  338. };
  339.  
  340. @Config.Comment("Female first names to be used for colonists")
  341. public static String[] femaleFirstNames = new String[]
  342. {
  343. "Aaliyah",
  344. "Abigail",
  345. "Adalyn",
  346. "Addison",
  347. "Adeline",
  348. "Alaina",
  349. "Alexandra",
  350. "Alice",
  351. "Allison",
  352. "Alyssa",
  353. "Amelia",
  354. "Anastasia",
  355. "Anna",
  356. "Annabelle",
  357. "Aria",
  358. "Arianna",
  359. "Aubrey",
  360. "Audrey",
  361. "Aurora",
  362. "Ava",
  363. "Bailey",
  364. "Barbara",
  365. "Bella",
  366. "Betty",
  367. "Brooklyn",
  368. "Callie",
  369. "Camilla",
  370. "Caroline",
  371. "Charlotte",
  372. "Chloe",
  373. "Claire",
  374. "Cora",
  375. "Daniela",
  376. "Diana",
  377. "Dorothy",
  378. "Eleanor",
  379. "Elena",
  380. "Eliana",
  381. "Elizabeth",
  382. "Ella",
  383. "Ellie",
  384. "Emilia",
  385. "Emilienne",
  386. "Emily",
  387. "Emma",
  388. "Eva",
  389. "Evelyn",
  390. "Everly",
  391. "Filipa",
  392. "Frédérique",
  393. "Gabriella",
  394. "Gianna",
  395. "Grace",
  396. "Hailey",
  397. "Hannah",
  398. "Harper",
  399. "Haylie",
  400. "Hazel",
  401. "Helen",
  402. "Isabella",
  403. "Isabelle",
  404. "Jade",
  405. "Jasmine",
  406. "Jennifer",
  407. "Jocelyn",
  408. "Jordyn",
  409. "Julia",
  410. "Juliana",
  411. "Julienne",
  412. "Karen",
  413. "Katia",
  414. "Kaylee",
  415. "Keira",
  416. "Kennedy",
  417. "Kinsley",
  418. "Kylie",
  419. "Layla",
  420. "Leah",
  421. "Lena",
  422. "Lila",
  423. "Liliana",
  424. "Lillian",
  425. "Lily",
  426. "Linda",
  427. "Lisa",
  428. "London",
  429. "Lorena",
  430. "Luana",
  431. "Lucy",
  432. "Luna",
  433. "Mélanie",
  434. "Mackenzie",
  435. "Madelyn",
  436. "Madison",
  437. "Maisy",
  438. "Makayla",
  439. "Margaret",
  440. "Maria",
  441. "Marine",
  442. "Mary",
  443. "Maya",
  444. "Melanie",
  445. "Mia",
  446. "Mila",
  447. "Nancy",
  448. "Natalie",
  449. "Natasha",
  450. "Niamh",
  451. "Nora",
  452. "Odile",
  453. "Olivia",
  454. "Paisley",
  455. "Paloma",
  456. "Paola",
  457. "Patricia",
  458. "Penelope",
  459. "Peyton",
  460. "Prudence",
  461. "Reagan",
  462. "Riley",
  463. "Sadie",
  464. "Samantha",
  465. "Sarah",
  466. "Savannah",
  467. "Scarlett",
  468. "Skyler",
  469. "Sophia",
  470. "Sophie",
  471. "Stella",
  472. "Susan",
  473. "Vérane",
  474. "Vera",
  475. "Victoria",
  476. "Violet",
  477. "Vivian",
  478. "Zoe",
  479. "Agnes",
  480. "Amy",
  481. "Anne",
  482. "Avis",
  483. "Beatrice",
  484. "Blanche",
  485. "Bridget",
  486. "Catherine",
  487. "Cecily",
  488. "Charity",
  489. "Christina",
  490. "Clemence",
  491. "Constance",
  492. "Denise",
  493. "Edith",
  494. "Elinor",
  495. "Ellen",
  496. "Florence",
  497. "Fortune",
  498. "Frances",
  499. "Frideswide",
  500. "Gillian",
  501. "Isabel",
  502. "Jane",
  503. "Janet",
  504. "Joan",
  505. "Josian",
  506. "Joyce",
  507. "Judith",
  508. "Katherine",
  509. "Lettice",
  510. "Mabel",
  511. "Margery",
  512. "Marion",
  513. "Martha",
  514. "Maud",
  515. "Mildred",
  516. "Millicent",
  517. "Parnell",
  518. "Philippa",
  519. "Rachel",
  520. "Rebecca",
  521. "Rose",
  522. "Ruth",
  523. "Susanna",
  524. "Sybil",
  525. "Thomasin",
  526. "Ursula",
  527. "Wilmot",
  528. "Winifred"
  529. };
  530.  
  531. @Config.Comment("Last names to be used for colonists")
  532. public static String[] lastNames = new String[]
  533. {
  534. "Brown",
  535. "Clark",
  536. "Fletcher",
  537. "Harris",
  538. "Johnson",
  539. "Jones",
  540. "Mardle",
  541. "Miller",
  542. "Robinson",
  543. "Smith",
  544. "Taylor",
  545. "Wallgreen",
  546. "White",
  547. "Williams",
  548. "Wilson",
  549. "Abell",
  550. "Ackworth",
  551. "Adams",
  552. "Addicock",
  553. "Alban",
  554. "Aldebourne",
  555. "Alfray",
  556. "Alicock",
  557. "Allard",
  558. "Allington",
  559. "Amberden",
  560. "Amcotts",
  561. "Amondsham",
  562. "Andrews",
  563. "Annesley",
  564. "Ansty",
  565. "Archer",
  566. "Ardall",
  567. "Ardern",
  568. "Argentein",
  569. "Arnold",
  570. "Asger",
  571. "Ashby",
  572. "Ashcombe",
  573. "Ashenhurst",
  574. "Ashton",
  575. "Askew",
  576. "Asplin",
  577. "Astley",
  578. "Atherton",
  579. "Atkinson",
  580. "Atlee",
  581. "Attilburgh",
  582. "Audeley",
  583. "Audlington",
  584. "Ayde",
  585. "Ayleward",
  586. "Aylmer",
  587. "Aynesworth",
  588. "Babham",
  589. "Babington",
  590. "Badby",
  591. "Baker",
  592. "Balam",
  593. "Baldwin",
  594. "Ballard",
  595. "Ballett",
  596. "Bammard",
  597. "Barber",
  598. "Bardolf",
  599. "Barefoot",
  600. "Barker",
  601. "Barnes",
  602. "Barre",
  603. "Barrentine",
  604. "Barrett",
  605. "Barstaple",
  606. "Bartelot",
  607. "Barton",
  608. "Basset",
  609. "Bathurst",
  610. "Battersby",
  611. "Battle",
  612. "Baynton",
  613. "Beauchamp",
  614. "Cheddar",
  615. "Chelsey",
  616. "Chernock",
  617. "Chester",
  618. "Chetwood",
  619. "Cheverell",
  620. "Cheyne",
  621. "Chichester",
  622. "Child",
  623. "Chilton",
  624. "Chowne",
  625. "Chudderley",
  626. "Church",
  627. "Churmond",
  628. "Clavell",
  629. "Claybrook",
  630. "Clement",
  631. "Clerk",
  632. "Clifford",
  633. "Clifton",
  634. "Clitherow",
  635. "Clopton",
  636. "Cobb",
  637. "Cobham",
  638. "Cobley",
  639. "Cockayne",
  640. "Cod",
  641. "Coddington",
  642. "Coffin",
  643. "Coggshall",
  644. "Colby",
  645. "Colkins",
  646. "Collard",
  647. "Colmer",
  648. "Colt",
  649. "Colthurst",
  650. "Complin",
  651. "Compton",
  652. "Conquest",
  653. "Cooke",
  654. "Coorthopp",
  655. "Coppinger",
  656. "Corbett",
  657. "Corby",
  658. "Cossington",
  659. "Cosworth",
  660. "Cotton",
  661. "Courtenay",
  662. "Covert",
  663. "Cowill",
  664. "Cox",
  665. "Crane",
  666. "Cranford",
  667. "Crawley",
  668. "Cressy",
  669. "Crickett",
  670. "Cripps",
  671. "Crisp",
  672. "Cristemas",
  673. "Crocker",
  674. "Crugg",
  675. "Cuddon",
  676. "Culpepper",
  677. "Cunningham",
  678. "Curzon",
  679. "Dagworth",
  680. "Gardiner",
  681. "Gare",
  682. "Garnis",
  683. "Garrard",
  684. "Garret",
  685. "Gascoigne",
  686. "Gasper",
  687. "Gavell",
  688. "Gedding",
  689. "Gerville",
  690. "Geste",
  691. "Gibbs",
  692. "Gifford",
  693. "Gill",
  694. "Ginter",
  695. "Gisborne",
  696. "Gittens",
  697. "Glennon",
  698. "Glover",
  699. "Gobberd",
  700. "Goddam",
  701. "Godfrey",
  702. "Gold",
  703. "Golding",
  704. "Goldwell",
  705. "Gomershall",
  706. "Gomfrey",
  707. "Gonson",
  708. "Good",
  709. "Goodenouth",
  710. "Gooder",
  711. "Goodluck",
  712. "Goodnestone",
  713. "Goodrick",
  714. "Goodrington",
  715. "Goodwin",
  716. "Goring",
  717. "Gorney",
  718. "Gorst",
  719. "Gosebourne",
  720. "Grafton",
  721. "Gray",
  722. "Greene",
  723. "Greenway",
  724. "Grenefeld",
  725. "Greville",
  726. "Grey",
  727. "Grimbald",
  728. "Grobbam",
  729. "Grofhurst",
  730. "Groston",
  731. "Grove",
  732. "Guildford",
  733. "Hackman",
  734. "Haddock",
  735. "Haddon",
  736. "Hadresham",
  737. "Hakebourne",
  738. "Hale",
  739. "Hall",
  740. "Halley",
  741. "Hambard",
  742. "Hammer",
  743. "Hammond",
  744. "Hampden"
  745. };
  746. }
  747. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement