-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfeed.json
More file actions
1022 lines (1022 loc) · 69.6 KB
/
feed.json
File metadata and controls
1022 lines (1022 loc) · 69.6 KB
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
{
"version": "https://jsonfeed.org/version/1",
"title": "RA2 现代地图教程",
"home_page_url": "https://ra2map.com/",
"feed_url": "https://ra2map.com/feed.json",
"description": "探索现代技术与 RA2 的融合",
"icon": "https://ra2map.com/avatar2.jpg",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
},
"items": [
{
"id": "",
"content_html": "<blockquote>\n<p>未完成</p>\n</blockquote>\n<h2>AI仇恨</h2>\n<p><a href=\"https://bbs.ra2diy.com/forum.php?mod=viewthread&tid=23550\">【教程】ai仇恨</a></p>\n<h2>树木外形速查</h2>\n<p>所对应的颜色,盟军阵营颜色为 DarkBlue,苏军阵营 DarkRed,第三阵营 DarkSky。颜色在 rulesmd 的<code>[Colors]</code> 中定</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/change-mission-text-color\" target=\"_blank\">https://ra2map.com/posts/change-mission-text-color</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/change-mission-text-color",
"title": "改变任务文本信息的颜色",
"date_modified": "2023-01-01T00:00:00.000Z",
"date_published": "2025-01-06T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>[[toc]]</p>\n<h2>多关任务的命名</h2>\n<p>YR1.001平台下,多关任务默认名称为</p>\n<pre><code> 盟军 苏联\nall01umd.map | sov01umd.map\nall0</code></pre>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/fa2-basic\" target=\"_blank\">https://ra2map.com/posts/fa2-basic</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/fa2-basic",
"title": "FA2基础教程收集",
"date_modified": "2024-03-10T00:00:00.000Z",
"date_published": "2025-01-06T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>主要</h2>\n<p>很基础的教程,建议所有新学<code>ini</code>代码修改的人从序章开始看。</p>\n<p>基于 Ares ,Ares 是一款扩展平台,相当于对原版的功能增强,解除了很多修改限制。</p>\n<p><TxCard title=</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/mk-ini\" target=\"_blank\">https://ra2map.com/posts/mk-ini</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/mk-ini",
"title": "MK的mod教程与代码词典与工具",
"date_modified": "2023-11-29T00:00:00.000Z",
"date_published": "2025-01-06T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自<a href=\"https://docs.qq.com/doc/DQnd6T293d01kblVO\">解决游戏无法运行等问题 - 腾讯文档</a></p>\n</blockquote>\n<p>::: info<br>\n前排提示:</p>\n<ul>\n<li>若你玩</li>\n</ul>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/repaire\" target=\"_blank\">https://ra2map.com/posts/repaire</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/repaire",
"title": "解决游戏无法运行等问题",
"date_modified": "2023-02-01T00:00:00.000Z",
"date_published": "2024-12-21T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>本文援引软件工程中软件需求与设计的相关理论和方法,对 Ra2 地图的设计进行探索。</p>\n</blockquote>\n<h2>必要性</h2>\n<p>一份地图的制作过程中,画地形和做触发虽然是主要工作,但并不是全部工作。前期的构思、设计同等重</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/map-design\" target=\"_blank\">https://ra2map.com/posts/map-design</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/map-design",
"title": "地图设计",
"date_modified": "2024-09-09T00:00:00.000Z",
"date_published": "2024-11-30T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>控制任务的整体难度,或者做难度分级。先讲方法后讲思想。</p>\n<h2>任务的总体难度</h2>\n<p>控制某一关卡的总体难度可以从以下角度入手:</p>\n<p><strong>平衡性</strong>:确保玩家和敌对势力之间的平衡。一般来说,作者总是让玩家的</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/difficulty-control\" target=\"_blank\">https://ra2map.com/posts/difficulty-control</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/difficulty-control",
"title": "任务难度控制",
"date_modified": "2024-02-21T00:00:00.000Z",
"date_published": "2024-11-29T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>此文参考了 NOG 的帖子</p>\n</blockquote>\n<p>::: tip<br>\n此文是关于 ini 的简单介绍,为地图服务,非正式教学。仅讨论<code>rulesmd.ini</code>。<br>\n:::</p>\n<p>代码(<code>rulesmd.ini</code>)规定了单位与全</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/ini-in-map\" target=\"_blank\">https://ra2map.com/posts/ini-in-map</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/ini-in-map",
"title": "修改代码并内置进地图、部分示例",
"date_modified": "2023-10-25T00:00:00.000Z",
"date_published": "2024-11-24T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>一份好的地图,尤其是任务图,必须经过充分测试才能发布。而地图测试在绝大多数时候都是对<strong>地图触发</strong>(包括 AI 触发)的测试。目前,地图测试的重要性虽然常被提起,但一直罕有具体的理论指导,总体处于</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/map-test\" target=\"_blank\">https://ra2map.com/posts/map-test</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/map-test",
"title": "地图测试理论",
"date_modified": "2024-09-11T00:00:00.000Z",
"date_published": "2024-11-22T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>Valaxy</h2>\n<p>Next Generation Static Blog Framework.</p>\n<p>Write your first post!</p>\n<h2>Usage</h2>\n<p>Modify `valaxy</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/hallow\" target=\"_blank\">https://ra2map.com/posts/hallow</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/hallow",
"title": "Hallow, Valaxy!",
"date_modified": "2023-09-01T00:00:00.000Z",
"date_published": "2024-09-22T03:40:50.677Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>解决地图编辑器问题</h2>\n<p><strong>FA2非常卡,甚至出错无法运行?</strong></p>\n<p>将下面附件 Final Alert ddraw fix.zip 解压后将文件放入地图编辑器根目录即可【 WIN10,WIN11</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/repaire-other\" target=\"_blank\">https://ra2map.com/posts/repaire-other</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/repaire-other",
"title": "调试FA2与游戏",
"date_modified": "2023-02-01T00:00:00.000Z",
"date_published": "2024-09-08T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>::: danger<br>\n此文已过时,更新的内容有待补充<br>\n:::</p>\n<h2>其他</h2>\n<p>部分内容有误,仅供参考:[警告!制作多人联机任务必须注意的 - 红警任务之家](<a href=\"http://www.pkuit.com/\">http://www.pkuit.com/</a></p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/about-multiple-map\" target=\"_blank\">https://ra2map.com/posts/about-multiple-map</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/about-multiple-map",
"title": "【未完成】多人地图相关",
"date_modified": "2011-07-09T00:00:00.000Z",
"date_published": "2024-08-31T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>::: tip<br>\n做地图时一定要<strong>经常备份</strong>吖<AFace face=\"nacho:16\"/>,免得地图报废追悔莫及。把地图文件按住<code>Ctrl</code>拖一份就行了。<br>\n:::</p>\n<p>值得注意的是,并非地图崩溃弹</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/map-debug\" target=\"_blank\">https://ra2map.com/posts/map-debug</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/map-debug",
"title": "地图调试与出错补救",
"date_modified": "2024-06-17T00:00:00.000Z",
"date_published": "2024-08-30T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>第一部分</h2>\n<p><TxCard title="高级触发系统设计-入门导引.zip" url="/attach/高级触发系统设计-入门导引.zip" author="邵利仁" date="2021-0</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/other-map-tutorial\" target=\"_blank\">https://ra2map.com/posts/other-map-tutorial</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/other-map-tutorial",
"title": "其他教程、零碎内容",
"date_modified": "2024-08-30T00:00:00.000Z",
"date_published": "2024-08-30T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>此文提供 ra2 地图渲染器的下载和使用方法。它可以将地图渲染生成全景图,供人参考和欣赏。</p>\n<blockquote>\n<p>部分内容参考了:[【工具教程】地图截图器](<a href=\"https://www.bilibili.com/read\">https://www.bilibili.com/read</a></p>\n</blockquote>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/map-renderer-guide/index\" target=\"_blank\">https://ra2map.com/posts/map-renderer-guide/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/map-renderer-guide/index",
"title": "地图渲染器及其用法",
"date_modified": "2023-11-02T00:00:00.000Z",
"date_published": "2024-07-22T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>在原版 YR 中,能直接实现随机的触发只有条件<code>51 随机延时</code>,现在咱将依此实现随机刷兵。虽说是刷兵,换成随机刷小木箱,设置核弹目标点之类的同理。</p>\n<p>根据需求的不同,随机刷兵也有多种方式,比如,固定</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/random-attack/index\" target=\"_blank\">https://ra2map.com/posts/random-attack/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/random-attack/index",
"title": "几种随机刷兵方式解析",
"date_modified": "2024-02-26T00:00:00.000Z",
"date_published": "2024-06-27T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p><TxCard title="硬核教程:手把手教你如何在两个小时内做一张好看的红警地图" url="<a href=\"https://www.bilibili.com/video/av55809332\">https://www.bilibili.com/video/av55809332</a>" author</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/some-fa2-video-tutorial\" target=\"_blank\">https://ra2map.com/posts/some-fa2-video-tutorial</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/some-fa2-video-tutorial",
"title": "一些FA2视频教程收集",
"date_modified": "2024-02-21T00:00:00.000Z",
"date_published": "2024-06-17T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>网站</h2>\n<ul>\n<li>RA2 技术论坛:<a href=\"https://bbs.ra2diy.com/\">红警DIY论坛</a></li>\n<li>原创任务发布与文字攻略论坛:[红警任务之家](<a href=\"https://www.pkuit.com/\">https://www.pkuit.com/</a></li>\n</ul>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/organizations\" target=\"_blank\">https://ra2map.com/posts/organizations</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/organizations",
"title": "相关组织与网站",
"date_modified": "2024-03-31T00:00:00.000Z",
"date_published": "2024-03-31T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>使用</h2>\n<p>触发结果<code>20 播放音乐</code>可以播放指定音乐,填注册名,只要你有这首音乐就可以。重复与否取决于 ini 设置。如果你想停止播放,可以新建一个静音音乐,并用代码指定它重复播放,最后用触发调用</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/music\" target=\"_blank\">https://ra2map.com/posts/music</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/music",
"title": "背景音乐的使用与添加",
"date_modified": "2024-03-10T00:00:00.000Z",
"date_published": "2024-03-10T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>多关任务的命名</h2>\n<p>YR1.001平台下,多关任务默认名称为</p>\n<pre><code> 盟军 苏联 \nall01umd.map | sov01umd.map\nall02umd.map</code></pre>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/multiple-mission\" target=\"_blank\">https://ra2map.com/posts/multiple-mission</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/multiple-mission",
"title": "多关任务的命名和自定义(含DTA)",
"date_modified": "2024-03-09T00:00:00.000Z",
"date_published": "2024-03-09T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>制作任务载入图和游戏载入图。</p>\n<h2>任务封面制作器改良版</h2>\n<p>坊间广为流传的任务封面制作器,由永恒叶改良:增加了不同方向的箭头贴图及超武图标</p>\n<p><TxDownload size='2.0MB' net</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/cover\" target=\"_blank\">https://ra2map.com/posts/cover</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/cover",
"title": "几个封面制作器",
"date_modified": "2019-08-28T00:00:00.000Z",
"date_published": "2024-03-07T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>游戏中出现的几乎所有文字,包括单位名称,任务剧情,任务名称等,都需要使用 RA2 语音编辑器编辑。</p>\n<p><TxDownload size='1.22MB' netdisk='' direct='语言编辑</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/csf\" target=\"_blank\">https://ra2map.com/posts/csf</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/csf",
"title": "语言编辑器",
"date_modified": "2018-10-01T00:00:00.000Z",
"date_published": "2024-03-06T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>可提取 mix 文件内的内容,比如 ini,地图,素材(被加密的无法提取),或是打包生成新的 mix 文件,在封装地图自带素材时会用到</p>\n<p><TxDownload size='1.04MB' netdi</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/xcc\" target=\"_blank\">https://ra2map.com/posts/xcc</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/xcc",
"title": "XCC:提取 MIX 中的文件",
"date_modified": "2020-02-21T00:00:00.000Z",
"date_published": "2024-03-06T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>含金量很高的一篇教程,全文上万字,非常详细地解析了地图的内部文本数据,解析了每个小节(如所属方、<code>[Basic]、[Structures]</code>)的键值的含义、作用以及注意事项。</p>\n<p>::: info<br>\n由于</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/about-map-internal-data-analysis\" target=\"_blank\">https://ra2map.com/posts/about-map-internal-data-analysis</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/about-map-internal-data-analysis",
"title": "(重要)关于地图内部数据解析",
"date_modified": "2023-09-24T00:00:00.000Z",
"date_published": "2024-02-29T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>即使不做MO地图,也值得一看</p>\n</blockquote>\n<p><TxCard title="[教程向]浅谈MO任务制作" url="<a href=\"https://www.bilibili.com/read/cv1018359\">https://www.bilibili.com/read/cv1018359</a>" author</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/about-mo\" target=\"_blank\">https://ra2map.com/posts/about-mo</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/about-mo",
"title": "心灵终结任务相关",
"date_modified": "2024-02-21T00:00:00.000Z",
"date_published": "2024-02-21T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>触发重复类型 1</h2>\n<blockquote>\n<p>作者:a351650226</p>\n</blockquote>\n<p>关于触发类型 1(摘录自任务核心内容制作手册,感谢Pzy 爱国者之热血 蜘蛛星云三位大师)</p>\n<p>触发类型有三种,人们所了解的大都只是两种,一个</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/some-other-triggers\" target=\"_blank\">https://ra2map.com/posts/some-other-triggers</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/some-other-triggers",
"title": "一些其他触发条目说明",
"date_modified": "2024-02-21T00:00:00.000Z",
"date_published": "2024-02-21T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>声音在<code>soundmd.ini</code>中,语音在<code>evamd.ini</code>中。如果想新加,参考添加背景音乐方法,单声道。</p>\n<blockquote>\n<p>也看:[MO 常用音效、语音和动画](<a href=\"https://www.bilibili.c\">https://www.bilibili.c</a></p>\n</blockquote>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/sound-and-speech\" target=\"_blank\">https://ra2map.com/posts/sound-and-speech</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/sound-and-speech",
"title": "常用的音效与语音",
"date_modified": "2024-02-21T00:00:00.000Z",
"date_published": "2024-02-21T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>触发刷的载具内成员开火</h2>\n<blockquote>\n<p>由轻稚天雪提供</p>\n</blockquote>\n<p>直接刷出带兵的 IFV 或者战斗要塞时,里面的兵不会开火,你可以让它先不装载,走到蓝线内,再装载,再进攻。<!--todo--></p>\n<h2>让地图上</h2>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/some-team-instance\" target=\"_blank\">https://ra2map.com/posts/some-team-instance</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/some-team-instance",
"title": "一些小队实例",
"date_modified": "2024-02-19T00:00:00.000Z",
"date_published": "2024-02-19T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>关于设置科技等级的触发组应用</h2>\n<blockquote>\n<p>作者:a351650226</p>\n</blockquote>\n<p>玩过YR原版盟军第5关的同志都知道开局是造不出黑鹰的,只有当棒子的飞机炸了尤里的船厂后才能造,这里就是用到了这个触发。</p>\n<p>`1</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/some-trigger-instance\" target=\"_blank\">https://ra2map.com/posts/some-trigger-instance</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/some-trigger-instance",
"title": "一些触发实例",
"date_modified": "2018-09-30T00:00:00.000Z",
"date_published": "2024-02-19T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>关联触发可以<strong>给同一个物体挂上多个触发</strong>,比如,可以做到让同一个物体在 <em>41 初次受损</em>,<em>42 一半生命值</em>,<em>43 红血</em> 时,都发出警告信息(这仨事件都需要关联物体,而物体的关联框里只能填</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/how-to-associate-triggers/index\" target=\"_blank\">https://ra2map.com/posts/how-to-associate-triggers/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/how-to-associate-triggers/index",
"title": "如何关联触发",
"date_modified": "2021-08-04T00:00:00.000Z",
"date_published": "2024-02-18T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:取自 SpiderNebula 的地图编辑器悬崖花式画法教程</p>\n</blockquote>\n<p>FA2 里面画悬崖是个很重要的技能……如果悬崖画得太直往往就给人一直瞎眼的感觉,所以现在来说说我画悬崖的一些技巧</p>\n<p>在</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/cliff-drawing-easy/index\" target=\"_blank\">https://ra2map.com/posts/cliff-drawing-easy/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/cliff-drawing-easy/index",
"title": "悬崖基础画法",
"date_modified": "2021-03-05T00:00:00.000Z",
"date_published": "2023-12-01T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:转载自 绝对_孤独 搬运的红警任务之家 pkarea 的文章</p>\n</blockquote>\n<p>前言:这套教程出自任务之家 pkarea 之手,也是咱的启蒙教程,私以为很通俗易懂,适合初学者,尤其是从零开始的新人.</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/easy-mission-creation-1/index\" target=\"_blank\">https://ra2map.com/posts/easy-mission-creation-1/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/easy-mission-creation-1/index",
"title": "任务简明制作教程-入门篇",
"date_modified": "2021-03-05T00:00:00.000Z",
"date_published": "2023-12-01T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:转载自 绝对_孤独 搬运的红警任务之家 pkarea 的文章</p>\n</blockquote>\n<p>前言:这套教程出自任务之家 pkarea 之手,也是咱的启蒙教程,私以为很通俗易懂,适合初学者,尤其是从零开始的新人.</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/easy-mission-creation-2/index\" target=\"_blank\">https://ra2map.com/posts/easy-mission-creation-2/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/easy-mission-creation-2/index",
"title": "任务简明制作教程-进阶篇",
"date_modified": "2021-03-05T00:00:00.000Z",
"date_published": "2023-12-01T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>全局</h2>\n<blockquote>\n<p>AuY</p>\n</blockquote>\n<p>FA2 -> 编辑 -> 光照设置 [Lighting]</p>\n<p>【图片】</p>\n<p>看第一栏,“环境照明”即为地图整体亮度,默认<code>1</code>(比较亮);“光照等级”为地形高度每增加 1 级时</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/map-lighting-and-lamp/index\" target=\"_blank\">https://ra2map.com/posts/map-lighting-and-lamp/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/map-lighting-and-lamp/index",
"title": "【未完成】地图的光照与灯光控制附示例",
"date_modified": "2021-03-05T00:00:00.000Z",
"date_published": "2023-12-01T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<center>——我该如何入坑地图制作?</center>\n<p>能点开阅读这篇文章,说明你对 RA2 地图制作有一定的兴趣,那么你该怎样开始地图制作呢<AFace face=\"nacho:31\"/>?</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/map-making-get-started/index\" target=\"_blank\">https://ra2map.com/posts/map-making-get-started/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/map-making-get-started/index",
"title": "地图制作入门引导",
"date_modified": "2021-03-05T00:00:00.000Z",
"date_published": "2023-12-01T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>此文章不讲RA2相关内容,而是讲电脑上的一些操作,帮你更顺畅、高效地使用电脑,也有助于RA2相关创作。</p>\n<p>这里都是简要说说,更多自己去了解,知乎B站用起来。</p>\n<p>::: danger<br>\n此文章内有不少我个</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/pc-operating-skills/index\" target=\"_blank\">https://ra2map.com/posts/pc-operating-skills/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/pc-operating-skills/index",
"title": "电脑相关配置",
"date_modified": "2023-12-01T00:00:00.000Z",
"date_published": "2023-12-01T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>宝典</h2>\n<p>2个宝典,包含许多教程和代码实例,很多内容已经过时。</p>\n<p><img src=\"https://ra2map.com/img/dict1.png\" alt=\"\"><img src=\"/img/dict2.png\" alt=\"\"></p>\n<p><TxDownload size='58.5MB'</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/other-ini-etc\" target=\"_blank\">https://ra2map.com/posts/other-ini-etc</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/other-ini-etc",
"title": "其他代码相关工具与教程",
"date_modified": "2023-11-29T00:00:00.000Z",
"date_published": "2023-11-29T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>制作地形需要 TMP Builder,具体看以下教程(主要前两个),注意新的地形只有放入 mix 文件(expandmd**.mix)中才能被地图编辑器和地图渲染器读取!</p>\n<ul>\n<li>[[注释]地形ini说</li>\n</ul>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/edit-terrain-etc\" target=\"_blank\">https://ra2map.com/posts/edit-terrain-etc</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/edit-terrain-etc",
"title": "修改地形,地形对象,覆盖图等",
"date_modified": "2023-11-28T00:00:00.000Z",
"date_published": "2023-11-28T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>介绍</h2>\n<p>TX (TerraineXpansion) 地形拓展包来自国外,给原版增加了很多新的地形,比如雪地城市,城市瀑布,各种悬崖,停机坪,火车道等。使用 TX 地形扩展包制作的地图绚丽无比。</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/tx-terrain\" target=\"_blank\">https://ra2map.com/posts/tx-terrain</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/tx-terrain",
"title": "使用 TX 地形拓展包",
"date_modified": "2023-11-10T00:00:00.000Z",
"date_published": "2023-11-10T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文为轻稚天雪对以下专栏内文章的简要概括,详情请看原文。Ra2map 不打算将专栏全文转载到这里。因为 B 站阅读足够好,转载只是无意义的重复劳动。</p>\n</blockquote>\n<p><TxCard title="</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/chaleb-art-designing-basic-tutorial\" target=\"_blank\">https://ra2map.com/posts/chaleb-art-designing-basic-tutorial</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/chaleb-art-designing-basic-tutorial",
"title": "ChaleB文集:RA2美工设计入门指引",
"date_modified": "2023-11-02T00:00:00.000Z",
"date_published": "2023-11-02T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>卡片</h2>\n<!---->\n<p>这一篇文章<br>\n<TxCard title="星空下的动员兵星空下的动员兵" url="<a href=\"https://www.bilibili.com/read/readlist/rl441\">https://www.bilibili.com/read/readlist/rl441</a></p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/cs\" target=\"_blank\">https://ra2map.com/posts/cs</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/cs",
"title": "卡片测试",
"date_modified": "2023-11-01T00:00:00.000Z",
"date_published": "2023-11-01T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>地图基本要求</h2>\n<ol>\n<li>\n<p>地形无明显错误</p>\n<p>一切任务地图或者说地图最基本的要求,不要出现诸如大片错海岸、多处地表白块等错误。</p>\n</li>\n<li>\n<p>不要轻易崩溃</p>\n<p>游戏出错往往让人沮丧,可以想象玩</p>\n</li>\n</ol>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/other-thinking-and-advice-about-map\" target=\"_blank\">https://ra2map.com/posts/other-thinking-and-advice-about-map</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/other-thinking-and-advice-about-map",
"title": "其他地图思想与忠告",
"date_modified": "2023-11-01T00:00:00.000Z",
"date_published": "2023-11-01T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文为轻稚天雪对以下专栏内文章的简要概括,详情请看原文。Ra2map 不打算将专栏全文转载到这里。因为 B 站阅读足够好,转载只是无意义的重复劳动。</p>\n</blockquote>\n<p><TxCard title="</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/chaleb-fa2-basic-tutorial\" target=\"_blank\">https://ra2map.com/posts/chaleb-fa2-basic-tutorial</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/chaleb-fa2-basic-tutorial",
"title": "ChaleB文集:FA2入门基础教程",
"date_modified": "2023-10-31T00:00:00.000Z",
"date_published": "2023-10-31T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文为轻稚天雪对以下专栏内文章的简要概括,详情请看原文。Ra2map 不打算将专栏全文转载到这里。因为 B 站阅读足够好,转载只是无意义的重复劳动。</p>\n</blockquote>\n<p>此为 ChaleB 录制的触发</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/chaleb-trigger-tutorial\" target=\"_blank\">https://ra2map.com/posts/chaleb-trigger-tutorial</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/chaleb-trigger-tutorial",
"title": "ChaleB视频集:触发与事件",
"date_modified": "2023-10-31T00:00:00.000Z",
"date_published": "2023-10-31T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>心灵终结3.3.6地图编辑器萌新教程,讲解 FA2 除地形以外的内容。杂谈系列会更注重于处理一些比较具体的问题</p>\n</blockquote>\n<p><TxCard title="不会游泳的企鹅24专栏文章" url="https:</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/qie-fa2-tutorial-based-mo\" target=\"_blank\">https://ra2map.com/posts/qie-fa2-tutorial-based-mo</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/qie-fa2-tutorial-based-mo",
"title": "不会游泳的企鹅:MO地编教程",
"date_modified": "2023-10-31T00:00:00.000Z",
"date_published": "2023-10-31T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文为轻稚天雪对以下专栏内文章的简要概括和节选,详情请看原文。不做MO也值得一看,专栏后面触发相关的内容案例很多,比较有深度,含金量很高。</p>\n</blockquote>\n<p><TxCard title="335-3</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/ymlq-fa2-tutorial-based-mo\" target=\"_blank\">https://ra2map.com/posts/ymlq-fa2-tutorial-based-mo</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/ymlq-fa2-tutorial-based-mo",
"title": "叶墨冷泉文集:MO地编教程",
"date_modified": "2023-10-31T00:00:00.000Z",
"date_published": "2023-10-31T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>介绍</h2>\n<blockquote>\n<p>FA2sp 是 secsome 发起的一个引擎扩展项目,旨在为 FinalAlert2 提供一组基于 FA2pp 和 Syringe 的<strong>新功能和修复程序</strong>,以允许注入代码。虽然</p>\n</blockquote>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/fa2sp\" target=\"_blank\">https://ra2map.com/posts/fa2sp</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/fa2sp",
"title": "FA2sp:增强版地编",
"date_modified": "2023-10-25T00:00:00.000Z",
"date_published": "2023-10-25T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p><TxCard title="关于PVP地图的创作给Modder们的一点小建议" url="<a href=\"https://www.bilibili.com/read/cv21830793/\">https://www.bilibili.com/read/cv21830793/</a>" author="一只不</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/some-suggestions-for-pvp-maps\" target=\"_blank\">https://ra2map.com/posts/some-suggestions-for-pvp-maps</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/some-suggestions-for-pvp-maps",
"title": "关于PVP地图创作的一点小建议",
"date_modified": "2023-02-13T00:00:00.000Z",
"date_published": "2023-02-14T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>介绍</h2>\n<p>复制粘贴地形是我们提高作图效率的好方法,通过它,我们可以快速铺设地表,或是发明许多“新地形”,实现很多地形块的兼容。</p>\n<p><img src=\"./easy.webp\" alt=\"\"></p>\n<p>按Ctrl+C开始复制,根据</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/copy-and-paste-terrain/index\" target=\"_blank\">https://ra2map.com/posts/copy-and-paste-terrain/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/copy-and-paste-terrain/index",
"title": "复制粘贴地形的几种运用",
"date_modified": "2021-02-28T00:00:00.000Z",
"date_published": "2022-08-31T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>内含很多新兴的MOD工具和教程,持续更新,推荐使用,与此网站互补。视频介绍:红警2 modder工具箱 正式版!发布.ini教程(修订版)",
"date_modified": "2010-03-31T00:00:00.000Z",
"date_published": "2021-09-05T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自[【教程】平台bug:注册号漂移 - 红警任务之家](<a href=\"http://pkuit.com/forum.php?mod=viewthread&tid=204594&extra=\">http://pkuit.com/forum.php?mod=viewthread&tid=204594&extra=</a></p>\n</blockquote>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/platform-bug-registration-number-shift\" target=\"_blank\">https://ra2map.com/posts/platform-bug-registration-number-shift</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/platform-bug-registration-number-shift",
"title": "平台bug:注册号漂移",
"date_modified": "2021-05-16T00:00:00.000Z",
"date_published": "2021-05-23T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自<a href=\"http://pkuit.com/forum.php?mod=viewthread&tid=204443\">【教程】基地节点指南1.0 - 红警任务之家</a>,1.1新增了总</p>\n</blockquote>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/base-node-guide/index\" target=\"_blank\">https://ra2map.com/posts/base-node-guide/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/base-node-guide/index",
"title": "基地节点指南1.1",
"date_modified": "2021-01-28T00:00:00.000Z",
"date_published": "2021-01-28T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自[【教程】高级触发教程:电力连锁 - 红警任务之家](<a href=\"http://pkuit.com/forum.php?mod=viewthread&tid=204435&extra=\">http://pkuit.com/forum.php?mod=viewthread&tid=204435&extra=</a></p>\n</blockquote>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/advanced-trigger-tutorial-power-interlock\" target=\"_blank\">https://ra2map.com/posts/advanced-trigger-tutorial-power-interlock</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/advanced-trigger-tutorial-power-interlock",
"title": "高级触发教程:电力连锁",
"date_modified": "2021-01-23T00:00:00.000Z",
"date_published": "2021-01-23T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p><TxCard title="红警2新人地图制作者需要有的几项觉悟" url="<a href=\"https://www.bilibili.com/read/cv9263799\">https://www.bilibili.com/read/cv9263799</a>" author="晓星残月" date=</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/new-mapper-needs-several-awareness\" target=\"_blank\">https://ra2map.com/posts/new-mapper-needs-several-awareness</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/new-mapper-needs-several-awareness",
"title": "新人地图制作者要有的几项觉悟",
"date_modified": "2021-01-14T00:00:00.000Z",
"date_published": "2021-01-14T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自[【教程】高级触发教程:字幕队列 - 红警任务之家](<a href=\"http://pkuit.com/forum.php?mod=viewthread&tid=204171&extra=\">http://pkuit.com/forum.php?mod=viewthread&tid=204171&extra=</a></p>\n</blockquote>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/advanced-trigger-tutorial-subtitle-queue\" target=\"_blank\">https://ra2map.com/posts/advanced-trigger-tutorial-subtitle-queue</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/advanced-trigger-tutorial-subtitle-queue",
"title": "高级触发教程:字幕队列",
"date_modified": "2020-08-02T05:21:48.000Z",
"date_published": "2020-08-02T05:21:48.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自<a href=\"http://pkuit.com/forum.php?mod=viewthread&tid=204170\">【教程】高级触发教程:帧计时 - 红警任务之家</a></p>\n</blockquote>\n<p>**警告:</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/advanced-trigger-tutorial-frame-timing\" target=\"_blank\">https://ra2map.com/posts/advanced-trigger-tutorial-frame-timing</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/advanced-trigger-tutorial-frame-timing",
"title": "高级触发教程:帧计时",
"date_modified": "2020-08-02T03:59:50.000Z",
"date_published": "2020-08-02T03:59:50.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p><TxDownload size='56.4KB' netdisk='' direct='特遣脚本小队AI触发全教程(by prry).docx' name='特遣脚本小队AI触发全教程(by prr</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/team-complete-tutorial\" target=\"_blank\">https://ra2map.com/posts/team-complete-tutorial</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/team-complete-tutorial",
"title": "(重要)特遣脚本小队AI触发全教程",
"date_modified": "2020-04-16T00:00:00.000Z",
"date_published": "2020-04-16T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自作者:贴吧@a351650226的文章</p>\n</blockquote>\n<h2>地形</h2>\n<p>这个东西我想已经是被讨论烂了的东西了,贴吧的一些观点我也看过,事实上就我个人经验而言,地形在任务中的确或多或少的是一</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/some-mission-thinking\" target=\"_blank\">https://ra2map.com/posts/some-mission-thinking</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/some-mission-thinking",
"title": "一些任务地图思想",
"date_modified": "2019-08-28T00:00:00.000Z",
"date_published": "2019-08-28T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自<a href=\"http://www.pkuit.com/forum.php?mod=viewthread&tid=203415\">【教程】战略任务设计四原则 - 红警任务之家</a></p>\n</blockquote>\n<p>首先</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/the-four-principles-of-strategic-mission-design\" target=\"_blank\">https://ra2map.com/posts/the-four-principles-of-strategic-mission-design</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/the-four-principles-of-strategic-mission-design",
"title": "战略任务设计四原则",
"date_modified": "2019-05-20T00:00:00.000Z",
"date_published": "2019-05-20T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p>::: danger<br>\n本文很多内容未经测试,可能是错误或过时的<br>\n:::</p>\n<h2>任务制作细节 1</h2>\n<blockquote>\n<p>作者:未知</p>\n</blockquote>\n<p><strong>如何改变单位和建筑的属性</strong>:使用ini编辑器,新建要改变属性的单位和建筑的s</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/mission-tips\" target=\"_blank\">https://ra2map.com/posts/mission-tips</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/mission-tips",
"title": "任务制作细节经验",
"date_modified": "2016-02-12T00:00:00.000Z",
"date_published": "2019-01-17T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>地图编辑器常见错误揭示及补救方法</h2>\n<blockquote>\n<p>Ra2map:本节转载自[CJ帝教您:地图编辑器常见错误揭示及补救方法_红色警戒吧](<a href=\"http://tieba.baidu.com/p/657117454\">http://tieba.baidu.com/p/657117454</a></p>\n</blockquote>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/some-mistake-and-bug\" target=\"_blank\">https://ra2map.com/posts/some-mistake-and-bug</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/some-mistake-and-bug",
"title": "一些常见错误与bug",
"date_modified": "2018-09-16T00:00:00.000Z",
"date_published": "2018-09-16T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<h2>1</h2>\n<ol>\n<li>红警地图编辑器并不存在抽象数字变量的直接表达方式,均只能以抽象方式存在。</li>\n<li>抽象变量之间可以比较大小,但必须通过一定的过程进行抽象的信息转化。</li>\n<li>抽象变量可以以抽象的方式进行</li>\n</ol>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/the-theory-of-ra2-mission-variables\" target=\"_blank\">https://ra2map.com/posts/the-theory-of-ra2-mission-variables</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/the-theory-of-ra2-mission-variables",
"title": "红警任务变量论",
"date_modified": "2018-07-12T00:00:00.000Z",
"date_published": "2018-07-12T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<p><em>By:MorgensternHXD</em></p>\n<p>自2000年Westwood发布RA2至今已有17载的光华春秋,在这漫漫的17年中,与其相关的DIY技术也在广大爱好者的不断研究和探索中取得了巨大的发展,优秀</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/mapper-core-thinking-guide/index\" target=\"_blank\">https://ra2map.com/posts/mapper-core-thinking-guide/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/mapper-core-thinking-guide/index",
"title": "mapper核心思维指导",
"date_modified": "2018-03-01T00:00:00.000Z",
"date_published": "2018-03-01T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自[平台差异:载具移出地图边界时内部装载物的被摧毁判定 - 红警任务之家](<a href=\"http://www.pkuit.com/forum.php?mod=viewthread&tid\">http://www.pkuit.com/forum.php?mod=viewthread&tid</a></p>\n</blockquote>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/platform-difference-about-vehicle-leaves-map\" target=\"_blank\">https://ra2map.com/posts/platform-difference-about-vehicle-leaves-map</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/platform-difference-about-vehicle-leaves-map",
"title": "平台差异:载具离开地图时乘员的被摧毁判定",
"date_modified": "2017-07-27T00:00:00.000Z",
"date_published": "2017-07-27T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自贴吧<a href=\"http://tieba.baidu.com/p/3295120644\">城市地图的详细制作教程</a>,原帖作者:无敌和谐弹</p>\n</blockquote>\n<p>我接触地图制作的时间也不短了,一直想写点能</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/city-maps-creating/index\" target=\"_blank\">https://ra2map.com/posts/city-maps-creating/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/city-maps-creating/index",
"title": "城市地图的详细制作教程",
"date_modified": "2014-09-08T00:00:00.000Z",
"date_published": "2014-09-08T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自贴吧<a href=\"https://tieba.baidu.com/p/3165093077\">【红警地图美化细化基础教程】By:0402yjl</a>,原帖作者:零肆酱</p>\n</blockquote>\n<p>本教程仅为新手美化</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/map-beautification-and-refinement/index\" target=\"_blank\">https://ra2map.com/posts/map-beautification-and-refinement/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/map-beautification-and-refinement/index",
"title": "地图美化细化基础教程",
"date_modified": "2014-07-14T00:00:00.000Z",
"date_published": "2014-07-14T00:00:00.000Z",
"author": {
"name": "天雪酱",
"url": "https://valaxy.site"
}
},
{
"id": "",
"content_html": "<blockquote>\n<p>Ra2map:本文转载自贴吧,原帖作者:格林·斯内克</p>\n</blockquote>\n<h2>【制作城市图城区部分的基本流程】</h2>\n<p>地形→大路→小路→红色水泥→草地→细节物品</p>\n<h2>【道路是基础】</h2>\n<p>道路不仅是地表装饰,**更是</p>\n<br/><p>访问 <a href=\"https://ra2map.com/posts/snake-city-maps-experience/index\" target=\"_blank\">https://ra2map.com/posts/snake-city-maps-experience/index</a> 阅读全文。</p>",
"url": "https://ra2map.com/posts/snake-city-maps-experience/index",