This repository has been archived by the owner on Oct 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicdetails.json
1959 lines (1959 loc) · 118 KB
/
icdetails.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"facilities": {
"tree_farm": {
"consumes": null,
"produces": {
"wood": 2
},
"speed": 5
},
"oil_well": {
"consumes": null,
"produces": {
"crude_oil": 10
},
"speed": 10
},
"coal_mine": {
"consumes": null,
"produces": {
"coal": 8
},
"speed": 10
},
"iron_mine": {
"consumes": null,
"produces": {
"iron": 1
},
"speed": 20
},
"oil_refinery": {
"consumes": {
"crude_oil": 5
},
"produces": {
"gasoline": 1
},
"speed": 30
},
"steel_mill": {
"consumes": {
"iron": 1,
"coal": 4
},
"produces": {
"steel": 1
},
"speed": 35
},
"bauxite_mine": {
"consumes": null,
"produces": {
"bauxite": 40
},
"speed": 25
},
"rubber_factory": {
"consumes": {
"crude_oil": 8
},
"produces": {
"rubber": 1
},
"speed": 40
},
"gas_station": {
"consumes": {
"gasoline": 2
},
"produces": {
"money": 15
},
"speed": 15
},
"furniture_factory": {
"consumes": {
"wood": 10
},
"produces": {
"furniture": 1
},
"speed": 240
},
"aluminum_factory": {
"consumes": {
"bauxite": 10
},
"produces": {
"aluminum": 25
},
"speed": 25
},
"led_factory": {
"consumes": {
"silicon": 2
},
"produces": {
"led": 40
},
"speed": 50
},
"polyester_factory": {
"consumes": {
"crude_oil": 110
},
"produces": {
"polyester": 14
},
"speed": 25
},
"silicon_mine": {
"consumes": null,
"produces": {
"silicon": 4
},
"speed": 260
},
"bicycle_factory": {
"consumes": {
"aluminum": 24,
"rubber": 8
},
"produces": {
"bicycle": 1
},
"speed": 90
},
"gold_mine": {
"consumes": null,
"produces": {
"gold": 4
},
"speed": 300
},
"lamp_factory": {
"consumes": {
"plastic": 6,
"led": 12
},
"produces": {
"lamp": 2
},
"speed": 15
},
"cotton_farm": {
"consumes": null,
"produces": {
"cotton": 4
},
"speed": 20
},
"plastic_factory": {
"consumes": {
"crude_oil": 20
},
"produces": {
"plastic": 200
},
"speed": 25
},
"ccd_factory": {
"consumes": {
"silicon": 6
},
"produces": {
"ccd": 1
},
"speed": 65
},
"glass_factory": {
"consumes": {
"silicon": 2
},
"produces": {
"glass": 8
},
"speed": 35
},
"cpu_factory": {
"consumes": {
"gold": 1,
"silicon": 8
},
"produces": {
"cpu": 5
},
"speed": 120
},
"clothing_factory": {
"consumes": {
"polyester": 20,
"cotton": 10
},
"produces": {
"clothing": 10
},
"speed": 40
},
"cell_phone_factory": {
"consumes": {
"plastic": 5,
"glass": 1,
"cpu": 1
},
"produces": {
"cell_phone": 1
},
"speed": 45
},
"coal_power_plant": {
"consumes": {
"coal": 50
},
"produces": {
"energy": 35
},
"speed": 30
},
"laptop_factory": {
"consumes": {
"plastic": 8,
"glass": 2,
"cpu": 1
},
"produces": {
"laptop": 1
},
"speed": 90
},
"research_chemical_factory": {
"consumes": {
"crude_oil": 10
},
"produces": {
"research_chemical": 4
},
"speed": 30
},
"solar_power_plant": {
"consumes": null,
"produces": {
"energy": 60
},
"speed": 90
},
"digital_camera_factory": {
"consumes": {
"ccd": 1,
"plastic": 100
},
"produces": {
"digital_camera": 1
},
"speed": 80
},
"television_factory": {
"consumes": {
"plastic": 36,
"glass": 12,
"cpu": 1
},
"produces": {
"television": 1
},
"speed": 180
},
"gasoline_engine_factory": {
"consumes": {
"steel": 15,
"rubber": 6
},
"produces": {
"gasoline_engine": 1
},
"speed": 260
},
"rocket_fuel_factory": {
"consumes": {
"crude_oil": 500,
"research_chemical": 1,
"energy": 10
},
"produces": {
"rocket_fuel": 3
},
"speed": 900
},
"car_factory": {
"consumes": {
"gasoline_engine": 1,
"plastic": 1000,
"glass": 28,
"steel": 40,
"cpu": 1,
"rubber": 30
},
"produces": {
"car": 1
},
"speed": 600
},
"space_station_parts_factory": {
"consumes": {
"plastic": 5000,
"glass": 100,
"television": 2,
"aluminum": 5000,
"cpu": 10,
"digital_camera": 1,
"rubber": 1000
},
"produces": {
"space_station_parts": 1
},
"speed": 300
},
"prescription_drug_factory": {
"consumes": {
"research_chemical": 1
},
"produces": {
"prescription_drug": 2
},
"speed": 50
},
"airport": {
"consumes": {
"jet_fuel": 10,
"energy": 25
},
"produces": {
"money": 1000
},
"speed": [20, 60]
},
"truck_factory": {
"consumes": {
"glass": 100,
"rubber": 1000,
"plastic": 8000,
"gasoline_engine": 1,
"cpu": 10,
"steel": 1000
},
"produces": {
"truck": 1
},
"speed": 1800
}
},
"assets": {
"crude_oil": 0.1,
"bauxite": 0.1,
"wood": 0.15,
"coal": 0.2,
"plastic": 0.5,
"led": 2,
"iron": 2,
"polyester": 2,
"aluminum": 4,
"gasoline": 5,
"cotton": 5,
"jet_fuel": 5,
"rubber": 7,
"steel": 8,
"energy": 10,
"silicon": 25,
"lamp": 25,
"glass": 30,
"clothing": 30,
"furniture": 60,
"gold": 60,
"rocket_fuel": 100,
"research_chemical": 100,
"cpu": 200,
"bicycle": 240,
"prescription_drug": 500,
"ccd": 500,
"cell_phone": 800,
"laptop": 2000,
"digital_camera": 2000,
"television": 4000,
"gasoline_engine": 5000,
"car": 20000,
"truck": 80000,
"rocket": 10000000,
"space_station_parts": 50000,
"galactic_coordinates_i": 1000000,
"galactic_coordinates_ii": 1000000,
"galactic_coordinates_iii": 1000000,
"galactic_coordinates_iv": 1000000,
"galactic_coordinates_v": 1000000,
"relic_of_haste": 10000000,
"relic_of_prestige": 10000000,
"relic_of_efficiency": 10000000,
"relic_of_knowledge": 10000000
},
"info": {
"assets": {
"land": {
"icinfo": "So much room for facilities!",
"market": false,
"retail": false,
"icwiki": "Land is a special kind of asset that determines how many facilities you can build. Each land you own will allow you to build one facility. The price of land goes up the more land you already have. You can buy land the same way you buy other assets, but land cannot be sold.\nNote: Land can be removed from a region, using $$liquidate, which will sell everything in the region. Land and Factories are sold for 40% of what you paid. Assets are sold at the current sell price value of the NPC market.",
"wikipedia": "Land is the solid surface of the Earth that is not permanently covered by water.The vast majority of human activity throughout history has occurred in land areas that support agriculture, habitat, and various natural resources.",
"icp": "Land is important for IdleCorp, also important for real life."
},
"scrap": {
"icinfo": "One man's scrap is another man's XP.",
"market": true,
"retail": false,
"icwiki": "Scrap is an asset used to Level your Factories, Mines, and Facilities",
"wikipedia": "Scrap consists of recyclable materials left over from product manufacturing and consumption, such as parts of vehicles, building supplies, and surplus materials. Unlike waste, scrap has monetary value, especially recovered metals, and non-metallic materials are also recovered for recycling.",
"icp": "XP is used to produce more asset+ when not facility+, that;s not really a good news if don't want primary resourse become asset+ because it will make facility fewer resourse comes. In real life, it probably can be recycled to become other things."
},
"crude_oil": {
"icinfo": "Full of useful organic compounds.",
"market": true,
"retail": false,
"icwiki": "Crude oil is an asset extracted from the region using Oil wells. The oil can be processed into several other commodities. Crude oil is a naturally occurring, yellowish-black liquid found in geological formations beneath the Earth's surface. It is commonly refined into various types of fuels.",
"wikipedia": "Petroleum, is a naturally occurring, yellowish-black liquid found in geological formations beneath the Earth's surface."
},
"bauxite": {
"icinfo": "A mineral precursor for aluminum.",
"market": true,
"retail": false,
"icwiki": "Bauxite is a sedimentary rock with a relatively high aluminum content. It is the world's main source of aluminum. Bauxite can be mined using a Bauxite mine.",
"wikipedia": "Bauxite is a sedimentary rock with a relatively high aluminium content. It is the world's main source of aluminium and gallium.",
"icp": "So this will be with sourse of aluminum."
},
"wood": {
"icinfo": "Useful for construction or as fuel.",
"market": true,
"retail": false,
"icwiki": "Wood is an asset grown in the region using Tree farms. The wood can be processed into other commodities or sold.",
"wikipedia": "Wood is a porous and fibrous structural tissue found in the stems and roots of trees and other woody plants.Wood has been used for thousands of years for fuel, as a construction material, for making tools and weapons, furniture and paper.",
"icp": "Don't waste too much paper, wood not that much, trees need time to grown."
},
"coal": {
"icinfo": "A great source of carbon and non-renewable energy.",
"market": true,
"retail": false,
"icwiki": "Coal is an asset extracted from the region using Coal mines. The coal can be processed into other assets or sold. Coal is a combustible black or brownish-black sedimentary rock. Coal is mostly carbon with variable amounts of other elements. Coal is used in creating electricity and it is the most common way of producing electricity. However, coal also emits harmful chemicals in the air. People are finding alternatives to coal for energy.",
"wikipedia": "oal is a combustible black or brownish-black sedimentary rock, formed as rock strata called coal seams. Coal is mostly carbon with variable amounts of other elements; chiefly hydrogen, sulfur, oxygen, and nitrogen.Coal is formed when dead plant matter decays into peat and is converted into coal by the heat and pressure of deep burial over millions of years.",
"icp": "Coal is limitted in real life, but not in IdleCorp."
},
"plastic": {
"icinfo": "Light and disposable. Worry about the mess later!",
"market": true,
"retail": false,
"icwiki": "Plastic is a synthetic compound that can be molded into solid objects. Plastic is an asset manufactured in Plastic Factories and used to build several other assets or can be sold.",
"wikipedia": "Plastics are a wide range of synthetic or semi-synthetic materials that use polymers as a main ingredient. Their plasticity makes it possible for plastics to be moulded, extruded or pressed into solid objects of various shapes.Most modern plastics are derived from fossil fuel based petrochemicals like natural gas or petroleum; however, recent industrial methods use variants made from renewable materials, such as corn or cotton derivatives."
},
"led": {
"icinfo": "A electrical diode capable of emitting light.",
"market": true,
"retail": false,
"icwiki": "LED is an asset manufactured in a LED factory and used to build other assets or can be sold. A light-emitting diode (LED) is a semiconductor light source that emits light when current flows through it.",
"wikipedia": "A light-emitting diode (LED) is a semiconductor light source that emits light when current flows through it. Electrons in the semiconductor recombine with electron holes, releasing energy in the form of photons. The color of the light (corresponding to the energy of the photons) is determined by the energy required for electrons to cross the band gap of the semiconductor.White light is obtained by using multiple semiconductors or a layer of light-emitting phosphor on the semiconductor device.",
"icp": "LED is good light sourse, long life and often used in TV and LED moniter."
},
"iron": {
"icinfo": "A common ferrous metal.",
"market": true,
"retail": false,
"icwiki": "Iron can be extracted from a region using Iron mines. Iron is a chemical element with the symbol Fe. It is by mass the most common element on Earth, forming much of Earth's outer and inner core.",
"wikipedia": "Iron is a chemical element with symbol Fe and atomic number 26. It is by mass the most common element on Earth, right in front of oxygen (32.1% and 30.1%, respectively), forming much of Earth's outer and inner core. It is the fourth most common element in the Earth's crust.",
"icp": "It's common appear in industry."
},
"polyester": {
"icinfo": "Synthetic fibers useful for clothing.",
"market": true,
"retail": false,
"icwiki": "Polyester is an asset manufactured in a Polyester factory and used to build other assets or can be sold. Polyester is a synthetic fiber that can be spun together with natural fibers to produce clothing with blended properties. Cotton-polyester blends can be strong, wrinkle- and tear-resistant, and reduce shrinking.",
"wikipedia": "Polyester is a category of polymers that contain the ester functional group in every repeat unit of their main chain.As a specific material, it most commonly refers to a type called polyethylene terephthalate (PET). Polyesters include naturally occurring chemicals, such as in the cutin of plant cuticles, as well as synthetics such as polybutyrate. Natural polyesters and a few synthetic ones are biodegradable, but most synthetic polyesters are not. The material is used extensively in clothing."
},
"aluminum": {
"icinfo": "A light, soft, and non-ferrous metal.",
"market": true,
"retail": false,
"icwiki": "Aluminum can be produced by an Aluminum factory. It can be used for building BP's or sold. Aluminum is a chemical element with the symbol Al. Aluminum makes up about 8% of the Earth's crust, where it is the most abundant metal. The chief ore of aluminum is bauxite. Bauxite ore is heated in a pressure vessel along with a sodium hydroxide solution at a temperature of 150 to 200 °C (300 to 390 °F). At these temperatures, the aluminum is dissolved and recovered using the Bayer process.",
"wikipedia": "Aluminium (aluminum in American and Canadian English) is a chemical element with the symbol Al and atomic number 13. Aluminium has a density lower than those of other common metals, at approximately one third that of steel. It has a great affinity towards oxygen, and forms a protective layer of oxide on the surface when exposed to air."
},
"gasoline": {
"icinfo": "Full of combustible hydrocarbons.",
"market": true,
"retail": false,
"icwiki": "Gasoline is a clear petroleum-derived flammable liquid that is used primarily as a fuel in most spark-ignited internal combustion engines. Gasoline is an asset manufactured using an Oil refinery. Gasoline can be used in exports, consumed by Gas stations or sold.",
"wikipedia": "Gasoline or petrol is a transparent, petroleum-derived flammable liquid that is used primarily as a fuel in most spark-ignited internal combustion engines. It consists mostly of organic compounds obtained by the fractional distillation of petroleum, enhanced with a variety of additives."
},
"cotton": {
"icinfo": "Natural fibers from a cotton plant.",
"market": true,
"retail": false,
"icwiki": "Cotton is a soft, fluffy fiber that grows in a boll, around the seeds of the cotton plants. Cotton is an asset grown in the region using Cotton farms. The cotton can be processed into other commodities or sold.",
"wikipedia": "Cotton is a soft, fluffy staple fiber that grows in a boll, or protective case, around the seeds of the cotton plants of the genus Gossypium in the mallow family Malvaceae. The fiber is almost pure cellulose."
},
"jet_fuel": {
"icinfo": "Probably useful for airplanes...",
"market": true,
"retail": false,
"icwiki": "Jet fuel is an that is produced by an Oil refinery with the Jet fuel refining technology.",
"wikipedia": "fuel or aviation turbine fuel (ATF, also abbreviated avtur) is a type of aviation fuel designed for use in aircraft powered by gas-turbine engines. It is colorless to straw-colored in appearance."
},
"rubber": {
"icinfo": "A soft water-tight material.",
"market": true,
"retail": false,
"icwiki": "Rubber is an asset manufactured in a Rubber factory and used to build other assets or can be sold. Synthetic rubber, like natural rubber, has uses in the automotive industry for tires, door and window profiles, hoses, belts, matting, and flooring.",
"wikipedia": "A synthetic rubber is any artificial elastomer. They are polymers synthesized from petroleum byproducts. Synthetic rubber, just like natural rubber, has many uses in the automotive industry for tires, door and window profiles, seals such as O-rings and gaskets, hoses, belts, matting, and flooring."
},
"steel": {
"icinfo": "A strong carbon-iron alloy.",
"market": true,
"retail": false,
"icwiki": "Steel is an asset that can be produced using Steel mills and can build several other assets or can be sold. Steel is an alloy of iron and carbon or coal, sometimes, other elements. Because of its high tensile strength and low cost, this material is best used in buildings, infrastructure, tools, ships, trains, cars, machines, and electrical appliances.",
"wikipedia": "Steel is an alloy of iron with typically a few tenths of a percent of carbon to improve its strength and fracture resistance compared to iron. Many other elements may be present or added.",
"icp": "A strong alloy in real life. In IdleCorp, it's commonly appear in facilities construction material."
},
"energy": {
"icinfo": "E=mc^2",
"market": true,
"retail": false,
"icwiki": "Energy can be produced using Coal power plants or Solar power plants. In physics, energy is the quantitative property that must be transferred to an object in order to perform work on any object. It can neither be created nor destroyed. Energy is also proportional to mass and is explained by the famous formula e=mc^2.",
"wikipedia": "Electricity is the set of physical phenomena associated with the presence and motion of matter that has a property of electric charge. Electricity is related to magnetism, both being part of the phenomenon of electromagnetism, as described by Maxwell's equations.",
"icp": "Remember to reduce the power uses, it's good for lots of people."
},
"silicon": {
"icinfo": "An abundant semiconductor.",
"market": true,
"retail": false,
"icwiki": "Silicon is an asset extracted from the region using Silicon mines. The silicon can be processed into other assets or sold. Very highly purified elemental silicon is used in semiconductor electronics (< 10%) is essential to the metal–oxide–silicon (MOS) transistors and integrated circuit chips used in most modern technology (such as computers and cell phones, for example).",
"wikipedia": "Silicon is a chemical element with the symbol Si and atomic number 14. It is a hard, brittle crystalline solid with a blue-grey metallic lustre, and is a tetravalent metalloid and semiconductor.It is relatively unreactive because of its high chemical affinity for oxygen"
},
"lamp": {
"icinfo": "Produces enough light to work with. Just beware of moths.",
"market": true,
"retail": 1,
"icwiki": "The lamp is an asset manufactured in a Lamp factory and is a product that can be sold for capital. A lamp is a device that produces visible light from electric currents. It is a common form of artificial lighting and is handy to modern society, providing interior lighting for buildings and exterior light for evening and nighttime activities. In technical usage, a replaceable component that produces light from electricity is called a lamp.",
"wikipedia": "A light fixture, light fitting, or luminaire is an electrical device that contains an electric lamp that provides illumination. All light fixtures have a fixture body and one or more lamps. The lamps may be in sockets for easy replacement—or, in the case of some LED fixtures, hard-wired in place."
},
"glass": {
"icinfo": "A transparent material.",
"market": true,
"retail": false,
"icwiki": "Glass is an asset that can be produced using Glass factories, and used to build several other asset's or can be sold. Glass is most often formed by rapid cooling (quenching) of the molten form. The most familiar, and historically the oldest, types of manufactured glass are \"silicate glasses\" based on the chemical compound silica (silicon dioxide), the primary constituent of sand. Soda-lime glass, containing around 70% silica, accounts for around 90% of manufactured glass.",
"wikipedia": "Glass is a non-crystalline, often transparent amorphous solid, that has widespread practical, technological, and decorative use in, for example, window panes, tableware, and optics. Glass is most often formed by rapid cooling (quenching) of the molten form; some glasses such as volcanic glass are naturally occurring."
},
"clothing": {
"icinfo": "Cover yourself up!",
"market": true,
"retail": 1,
"icwiki": "Clothing is an asset manufactured in the Clothing factories and is a product that can be sold for capital. Clothing (also known as clothes, apparel and attire) is items worn on the body. Clothing is typically made of fabrics or textiles. The wearing of clothing is mostly restricted to human beings and is a feature of all human societies. The amount and type of clothing worn depend on gender, body type, social, and geographic considerations.",
"wikipedia": "Clothing (also known as clothes, apparel and attire) are items worn on the body. Clothing is typically made of fabrics or textiles but over time has included garments made from animal skin or other thin sheets of materials put together."
},
"furniture": {
"icinfo": "Great for home owners who value comfort.",
"market": true,
"retail": 1,
"icwiki": "Furniture is an asset manufactured in the Furniture factories and is a product that can be sold for capital. Furniture refers to movable objects intended to support various human activities such as seating (e.g., chairs, stools, and sofas), eating (tables), and sleeping (e.g., beds).",
"wikipedia": "Furniture refers to movable objects intended to support various human activities such as seating, eating, and sleeping. Furniture is also used to hold objects at a convenient height for work, or to store things. Furniture can be a product of design and is considered a form of decorative art."
},
"gold": {
"icinfo": "A beautiful, non-reactive metal.",
"market": true,
"retail": false,
"icwiki": "Gold is an asset extracted from the region using Gold mines. The gold can be processed into other assets or sold. Gold often occurs in free elemental (native) form, as nuggets or grains, in rocks, in veins, and in alluvial deposits. Gold's high malleability, ductility, resistance to corrosion and most other chemical reactions, and conductivity of electricity have led to its continued use in corrosion resistant electrical connectors in all types of computerized devices (its chief industrial use).",
"wikipedia": "Gold is a chemical element with the symbol Au and atomic number 79, making it one of the higher atomic number elements that occur naturally. In a pure form, it is a bright, slightly reddish yellow, dense, soft, malleable, and ductile metal.",
"icp": "It's a good metal."
},
"rocket_fuel": {
"icinfo": "It's not rocket science.",
"market": true,
"retail": false,
"icwiki": "Rocket fuel is an asset manufactured using Rocket fuel factories and can be sold. \nNote: This asset is a remaining item from an old version. Rocket fuel was used to fuel Rockets.",
"wikipedia": "Rocket propellant is the reaction mass of a rocket. This reaction mass is ejected at the highest achievable velocity from a rocket engine to produce thrust. The energy required can either come from the propellants themselves, as with a chemical rocket, or from an external source, as with ion engines.",
"icp": "It is kind of fuel for rockets."
},
"research_chemical": {
"icinfo": "Research grade chemicals.",
"market": true,
"retail": false,
"icwiki": "Research chemical is an asset manufactured in a Research chemical factory and used to build other assets or can be sold. Research chemicals are chemical substances used by scientists for medical and scientific research purposes.",
"wikipedia": "Research chemicals are chemical substances used by scientists for medical and scientific research purposes. One characteristic of a research chemical is that it is for laboratory research use only; a research chemical is not intended for human or veterinary use."
},
"cpu": {
"icinfo": "Following Moore's Law since 1971.",
"market": true,
"retail": false,
"icwiki": "CPU is an asset manufactured in the CPU factories and used to build several other assets or can be sold. A central processing unit (CPU), also called a main processor is the electronic circuitry within a computer that executes instructions that make up a computer program. The CPU performs basic arithmetic, logic, controlling, and input/output (I/O) operations specified by the instructions in the program.",
"wikipedia": "A central processing unit (CPU), also called a central processor, main processor or just processor, is the electronic circuitry that executes instructions comprising a computer program. The CPU performs basic arithmetic, logic, controlling, and input/output (I/O) operations specified by the instructions in the program. This contrasts with external components such as main memory and I/O circuitry.",
"icp": "CPU can be strong."
},
"bicycle": {
"icinfo": "Useful for your commute.",
"market": true,
"retail": 1,
"icwiki": "Bicycle is an asset manufactured in the Bicycle Factories and is a product that can be sold for capital. A bicycle, a.k.a a bike or cycle, is a human-powered, pedal-driven vehicle, having two wheels attached to a frame, one behind the other.",
"wikipedia": "A bicycle, also called a bike or cycle, is a human-powered or motor-powered, pedal-driven, single-track vehicle, having two wheels attached to a frame, one behind the other. A bicycle rider is called a cyclist, or bicyclist.",
"icp": "Bicycle usually in sports."
},
"prescription_drug": {
"icinfo": "Laughter, it's said, is the best medicine.",
"market": true,
"retail": 1,
"icwiki": "The prescription drug is an asset manufactured in a Prescription drug factory and is a product that can be sold for capital. A prescription drug (also prescription medication or prescription medicine) is a pharmaceutical drug that legally requires a medical prescription to be dispensed.",
"wikipedia": "A prescription drug (also prescription medication or prescription medicine) is a pharmaceutical drug that legally requires a medical prescription to be dispensed. In contrast, over-the-counter drugs can be obtained without a prescription.",
"icp": "Don't sick is better."
},
"ccd": {
"icinfo": "An array of semiconductors capable of taking digital images.",
"market": true,
"retail": false,
"icwiki": "CCD is an asset manufactured in a CCD factory and used to build other assets or can be sold. A charge-coupled device (CCD) is a device for the movement of electrical charge, usually from within the device to an area where the charge can be manipulated, such as conversion into a digital value. CCD is a major technology for digital imaging.",
"wikipedia": "A charge-coupled device (CCD) is an integrated circuit containing an array of linked, or coupled, capacitors. Under the control of an external circuit, each capacitor can transfer its electric charge to a neighboring capacitor. CCD sensors are a major technology used in digital imaging.",
"icp": "A special hardware."
},
"cell_phone": {
"icinfo": "What? Don't you guys have phones?",
"market": true,
"retail": 1,
"icwiki": "A cell phone is an asset manufactured in the Cell phone factories and is a product that can be sold for capital. A mobile phone, cellular phone, or cell phone is a portable telephone that can make and receive calls over a radio frequency link while the user is moving within a telephone service area.",
"wikipedia": "A mobile phone, cellular phone, cell phone, cellphone, handphone, or hand phone, sometimes shortened to simply mobile, cell or just phone, is a portable telephone that can make and receive calls over a radio frequency link while the user is moving within a telephone service area.",
"icp": "Everyone should have this thing."
},
"laptop": {
"icinfo": "Great for on the go productivity.",
"market": true,
"retail": 2,
"icwiki": "Laptop is an asset manufactured in the Laptop factories and is a product that can be sold for capital. A laptop computer is a small, portable personal computer (PC) with a \"clamshell\" form factor, typically having a thin LCD or LED computer screen mounted on the inside of the upper lid of the clamshell and an alphanumeric keyboard on the inside of the lower lid. Its name comes from lap, as it was deemed to be placed on a person's lap when being used.",
"wikipedia": "A laptop or laptop computer is a small, portable personal computer (PC) with a \"clamshell\" form factor, typically having a thin LCD or LED computer screen mounted on the inside of the upper lid of the clamshell and an alphanumeric keyboard on the inside of the lower lid. The clamshell is opened up to use the computer. Laptops are folded shut for transportation, and thus are suitable for mobile use."
},
"digital_camera": {
"icinfo": "A digital camera for taking photos of your favorite moments.",
"market": true,
"retail": 2,
"icwiki": "The digital camera is an asset manufactured in the Digital camera factories and is a product that can be sold for capital. A digital camera or digicam is a camera that captures photographs in digital memory. High-end, high-definition dedicated cameras are still commonly used by professionals and those who desire to take higher-quality photographs.",
"wikipedia": " digital camera is a camera that captures photographs in digital memory. Most cameras produced today are digital, largely replacing those that capture images on photographic film. While there are still dedicated digital cameras, many more cameras are now incorporated into mobile devices like smartphones."
},
"television": {
"icinfo": "What's cable?",
"market": true,
"retail": 4,
"icwiki": "Television is an asset manufactured in the Television factory and is a product that can be sold for capital. Television (TV), sometimes shortened to tele or telly, is a telecommunication medium used for transmitting moving images in two or three dimensions and sound. Television is a mass medium for advertising, entertainment, news, and sports.",
"wikipedia": "Television (TV), sometimes shortened to tele or telly, is a telecommunication medium used for transmitting moving images in monochrome (black and white), or in color, and in two or three dimensions and sound. The term can refer to a television set, a television show, or the medium of television transmission. Television is a mass medium for advertising, entertainment, news, and sports.",
"icp": "Big moniter."
},
"gasoline_engine": {
"icinfo": "Transforms combustion of gasoline into rotational motion.",
"market": true,
"retail": false,
"icwiki": "The gasoline engine is an asset that can be produced using Gasoline engine factories and is used to build other assets or can be sold. A gasoline engine (American English) or Petrol engine (British English) is an internal combustion engine with spark-ignition, designed to run on petrol (gasoline) and similar volatile fuels.",
"wikipedia": "Petrol engine or gasoline engine is an internal combustion engine with spark-ignition, designed to run on petrol and similar volatile fuels. In most petrol engines, the fuel and air are usually pre-mixed before compression."
},
"car": {
"icinfo": "An essential transportation utility in a modern society.",
"market": true,
"retail": 23,
"icwiki": "A Car is an asset manufactured in the Car factories and is a product that can be sold for capital. A car (or automobile) is a wheeled motor vehicle used for transportation. Most definitions of cars say that they run primarily on roads, seat one to eight people, have four tires, and mainly transport people rather than goods.",
"wikipedia": "A car is a wheeled motor vehicle used for transportation. Most definitions of cars say that they run primarily on roads, seat one to eight people, have four wheels, and mainly transport people rather than goods.",
"icp": "It's expensive but not the most profit."
},
"truck": {
"icinfo": "A heavy vehicle for transporting assets.",
"market": true,
"retail": 80,
"icwiki": "Truck is an asset produced by truck factory. Truck is a heavy vehicle for transporting assets. It is used during export between regions.",
"wikipedia": "A truck or lorry is a motor vehicle designed to transport cargo, carry specialized payloads, or perform other utilitarian work. Trucks vary greatly in size, power, and configuration, but the vast majority feature body-on-frame construction, with a cabin that is independent of the payload portion of the vehicle.",
"icp": "To export assets by trucks."
},
"rocket": {
"icinfo": "Maybe it is rocket science.",
"market": true,
"retail": false,
"rarity": "rare",
"icwiki": "Rocket is an asset in the market and is a product that can be sold for capital. \nNote: This asset is a remaining item from an old version. Rocket's are not currently buildable.",
"wikipedia": "A rocket is a projectile that spacecraft, aircraft or other vehicle use to obtain thrust from a rocket engine. Rocket engine exhaust is formed entirely from propellant carried within the rocket.Rocket engines work by action and reaction and push rockets forward simply by expelling their exhaust in the opposite direction at high speed, and can therefore work in the vacuum of space.",
"icp": "The system had been removed."
},
"space_station_parts": {
"icinfo": "Spaaaaaaaace!",
"market": true,
"retail": false,
"icwiki": "[Blank]",
"wikipedia": "None",
"icp": "Part of space station can be grouped into space station."
},
"galactic_coordinates_i": {
"icinfo": "A destination for galactic expeditions.",
"difficulty": "i",
"market": true,
"retail": false,
"rarity": "common",
"icwiki": "[Blank]",
"wikipedia": "None",
"icp": "Rank 1 of galactic expeditions."
},
"galactic_coordinates_ii": {
"icinfo": "A destination for galactic expeditions.",
"difficulty": "ii",
"market": true,
"retail": false,
"rarity": "uncommon",
"icwiki": "[Blank]",
"wikipedia": "None",
"icp": "Rank 2 of galactic expeditions."
},
"galactic_coordinates_iii": {
"icinfo": "A destination for galactic expeditions.",
"difficulty": "iii",
"market": true,
"retail": false,
"rarity": "uncommon",
"icwiki": "[Blank]",
"wikipedia": "None",
"icp": "Rank 3 of galactic expeditions."
},
"galactic_coordinates_iv": {
"icinfo": "A destination for galactic expeditions.",
"difficulty": "iv",
"market": true,
"retail": false,
"rarity": "rare",
"icwiki": "[Blank]",
"wikipedia": "None",
"icp": "Rank 4 of galactic expeditions."
},
"galactic_coordinates_v": {
"icinfo": "A destination for galactic expeditions.",
"difficulty": "v",
"market": true,
"retail": false,
"rarity": "superior",
"icwiki": "[Blank]",
"wikipedia": "None",
"icp": "Rank 5 of galactic expeditions."
},
"relic_of_haste": {
"icinfo": "If this relic is in your *quantum vault*, research takes `0:00:30` less time (stacking **100x** up to `0:50:00`).",
"market": true,
"retail": false,
"icwiki": "[Blank]",
"wikipedia": "None",
"icp": "It makes faster researches."
},
"relic_of_prestige": {
"icinfo": "If this relic is in your *quantum vault*, reduce the capital required per token during reincorporation by $1,000,000 (stacking **100x** up to $100,000,000).",
"market": true,
"retail": false,
"icwiki": "[Blank]",
"wikipedia": "None",
"icp": "It makes reincorporation cost fewer."
},
"relic_of_efficiency": {
"icinfo": "If this relic is in your *quantum vault*, whenever you would produce (+) plus assets, instead produce the regular asset at twice the amount.",
"market": true,
"retail": false,
"icwiki": "[Blank]",
"wikipedia": "None",
"icp": "It makes your facilities produce asset+ and ignores your consumeplus option."
},
"relic_of_knowledge": {
"icinfo": "This relic can be consumed to instantly finish research with `$$userelic relic of knowledge`.",
"market": true,
"retail": false,
"icwiki": "[Blank]",
"wikipedia": "None",
"icp": "It can make your research can finish instantly instead of using gratitude points."
}
},
"facilities": {
"tree_farm": {
"icinfo": "Sustainably farmed lumber.",
"construct": {
"money": 100
},
"icwiki": "he tree farm is used to farm wood from your region.",
"wikipedia": "A tree farm is a privately owned forest managed for timber production. The term, tree farm, also is used to refer to tree plantations, tree nurseries, and Christmas tree farms.",
"icp": "Used to produce wood, log."
},
"oil_well": {
"icinfo": "A well bringing crude oil to the surface.",
"construct": {
"iron": 100,
"money": 100
},
"icwiki": "The Oil Well is used to harvest crude oil from the ground.",
"wikipedia": "An oil well is a boring in the Earth that is designed to bring petroleum oil hydrocarbons to the surface. Usually some natural gas is released as associated petroleum gas along with the oil. A well that is designed to produce only gas may be termed a gas well.",
"icp": "Produce oil to make gasoline and plastic."
},
"coal_mine": {
"icinfo": "A mine extracting coal from the ground.",
"construct": {
"wood": 1000,
"money": 250
},
"icwiki": "The coal mine is a facility",
"wikipedia": "Coal mining is the process of extracting coal from the ground. Coal is valued for its energy content and since the 1880s, has been widely used to generate electricity. Steel and cement industries use coal as a fuel for extraction of iron from iron ore and for cement production.",
"icp": "A kind of sourse of coal."
},
"iron_mine": {
"icinfo": "A mine extracting iron from the ground.",
"construct": {
"wood": 2000,
"money": 250
},
"icwiki": "The coal mine is a facility",
"wikipedia": "Blank",
"icp": "A sourse of any iron type."
},
"oil_refinery": {
"icinfo": "Refines crude oil into gasoline.",
"construct": {
"steel": 50,
"iron": 200,
"crude oil": 100,
"money": 240
},
"icwiki": "The oil refinery is a facility",
"wikipedia": "An oil refinery or petroleum refinery is an industrial process plant where crude oil is transformed and refined into useful products such as petroleum naphtha, gasoline, diesel fuel, asphalt base, heating oil, kerosene, liquefied petroleum gas, jet fuel and fuel oils.",
"icp": "Secondary resourse."
},
"steel_mill": {
"icinfo": "Makes steel by smelting iron with coal.",
"construct": {
"coal": 250,
"iron": 500,
"money": 150
},
"icwiki": "The steel mill is a facility",
"wikipedia": "A steel mill or steelworks is an industrial plant for the manufacture of steel. It may be an integrated steel works carrying out all steps of steelmaking from smelting iron ore to rolled product, but may also be a plant where steel semi-finished casting products are made from molten pig iron or from scrap.",
"icp": "Used to make string metal."
},
"bauxite_mine": {
"icinfo": "A mine extracting bauxite from the ground.",
"construct": {
"steel": 50,
"wood": 5000,
"money": 150
},
"icwiki": "The Bauxite mine is used to mine Bauxite which can be used in the production of Aluminum.",
"wikipedia": "None",
"icp": "Bauxite sourse."
},
"rubber_factory": {
"icinfo": "Produces synthetic rubber by processing crude oil.",
"construct": {
"steel": 100,
"wood": 2500,
"money": 325
},
"icwiki": "The rubber factory is a facility",
"wikipedia": "None",
"icp": "A place to make rubber, used oil."
},
"gas_station": {
"icinfo": "Sells gasoline to the public.",
"construct": {
"rubber": 100,
"steel": 100,
"money": 300
},
"icwiki": "The gas station is a facility",
"wikipedia": "A filling station is a facility that sells fuel and engine lubricants for motor vehicles.A filling station that sells only electric energy is also known as a charging station, while a typical filling station can also be known as a fueling station or gas station."
},
"furniture_factory": {
"icinfo": "Manufactures furniture by woodworking.",
"construct": {
"steel": 100,
"wood": 5000,
"money": 450
},
"icwiki": "The furniture factory is a facility\nThis factory is considered by many players to be a key factory. You NEED this factory to progress to getting a logistics center, which is where you can generally get aided by other players for resources. Want to get a good retail set-up? You need others to give you the resources. Want to be an end-product wholesaler? You need CPUs and other penultimate tier resources. The fact that a logistics center is pretty much necessary makes furniture factories also necessary.\nLater on, when mass reincorporating without the free logistics center from the season pass, the speed one can get the 250 furniture requirement to build the logistics center can make or break your tokens attained in a certain timeframe by a large margin.",
"wikipedia": "None",
"icp": "Used wood to make furniture."
},
"aluminum_factory": {
"icinfo": "A factory producing aluminum by processing bauxite.",
"construct": {
"steel": 150,
"rubber": 300,
"money": 450
},
"icwiki": "The aluminum factory is a facility",
"wikipedia": "None"
},
"led_factory": {
"icinfo": "A factory producing LEDs by processing silicon.",
"construct": {
"steel": 200,
"wood": 2000,
"silicon": 10,
"money": 2850
},
"icwiki": "The LED factory is a facility",
"wikipedia": "None",
"icp": "Produce good light."
},
"polyester_factory": {
"icinfo": "A factory producing polyester by processing crude oil.",
"construct": {
"steel": 500,
"wood": 10000,
"money": 500
},
"icwiki": "The polyester factory is a facility",
"wikipedia": "None",
"icp": "Used resourse to produce polyester."
},
"silicon_mine": {
"icinfo": "A mine extracting silicon from the ground.",
"construct": {
"steel": 400,
"wood": 25000,
"money": 2050
},
"icwiki": "Silicon mine produce",
"wikipedia": "None",
"icp": "Make silicon."
},
"bicycle_factory": {
"icinfo": "Manufactures bicycles by combining other assets.",
"construct": {
"steel": 500,
"rubber": 200,
"wood": 10000,
"money": 3100
},
"icwiki": "The bicycle factory is a facility",
"wikipedia": "None",
"icp": "Use many things to produce."
},
"gold_mine": {
"icinfo": "A mine extracting gold from the ground.",
"construct": {
"steel": 1000,
"wood": 50000,
"money": 4500
},
"icwiki": "Gold mine produce",
"wikipedia": "Gold mining is the resource extraction of gold by mining."
},
"lamp_factory": {
"icinfo": "A factory producing lamps by combining other assets.",
"construct": {
"rubber": 2000,
"wood": 25000,
"money": 10250
},
"icwiki": "The Lamp factory is a facility",
"wikipedia": "None"
},
"cotton_farm": {
"icinfo": "A farm producing cotton from cotton plants.",
"construct": {
"wood": 100000,
"money": 15000
},
"icwiki": "The cotton farm is a facility",
"wikipedia": "None",
"icp": "Don't need things can produce cotton."
},
"plastic_factory": {
"icinfo": "Produces plastic by processing crude oil.",
"construct": {
"steel": 200,
"rubber": 6000,
"wood": 5000,
"money": 5650
},
"icwiki": "The plastic factory is a facility",
"wikipedia": "None",
"icp": "Use oil make thing."
},
"ccd_factory": {
"icinfo": "A factory producing CCDs by processing silicon.",
"construct": {
"steel": 5000,
"glass": 500,
"money": 14000
},
"icwiki": "The CCD factory is a facility",
"wikipedia": "None"
},
"glass_factory": {
"icinfo": "Produces glass by processing silicon.",
"construct": {
"steel": 6000,
"aluminum": 500,
"money": 30000
},
"icwiki": "The glass factory is a facility",
"wikipedia": "None",
"icp": "Why not made of sand?"
},
"cpu_factory": {
"icinfo": "Manufactures CPUs by combining other assets.",
"construct": {
"wood": 100000,
"aluminum": 10000,