-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathresources.html
1178 lines (1120 loc) · 104 KB
/
resources.html
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
<!DOCTYPE html>
<html lang="zh-cn">
<head prefix="og: http://ogp.me/ns#">
<meta charset="utf-8">
<title>资源 | Screeps 中文文档</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Canonical links -->
<link rel="canonical" href="http://screeps-cn.github.io/resources.html">
<!-- Alternative links -->
<link rel="alternative" hreflang="en" href="http://screeps-cn.github.io/resources.html">
<link rel="alternative" hreflang="zh-tw" href="http://screeps-cn.github.io/zh-tw/resources.html">
<link rel="alternative" hreflang="zh-cn" href="http://screeps-cn.github.io/zh-cn/resources.html">
<link rel="alternative" hreflang="ru" href="http://screeps-cn.github.io/ru/resources.html">
<link rel="alternative" hreflang="ko" href="http://screeps-cn.github.io/ko/resources.html">
<!-- Icon -->
<link rel="apple-touch-icon" sizes="57x57" href="/icon/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="/icon/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="/icon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="/icon/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="/icon/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="/icon/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="/icon/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="/icon/apple-touch-icon-152x152.png">
<link rel="icon" type="image/png" href="/icon/favicon-196x196.png" sizes="196x196">
<link rel="icon" type="image/png" href="/icon/favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="/icon/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/icon/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/icon/favicon-32x32.png" sizes="32x32">
<meta name="msapplication-TileColor" content="#2f83cd">
<meta name="msapplication-TileImage" content="/icon/mstile-144x144.png">
<!-- CSS -->
<!-- build:css build/css/navy.css -->
<link rel="stylesheet" href="/css/navy.css?1">
<link rel="stylesheet" href="/css/prism.css">
<!-- endbuild -->
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.css">
<!-- RSS -->
<link rel="alternate" href="/atom.xml" title="Screeps 中文文档">
<!-- Open Graph -->
<meta name="description" content="游戏中有 4 种资源:能源(energy),矿物(minerals),超能(power)和商品(commodities)。资源可以被采集,加工,在市场上交易,由 creeps 携带并存储在建筑物中。所有资源类型都有不同的用途,您只有在获得最基本的资源(能源)的情况下才能开始游戏。
能量从哪里获取: 绝大多数房间中都有的 Source 结构.
怎么样获取: 派遣一个拥有 WORK 身体部件的 cr">
<meta property="og:type" content="website">
<meta property="og:title" content="资源">
<meta property="og:url" content="http://screeps-cn.github.io/resources.html">
<meta property="og:site_name" content="Screeps 中文文档">
<meta property="og:description" content="游戏中有 4 种资源:能源(energy),矿物(minerals),超能(power)和商品(commodities)。资源可以被采集,加工,在市场上交易,由 creeps 携带并存储在建筑物中。所有资源类型都有不同的用途,您只有在获得最基本的资源(能源)的情况下才能开始游戏。
能量从哪里获取: 绝大多数房间中都有的 Source 结构.
怎么样获取: 派遣一个拥有 WORK 身体部件的 cr">
<meta property="og:image" content="http://screeps-cn.github.io/img/minerals-01.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/mining_minerals.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/minerals-02.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/2016-03-09_10-32-33.gif">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/H.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ZK.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/Z.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/K.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UL.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/U.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/L.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/G.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ZK.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UL.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/U.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/H.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UO.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/U.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/KH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/K.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/H.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/KO.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/K.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/LH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/L.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/H.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/LO.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/L.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ZH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/Z.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/H.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ZO.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/Z.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/GH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/G.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/H.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/GO.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/G.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UO.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/KH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/KH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/KHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/KO.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/LH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/LH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/LHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/LO.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ZH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ZH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ZHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ZO.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/GH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/GH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/GHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/GO.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XUH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XUHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XKH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/KH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XKHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/KHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XLH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/LH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XLHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/LHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XZH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ZH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XZHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ZHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XGH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/GH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XGHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/GHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/H.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/U.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/K.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/L.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/Z.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/G.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ZK.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UL.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/OH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UH.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UO.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/UHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XUH2O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/XUHO2.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/commodities.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/commodities1.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/utrium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/U.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/lemergium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/L.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/zynthium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/Z.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/keanium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/K.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ghodium_melt.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/G.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/oxidant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/reductant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/H.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/purifier.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/battery.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/commodities2.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/U.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/utrium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/L.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/lemergium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/Z.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/zynthium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/K.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/keanium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/G.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ghodium_melt.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/O.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/oxidant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/H.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/reductant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/X.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/purifier.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/battery.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/commodities3.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/wire.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/utrium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/silicon.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/cell.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/lemergium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/biomass.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/alloy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/zynthium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/metal.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/condensate.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/keanium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/mist.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/commodities4.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/composite.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/utrium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/zynthium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/crystal.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/lemergium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/keanium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/purifier.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/liquid.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/oxidant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/reductant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ghodium_melt.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/commodities5.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/tube.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/alloy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/zynthium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/fixtures.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/composite.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/alloy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/oxidant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/frame.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/fixtures.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/tube.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/reductant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/zynthium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/hydraulics.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/liquid.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/fixtures.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/tube.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/purifier.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/machine.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/hydraulics.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/frame.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/fixtures.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/tube.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/commodities6.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/phlegm.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/cell.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/oxidant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/lemergium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/tissue.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/phlegm.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/cell.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/reductant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/muscle.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/tissue.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/phlegm.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/zynthium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/reductant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/organoid.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/muscle.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/tissue.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/purifier.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/oxidant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/organism.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/organoid.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/liquid.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/tissue.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/cell.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/commodities7.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/switch.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/wire.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/oxidant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/utrium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/transistor.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/switch.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/wire.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/reductant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/microchip.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/transistor.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/composite.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/wire.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/purifier.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/circuit.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/microchip.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/transistor.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/switch.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/oxidant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/device.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/circuit.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/microchip.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/crystal.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ghodium_melt.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io/img/commodities8.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/concentrate.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/condensate.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/keanium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/reductant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/extract.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/concentrate.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/condensate.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/oxidant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/spirit.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/extract.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/concentrate.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/reductant.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/purifier.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/emanation.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/spirit.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/extract.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/concentrate.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/keanium_bar.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/essence.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/emanation.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/spirit.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/crystal.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/ghodium_melt.png">
<meta property="og:image" content="http://screeps-cn.github.io//static.screeps.com/upload/mineral-icons/energy.png">
<meta property="og:updated_time" content="2024-09-20T13:38:58.408Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="资源">
<meta name="twitter:description" content="游戏中有 4 种资源:能源(energy),矿物(minerals),超能(power)和商品(commodities)。资源可以被采集,加工,在市场上交易,由 creeps 携带并存储在建筑物中。所有资源类型都有不同的用途,您只有在获得最基本的资源(能源)的情况下才能开始游戏。
能量从哪里获取: 绝大多数房间中都有的 Source 结构.
怎么样获取: 派遣一个拥有 WORK 身体部件的 cr">
<meta name="twitter:image" content="http://screeps-cn.github.io/img/minerals-01.png">
<!-- Google Analytics -->
</head>
<body>
<div id="container">
<header id="header" class="wrapper">
<div id="header-inner" class="inner">
<h1 id="logo-wrap">
<a href="https://screeps.com" id="logo">Screeps</a>
<a href="/index.html" id="logo-docs">docs</a>
</h1>
<a id="mobile-nav-toggle">
<span class="mobile-nav-toggle-bar"></span>
<span class="mobile-nav-toggle-bar"></span>
<span class="mobile-nav-toggle-bar"></span>
</a>
<div id="header-main"></div>
</div>
</header>
<div id="content-wrap">
<div id="content" class="wrapper">
<div id="content-inner">
<article class="article-container" itemscope itemtype="http://schema.org/Article">
<div class="article-inner">
<div class="article">
<div class="inner">
<header class="article-header">
<h1 class="article-title" itemprop="name" id="top">资源</h1>
<a href="https://github.com/screeps-cn/docs/edit/master/source/resources.md" class="article-edit-link" title="改进本文"><i class="fa fa-pencil"></i></a>
</header>
<div class="article-content" itemprop="articleBody">
<p>游戏中有 4 种资源:<strong>能源(energy)</strong>,<strong>矿物(minerals)</strong>,<strong>超能(power)</strong>和<strong>商品(commodities)</strong>。资源可以被采集,加工,在市场上交易,由 creeps 携带并存储在建筑物中。所有资源类型都有不同的用途,您只有在获得最基本的资源(能源)的情况下才能开始游戏。</p>
<h2 id="能量" class="article-heading"><a href="#能量" class="headerlink" title="能量"></a>能量<a class="article-anchor" href="#能量" aria-hidden="true"></a></h2><blockquote class="note info"><p><strong>从哪里获取:</strong> 绝大多数房间中都有的 <a href="/api/#Source"><code>Source</code></a> 结构. <br>
<strong>怎么样获取:</strong> 派遣一个拥有 <code>WORK</code> 身体部件的 creep 来 <a href="/api/#Creep.harvest"><code>采集(harvest)</code></a> 它。<br>
<strong>用来干什么:</strong> 孵化 creeps,建造建筑。</p>
</blockquote>
<p>能量是 Screeps 世界中的主要建筑材料。你的基地运转依赖于能量。所以采集更多的能量对于每个领地都至关重要。你不仅可以从占领的房间里采集能量,同样可以从其他房间里采集能量来提高收入。</p>
<h2 id="矿物" class="article-heading"><a href="#矿物" class="headerlink" title="矿物"></a>矿物<a class="article-anchor" href="#矿物" aria-hidden="true"></a></h2><blockquote class="note info"><p><strong>从哪里获取:</strong> 绝大多数房间中都有的 <a href="/api/#Mineral"><code>Mineral</code></a> 结构。 <br>
<strong>怎么样获取:</strong> 建造一个 <a href="/api/#StructureExtractor"><code>StructureExtractor</code></a>, 然后派遣一个拥有 <code>WORK</code> 身体部件的 creep 来 <a href="/api/#Creep.harvest"><code>采集(harvest)</code></a> 它。<br>
<strong>用来干什么:</strong> 强化 creep 的能力, 或者生产贸易商品。</p>
</blockquote>
<p>通过开采及使用矿物,玩家可显著的加速经济发展及提高 creep 的工作效率。</p>
<p>矿物利用可分为三个步骤:</p>
<ul>
<li><strong>开采基本元素</strong></li>
<li><strong>合成矿物</strong></li>
<li><strong>强化 Creep</strong></li>
</ul>
<h3 id="基本元素开采" class="article-heading"><a href="#基本元素开采" class="headerlink" title="基本元素开采"></a>基本元素开采<a class="article-anchor" href="#基本元素开采" aria-hidden="true"></a></h3><p>下图为游戏中所有的七种基本元素</p>
<p><img src="img/minerals-01.png" alt=""></p>
<p>单个房间只会有一个元素矿产,所以若想获得多种矿产,玩家则得控制多个房间或与其他玩家建立贸易关系。</p>
<p><img src="img/mining_minerals.png" align="right">右图即为矿的示意图(灰色圆形),其上的字母代表了其种类。矿上需要建造<a href="/api/#StructureExtractor">Extractor(矿机)</a>(绿色虚线圆环,解锁于房间控制等级 6 级)方可进行开采。矿机建造后,玩家的 Creep 便可像采集能量源般的对矿用 <a href="/api/#Creep.harvest"><code>harvest</code>(采集)</a>并采取相应的元素。</p>
<h3 id="矿物合成" class="article-heading"><a href="#矿物合成" class="headerlink" title="矿物合成"></a>矿物合成<a class="article-anchor" href="#矿物合成" aria-hidden="true"></a></h3><p>基本元素本身无法被使用,得按照指定的合成路线被<a href="/api/#StructureLab"><strong>Lab(实验室)</strong></a>转化为化合物才能得以利用。</p>
<p><img src="img/minerals-02.png" alt=""></p>
<p>完成一个反应需要三个 lab :两个提供底物,一个进行反应及收集产物,lab 的间距不得超过两格。同一 lab 不可混合放置多种化合物,但却能同时为多个反应提供底物。</p>
<p><img src="img/2016-03-09_10-32-33.gif" align="right"></p>
<pre class="highlight undefined tab-undefined "><code><span class="token keyword">var</span> labs <span class="token operator">=</span> room<span class="token punctuation">.</span><span class="token function">find</span><span class="token punctuation">(</span>FIND_MY_STRUCTURES<span class="token punctuation">,</span>
<span class="token punctuation">{</span>filter<span class="token punctuation">:</span> <span class="token punctuation">{</span>structureType<span class="token punctuation">:</span> STRUCTURE_LAB<span class="token punctuation">}</span><span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
labs<span class="token punctuation">[</span><span class="token number">0</span><span class="token punctuation">]</span><span class="token punctuation">.</span><span class="token function">runReaction</span><span class="token punctuation">(</span>labs<span class="token punctuation">[</span><span class="token number">1</span><span class="token punctuation">]</span><span class="token punctuation">,</span> labs<span class="token punctuation">[</span><span class="token number">2</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token comment" spellcheck="true">// 下一 tick ...</span>
console<span class="token punctuation">.</span><span class="token function">log</span><span class="token punctuation">(</span>labs<span class="token punctuation">[</span><span class="token number">0</span><span class="token punctuation">]</span><span class="token punctuation">.</span>mineralType<span class="token punctuation">)</span> <span class="token comment" spellcheck="true">// -> OH</span>
console<span class="token punctuation">.</span><span class="token function">log</span><span class="token punctuation">(</span>labs<span class="token punctuation">[</span><span class="token number">1</span><span class="token punctuation">]</span><span class="token punctuation">.</span>mineralType<span class="token punctuation">)</span> <span class="token comment" spellcheck="true">// -> O</span>
console<span class="token punctuation">.</span><span class="token function">log</span><span class="token punctuation">(</span>labs<span class="token punctuation">[</span><span class="token number">2</span><span class="token punctuation">]</span><span class="token punctuation">.</span>mineralType<span class="token punctuation">)</span> <span class="token comment" spellcheck="true">// -> H</span></code></pre><h3 id="Creep-强化" class="article-heading"><a href="#Creep-强化" class="headerlink" title="Creep 强化"></a>Creep 强化<a class="article-anchor" href="#Creep-强化" aria-hidden="true"></a></h3><p>lab 除了能跑反应,还可用其存着的化合物来强化 Creep 的部件。</p>
<p>玩家可用 <a href="/api/#StructureLab.boostCreep"><code>StructureLab.boostCreep</code></a> 来强化 Creep 的<a href="creeps.html">部件</a>,各化合物的强化效果见下表。一个被强化过的部件能顶多个未被强化的部件。要想完全强化一个 creep ,玩家得逐一强化该 creep 的部件。 </p>
<p>强化一个部件需要 30 单位的化合物及 20 单位的能量,且一个部件只能被一种化合物强化。</p>
<style>
.minerals,
.commodities {
margin-top: 0 !important;
border: 0 !important;
width: 100%;
}
.minerals td,
.commodities td {
border-top: 1px solid #333;
color: #bbb;
background-color: #22242b;
font-size: 13px;
}
@media (min-width: 1280px) {
.minerals td:first-child {
white-space: nowrap;
}
}
.minerals td:nth-child(2) {
white-space: nowrap;
}
.minerals td:nth-child(3) {
text-align: center;
}
.minerals td:nth-child(4) {
min-width: 87px;
}
.minerals code {
background-color: #333;
color: #eee;
word-break: break-all;
}
.minerals img,
.commodities img {
margin-right: 5px;
vertical-align: middle;
}
.minerals__divider th {
background-color: #333;
color: #ffe099;
text-align: center;
font-size: 13px;
}
.minerals__head th,
.commodities__head th{
background-color: #22242b;
color: #ccc;
font-weight: normal !important;
font-size: 11px;
}
.commodities em {
font-style: normal;
color: #eaeaea;
}
.commodities td {
padding: 10px 15px !important;
}
</style>
<div class="collapsible-table">
<div class="collapsible-table__header">
<i class="fa fa-plus-square"></i>
<span>矿物化合物</span>
<em>(点击展开)</em>
</div>
<div class="collapsible-table__content">
<table class="minerals">
<colgroup>
<col>
<col>
<col>
<col>
</colgroup>
<tbody>
<tr class="minerals__head">
<th>名称</th>
<th>化学式</th>
<th>合成时间</th>
<th>影响部件</th>
<th>效果</th>
</tr>
<tr class="minerals__divider">
<th colspan="5" align="center">基本元素</th>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/OH.png" alt="">hydroxide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/H.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/O.png" alt=""></td>
<td>20</td>
<td>—</td>
<td>—</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/ZK.png" alt="">zynthium keanite</td>
<td><img src="//static.screeps.com/upload/mineral-icons/Z.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/K.png" alt=""></td>
<td>5</td>
<td>—</td>
<td>—</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/UL.png" alt="">utrium lemergite</td>
<td><img src="//static.screeps.com/upload/mineral-icons/U.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/L.png" alt=""></td>
<td>5</td>
<td>—</td>
<td>—</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/G.png" alt="">ghodium</td>
<td><img src="//static.screeps.com/upload/mineral-icons/ZK.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/UL.png" alt=""></td>
<td>5</td>
<td>—</td>
<td>—</td>
</tr>
<tr class="minerals__divider">
<th colspan="5" align="center">一级化合物</th>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/UH.png" alt="">utrium hydride</td>
<td><img src="//static.screeps.com/upload/mineral-icons/U.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/H.png" alt=""></td>
<td>10</td>
<td><code>ATTACK</code></td>
<td>+100% <code>attack</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/UO.png" alt="">utrium oxide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/U.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/O.png" alt=""></td>
<td>10</td>
<td><code>WORK</code></td>
<td>+200% <code>harvest</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/KH.png" alt="">keanium hydride</td>
<td><img src="//static.screeps.com/upload/mineral-icons/K.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/H.png" alt=""></td>
<td>10</td>
<td><code>CARRY</code></td>
<td>+50 容量</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/KO.png" alt="">keanium oxide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/K.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/O.png" alt=""></td>
<td>10</td>
<td><code>RANGED_ATTACK</code></td>
<td>+100% <code>rangedAttack</code> 和 <code>rangedMassAttack</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/LH.png" alt="">lemergium hydride</td>
<td><img src="//static.screeps.com/upload/mineral-icons/L.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/H.png" alt=""></td>
<td>15</td>
<td><code>WORK</code></td>
<td>+50% <code>repair</code> 和 <code>build</code> 效率但不增加其能量消耗</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/LO.png" alt="">lemergium oxide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/L.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/O.png" alt=""></td>
<td>10</td>
<td><code>HEAL</code></td>
<td>+100% <code>heal</code> 和 <code>rangedHeal</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/ZH.png" alt="">zynthium hydride</td>
<td><img src="//static.screeps.com/upload/mineral-icons/Z.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/H.png" alt=""></td>
<td>20</td>
<td><code>WORK</code></td>
<td>+100% <code>dismantle</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/ZO.png" alt="">zynthium oxide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/Z.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/O.png" alt=""></td>
<td>10</td>
<td><code>MOVE</code></td>
<td>+100% <a href="creeps.html#移动力">fatigue(疲劳值)</a> 减低速度</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/GH.png" alt="">ghodium hydride</td>
<td><img src="//static.screeps.com/upload/mineral-icons/G.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/H.png" alt=""></td>
<td>10</td>
<td><code>WORK</code></td>
<td>+50% <code>upgradeController</code> 效率但不增加其能量消耗</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/GO.png" alt="">ghodium oxide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/G.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/O.png" alt=""></td>
<td>10</td>
<td><code>TOUGH</code></td>
<td>30% 伤害减免</td>
</tr>
<tr class="minerals__divider">
<th colspan="5" align="center">二级化合物</th>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/UH2O.png" alt="">utrium acid</td>
<td><img src="//static.screeps.com/upload/mineral-icons/UH.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/OH.png" alt=""></td>
<td>5</td>
<td><code>ATTACK</code></td>
<td>+200% <code>attack</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/UHO2.png" alt="">utrium alkalide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/UO.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/OH.png" alt=""></td>
<td>5</td>
<td><code>WORK</code></td>
<td>+400% <code>harvest</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/KH2O.png" alt="">keanium acid</td>
<td><img src="//static.screeps.com/upload/mineral-icons/KH.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/OH.png" alt=""></td>
<td>5</td>
<td><code>CARRY</code></td>
<td>+100 容量</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/KHO2.png" alt="">keanium alkalide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/KO.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/OH.png" alt=""></td>
<td>5</td>
<td><code>RANGED_ATTACK</code></td>
<td>+200% <code>rangedAttack</code> 和 <code>rangedMassAttack</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/LH2O.png" alt="">lemergium acid</td>
<td><img src="//static.screeps.com/upload/mineral-icons/LH.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/OH.png" alt=""></td>
<td>10</td>
<td><code>WORK</code></td>
<td>+80% <code>repair</code> 和 <code>build</code> 效率但不增加其能量消耗</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/LHO2.png" alt="">lemergium alkalide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/LO.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/OH.png" alt=""></td>
<td>5</td>
<td><code>HEAL</code></td>
<td>+200% <code>heal</code> 和 <code>rangedHeal</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/ZH2O.png" alt="">zynthium acid</td>
<td><img src="//static.screeps.com/upload/mineral-icons/ZH.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/OH.png" alt=""></td>
<td>40</td>
<td><code>WORK</code></td>
<td>+200% <code>dismantle</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/ZHO2.png" alt="">zynthium alkalide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/ZO.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/OH.png" alt=""></td>
<td>5</td>
<td><code>MOVE</code></td>
<td>+200% <a href="creeps.html#移动力">fatigue(疲劳值)</a> 减低速度</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/GH2O.png" alt="">ghodium acid</td>
<td><img src="//static.screeps.com/upload/mineral-icons/GH.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/OH.png" alt=""></td>
<td>15</td>
<td><code>WORK</code></td>
<td>+80% <code>upgradeController</code> 效率但不增加其能量消耗</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/GHO2.png" alt="">ghodium alkalide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/GO.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/OH.png" alt=""></td>
<td>30</td>
<td><code>TOUGH</code></td>
<td>50% 伤害减免</td>
</tr>
<tr class="minerals__divider">
<th colspan="5" align="center">三级化合物</th>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XUH2O.png" alt="">catalyzed utrium acid</td>
<td><img src="//static.screeps.com/upload/mineral-icons/UH2O.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/X.png" alt=""></td>
<td>60</td>
<td><code>ATTACK</code></td>
<td>+300% <code>attack</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XUHO2.png" alt="">catalyzed utrium alkalide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/UHO2.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/X.png" alt=""></td>
<td>60</td>
<td><code>WORK</code></td>
<td>+600% <code>harvest</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XKH2O.png" alt="">catalyzed keanium acid</td>
<td><img src="//static.screeps.com/upload/mineral-icons/KH2O.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/X.png" alt=""></td>
<td>60</td>
<td><code>CARRY</code></td>
<td>+150 容量</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XKHO2.png" alt="">catalyzed keanium alkalide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/KHO2.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/X.png" alt=""></td>
<td>60</td>
<td><code>RANGED_ATTACK</code></td>
<td>+300% <code>rangedAttack</code> 和 <code>rangedMassAttack</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XLH2O.png" alt="">catalyzed lemergium acid</td>
<td><img src="//static.screeps.com/upload/mineral-icons/LH2O.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/X.png" alt=""></td>
<td>65</td>
<td><code>WORK</code></td>
<td>+100% <code>repair</code> 和 <code>build</code> 效率但不增加其能量消耗</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XLHO2.png" alt="">catalyzed lemergium alkalide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/LHO2.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/X.png" alt=""></td>
<td>60</td>
<td><code>HEAL</code></td>
<td>+300% <code>heal</code> and <code>rangedHeal</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XZH2O.png" alt="">catalyzed zynthium acid</td>
<td><img src="//static.screeps.com/upload/mineral-icons/ZH2O.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/X.png" alt=""></td>
<td>160</td>
<td><code>WORK</code></td>
<td>+300% <code>dismantle</code> 效率</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XZHO2.png" alt="">catalyzed zynthium alkalide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/ZHO2.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/X.png" alt=""></td>
<td>60</td>
<td><code>MOVE</code></td>
<td>+300% <a href="creeps.html#移动力">fatigue(疲劳值)</a> 减低速度</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XGH2O.png" alt="">catalyzed ghodium acid</td>
<td><img src="//static.screeps.com/upload/mineral-icons/GH2O.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/X.png" alt=""></td>
<td>80</td>
<td><code>WORK</code></td>
<td>+100% <code>upgradeController</code> 效率但不增加其能量消耗</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XGHO2.png" alt="">catalyzed ghodium alkalide</td>
<td><img src="//static.screeps.com/upload/mineral-icons/GHO2.png" alt=""> + <img src="//static.screeps.com/upload/mineral-icons/X.png" alt=""></td>
<td>150</td>
<td><code>TOUGH</code></td>
<td>70% 伤害减免</td>
</tr>
</tbody>
</table>
</div>
</div>
<p><strong>译者注:</strong>元素、化合物名称的各单词取首及为其符号简写,中文译名见下表。</p>
<div class="collapsible-table">
<div class="collapsible-table__header">
<i class="fa fa-plus-square"></i>
<span>矿物中译名</span>
<em>(点击展开)</em>
</div>
<div class="collapsible-table__content">
<table class="minerals">
<colgroup>
<col>
<col>
</colgroup>
<tbody>
<tr class="minerals__head">
<th>原名</th>
<th>译名</th>
</tr>
<tr class="minerals__divider">
<th colspan="5" align="center">基本元素</th>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/H.png" alt=""> HYDROGEN</td>
<td>氢</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/O.png" alt=""> OXYGEN</td>
<td>氧</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/U.png" alt=""> UTRIUM</td>
<td>奥纯</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/K.png" alt=""> KEANIUM</td>
<td>克安</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/L.png" alt=""> LEMERGIUM</td>
<td>灵摩</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/Z.png" alt=""> ZYNTHIUM</td>
<td>仁笛</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/X.png" alt=""> CATALYST</td>
<td>萃托</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/G.png" alt=""> GHODIUM</td>
<td>寇丁</td>
</tr>
<tr class="minerals__divider">
<th colspan="5" align="center">一级化合物</th>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/ZK.png" alt=""> zynthium keanite</td>
<td>仁克</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/UL.png" alt=""> utrium lemergite</td>
<td>奥灵</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/OH.png" alt=""> hydroxide</td>
<td>氢氧</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/UH.png" alt=""> utrium hydride</td>
<td>氢化奥纯</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/UO.png" alt=""> utrium oxide</td>
<td>氧化奥纯</td>
</tr>
<tr class="minerals__divider">
<th colspan="5" align="center">二级化合物</th>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/UH2O.png" alt=""> utrium acid</td>
<td>奥纯酸</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/UHO2.png" alt=""> utrium alkalide</td>
<td>奥纯碱</td>
</tr>
<tr class="minerals__divider">
<th colspan="5" align="center">三级化合物</th>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XUH2O.png" alt=""> catalyzed utrium acid</td>
<td>萃奥纯酸</td>
</tr>
<tr>
<td><img src="//static.screeps.com/upload/mineral-icons/XUHO2.png" alt=""> catalyzed utrium alkalide</td>
<td>萃奥纯碱</td>
</tr>
</tbody>
</table>
</div>
</div>
<h2 id="商品" class="article-heading"><a href="#商品" class="headerlink" title="商品"></a>商品<a class="article-anchor" href="#商品" aria-hidden="true"></a></h2><blockquote class="note info"><p><strong>从哪里获取:</strong> 高速公路房间中的 <a href="/api/#StructurePowerBank"><code>Deposit</code></a> 结构. <br>
<strong>怎么样获取:</strong> 派遣一个包含 <code>WORK</code> 身体部件的 creep 来 <a href="/api/#Creep.harvest"><code>采集</code></a> 它。<br>
<strong>用来干什么:</strong> 生产交易商品来赚取积分 (credits)。</p>
</blockquote>
<p>商品是 NPC 市场交易者最感兴趣的资源。这些资源除了被出售和赚取 credits 外没有其他任何作用。 生产高级商品是游戏中最赚钱的业务。</p>
<h3 id="采集" class="article-heading"><a href="#采集" class="headerlink" title="采集"></a>采集<a class="article-anchor" href="#采集" aria-hidden="true"></a></h3><p>您可以从“高速公路”房间中的沉积物中提取原始资源,“高速公路”是指地图上不同区域之间的房间。有4种原始资源:金属(Metal),硅(Silicon),生物质(Biomass),迷雾(Mist)。 它们在世界地图上并不是均匀分布的:每个地图象限(西北,东北,西南,东南)一种资源类型。</p>
<p><img src="img/commodities.png" alt=""></p>
<p>与矿物不同,这些沉积物(deposits)在采集(harvest)时会耗尽:采集的数量越多,其冷却时间也就越长。当您停止采集一段时间后,沉积物将会消失并重新出现在附近的其他地方。此外,如果某区块的沉积物都被消耗到一定水平之下,则会出现新的沉积物。</p>
<h3 id="基础商品" class="article-heading"><a href="#基础商品" class="headerlink" title="基础商品"></a>基础商品<a class="article-anchor" href="#基础商品" aria-hidden="true"></a></h3><p>出售原始资源可能不是很赚钱。这就是为什么最好建造一个 <a href="/api/#StructureFactory"><strong>工厂(Factory)</strong></a> (在 RCL 7 时解锁),以便 <a href="/api/#StructureFactory.produce">生产(<code>produce</code>)</a> 更复杂的商品的原因。</p>
<p>刚刚建立的工厂是没有等级的,这意味着它只能从各种现有资源中生产几种基本商品(下表中的“每一级”商品)。它们还可以用于以“压缩”任何资源。</p>
<div class="collapsible-table">
<div class="collapsible-table__header">
<i class="fa fa-plus-square"></i>
<span>压缩商品</span>
<em>(点击展开)</em>
<img src="img/commodities1.png" alt="">
</div>
<div class="collapsible-table__content">
<table class="commodities">
<tbody>
<tr class="commodities__head">
<th>产品</th><th>工厂等级</th><th>材料</th><th>冷却</th>
</tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/utrium_bar.png">Utrium bar × <em>100</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/U.png" alt="">Utrium × <em>500</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/lemergium_bar.png">Lemergium bar × <em>100</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/L.png" alt="">Lemergium × <em>500</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/zynthium_bar.png">Zynthium bar × <em>100</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/Z.png" alt="">Zynthium × <em>500</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/keanium_bar.png">Keanium bar × <em>100</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/K.png" alt="">Keanium × <em>500</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/ghodium_melt.png">Ghodium melt × <em>100</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/G.png" alt="">Ghodium × <em>500</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/oxidant.png">Oxidant × <em>100</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/O.png" alt="">Oxygen × <em>500</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/reductant.png">Reductant × <em>100</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/H.png" alt="">Hydrogen × <em>500</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/purifier.png">Purifier × <em>100</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/X.png" alt="">Catalyst × <em>500</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/battery.png">Battery × <em>50</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>600</em></td><td>10 ticks</td></tr>
</tbody>
</table>
</div>
</div>
<p>您也可以在需要时解压它们来恢复原始资源。</p>
<div class="collapsible-table">
<div class="collapsible-table__header">
<i class="fa fa-plus-square"></i>
<span>解压商品</span>
<em>(点击展开)</em>
<img src="img/commodities2.png" alt="">
</div>
<div class="collapsible-table__content">
<table class="commodities">
<tr class="commodities__head"><th>产品</th><th>工厂等级</th><th>材料</th><th>冷却</th></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/U.png" alt="">Utrium × <em>500</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/utrium_bar.png">Utrium bar × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/L.png" alt="">Lemergium × <em>500</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/lemergium_bar.png">Lemergium bar × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/Z.png" alt="">Zynthium × <em>500</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/zynthium_bar.png">Zynthium bar × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/K.png" alt="">Keanium × <em>500</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/keanium_bar.png">Keanium bar × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/G.png" alt="">Ghodium × <em>500</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/ghodium_melt.png">Ghodium melt × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/O.png" alt="">Oxygen × <em>500</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/oxidant.png">Oxidant × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/H.png" alt="">Hydrogen × <em>500</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/reductant.png">Reductant × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/X.png" alt="">Catalyst × <em>500</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/purifier.png">Purifier × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>200</em></td><td>20 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>500</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/battery.png">Battery × <em>50</em></td><td>10 ticks</td></tr>
</table>
</div>
</div>
<p>当您获得区域性沉积资源后,您就可以开始使用他们来生产其他基本商品。</p>
<div class="collapsible-table">
<div class="collapsible-table__header">
<i class="fa fa-plus-square"></i>
<span>基本区域性商品</span>
<em>(点击展开)</em>
<img src="img/commodities3.png" alt="">
</div>
<div class="collapsible-table__content">
<table class="commodities">
<tr class="commodities__head"><th>产品</th><th>工厂等级</th><th>材料</th><th>冷却</th></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/wire.png">Wire × <em>20</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/utrium_bar.png">Utrium bar × <em>20</em><br><img src="//static.screeps.com/upload/mineral-icons/silicon.png">Silicon × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>40</em></td><td>8 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/cell.png">Cell × <em>20</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/lemergium_bar.png">Lemergium bar × <em>20</em><br><img src="//static.screeps.com/upload/mineral-icons/biomass.png">Biomass × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>40</em></td><td>8 ticks</td>
</tr><tr><td><img src="//static.screeps.com/upload/mineral-icons/alloy.png">Alloy × <em>20</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/zynthium_bar.png">Zynthium bar × <em>20</em><br><img src="//static.screeps.com/upload/mineral-icons/metal.png">Metal × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>40</em></td><td>8 ticks</td></tr>
<tr><td><img src="//static.screeps.com/upload/mineral-icons/condensate.png">Condensate × <em>20</em></td><td>全等级通用</td><td><img src="//static.screeps.com/upload/mineral-icons/keanium_bar.png">Keanium bar × <em>20</em><br><img src="//static.screeps.com/upload/mineral-icons/mist.png">Mist × <em>100</em><br><img src="//static.screeps.com/upload/mineral-icons/energy.png">Energy × <em>40</em></td><td>8 ticks</td></tr>
</table>
</div>
</div>