-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
953 lines (499 loc) · 35.4 KB
/
index.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="Hexo Theme Keep">
<meta name="description" content="Hexo Theme Keep">
<meta name="author" content="WisdomEquan">
<title>
阳光下の少年
</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="shortcut icon" href="https://pic.imgdb.cn/item/652e034cc458853aef735cea.jpg">
<link rel="stylesheet" href="/font/css/fontawesome.min.css">
<link rel="stylesheet" href="/font/css/regular.min.css">
<link rel="stylesheet" href="/font/css/solid.min.css">
<link rel="stylesheet" href="/font/css/brands.min.css">
<link rel="stylesheet" href="/css/custom.css">
<script class="keep-theme-configurations">
const KEEP = window.KEEP || {}
KEEP.hexo_config = {"hostname":"wisdomequan.github.io","root":"/","language":"zh-CN","path":"search.xml"}
KEEP.theme_config = {"language":"zh-CN","base_info":{"primary_color":"#badc58","title":"阳光下の少年","author":"WisdomEquan","avatar":"https://pic.imgdb.cn/item/652e034cc458853aef735cea.jpg","logo":"https://pic.imgdb.cn/item/652e034cc458853aef735cea.jpg","favicon":"https://pic.imgdb.cn/item/652e034cc458853aef735cea.jpg"},"menu":{"home":"/","archives":"/archives","tags":"/tags","categories":"/categories","links":"/links","tools":"/tools","about":"/about"},"first_screen":{"enable":true,"background_img":"/images/bg.svg","background_img_dark":"/images/bg.svg","description":"随缘应变觉无界,因果循环见自然","hitokoto":false},"social_contact":{"enable":false,"links":{"github":null,"weixin":null,"qq":null,"weibo":null,"zhihu":null,"twitter":null,"x":null,"facebook":null,"email":"m13619199464@163.com"}},"scroll":{"progress_bar":true,"percent":true,"hide_header":true},"home":{"announcement":null,"category":true,"tag":true,"post_datetime":"created"},"post":{"author_badge":{"enable":true,"level_badge":true,"custom_badge":["One","Two","Three"]},"word_count":{"wordcount":true,"min2read":true},"datetime_format":"YYYY-MM-DD HH:mm:ss","copyright_info":true,"share":false,"reward":{"enable":false,"img_link":null,"text":null,"icon":null}},"code_block":{"tools":{"enable":true,"style":"default"},"highlight_theme":"default"},"toc":{"enable":true,"number":false,"expand_all":false,"init_open":true,"layout":"right"},"website_count":{"busuanzi_count":{"enable":false,"site_uv":false,"site_pv":false,"page_pv":false}},"local_search":{"enable":true,"preload":true},"comment":{"enable":false,"use":"valine","valine":{"appid":null,"appkey":null,"server_urls":null,"placeholder":null},"gitalk":{"github_id":null,"github_admins":null,"repository":null,"client_id":null,"client_secret":null,"proxy":null},"twikoo":{"env_id":null,"region":null,"version":"1.6.36"},"waline":{"server_url":null,"reaction":false,"version":"3.2.1"},"giscus":{"repo":null,"repo_id":null,"category":"Announcements","category_id":null,"reactions_enabled":false},"artalk":{"server":null},"disqus":{"shortname":null}},"rss":{"enable":false},"lazyload":{"enable":false},"cdn":{"enable":false,"provider":"cdnjs"},"pjax":{"enable":false},"footer":{"since":2017,"word_count":false,"site_deploy":{"enable":false,"provider":"github","url":null},"record":{"enable":false,"list":[{"code":null,"link":null}]}},"inject":{"enable":true,"css":["/css/custom.css"],"js":[null]},"root":"","source_data":{"links":[{"name":"changingself","link":"https://yxchangingself.xyz/","description":"一个挣扎着想改变自己的少年","avatar":"https://yxchangingself.xyz/img/avatar.png"},{"name":"endlesspeak","link":"https://endlesspeak.github.io/","description":"瞽者无以与乎文章之观,聋者无以与乎钟鼓之声。岂唯形骸有聋盲哉?","avatar":"https://endlesspeak.github.io/images/avtar.png"}],"tools":[{"category":"Minecraft Mod","anchorId":"TWluZWNyYWZ0JTIwTW9k0"},{"name":"安全的装备(safe armor)","link":"https://github.com/WisdomEquan/mods/tree/master/Minecraft/safe_armmor","description":"强大的武器和安全的装备","image":"/images/tools/safe_armmor_body.png"},{"name":"打印机(printer)","link":"https://github.com/WisdomEquan/mods/tree/master/Minecraft/printer","description":"可以复制物品的打印机","image":"/images/tools/printer_logo.png"},{"name":"自动钓鱼盒(auto fish box)","link":"https://github.com/WisdomEquan/mods/tree/master/Minecraft/auto_fish_box","description":"模拟玩家击杀鱼获得掉落物的方块","image":"/images/mod.svg"},{"name":"核能熔炉(infinite smelter)","link":"https://github.com/WisdomEquan/mods/tree/master/Minecraft/infinite_smelter","description":"无限燃料的核能熔炉能够瞬间烧炼完成所有物品","image":"/images/mod.svg"},{"name":"更多维度(more world)","link":"https://github.com/WisdomEquan/mods/tree/master/Minecraft/more_world","description":"加入了矿石维度包括:煤、钻石、绿宝石、红石等","image":"/images/mod.svg"},{"name":"经验矿石(xpore)","link":"https://github.com/WisdomEquan/mods/tree/master/Minecraft/xpore","description":"加入了经验矿石","image":"/images/mod.svg"},{"category":"Sid Meier's Civilization VI Mod","anchorId":"U2lkJTIwTWVpZXIncyUyMENpdmlsaXphdGlvbiUyMFZJJTIwTW9k7"},{"name":"少年的出租屋(StringOD)","link":"https://steamcommunity.com/sharedfiles/filedetails/?id=2503117573","description":"工业区下新增建筑每回合建筑、城市加成资源","image":"/images/mod.svg"},{"name":"少年的野心(DefinCivilizationTraitBuilding)","link":"https://steamcommunity.com/sharedfiles/filedetails/?id=2504308659","description":"主机专用.好友联机模式下所有人都拥有该模组,但功能只允许主机(暂定为德国)使用","image":"/images/mod.svg"},{"category":"Northgard Mod","anchorId":"Tm9ydGhnYXJkJTIwTW9k10"},{"name":"萌新资源大礼包(cheatRes)","link":"https://steamcommunity.com/sharedfiles/filedetails/?id=3245924858","description":"巨大地图,普通难度,初始声望+100,每秒资源加成+2","image":"/images/mod.svg"},{"name":"萌新资源大礼包(cheatRes2)","link":"https://steamcommunity.com/sharedfiles/filedetails/?id=3246883042","description":"巨大地图,极其困难,初始声望+1000,每秒金钱+6,每秒其他资源+2","image":"/images/mod.svg"}]},"version":"4.2.3"}
KEEP.language_ago = {"second":"%s 秒前","minute":"%s 分钟前","hour":"%s 小时前","day":"%s 天前","week":"%s 周前","month":"%s 个月前","year":"%s 年前"}
KEEP.language_code_block = {"copy":"复制代码","copied":"已复制","fold":"折叠代码块","folded":"已折叠"}
KEEP.language_copy_copyright = {"copy":"复制版权信息","copied":"已复制","title":"原文标题","author":"原文作者","link":"原文链接"}
</script>
<meta name="generator" content="Hexo 5.4.0">
<style>.github-emoji { position: relative; display: inline-block; width: 1.2em; min-height: 1.2em; overflow: hidden; vertical-align: top; color: transparent; } .github-emoji > span { position: relative; z-index: 10; } .github-emoji img, .github-emoji .fancybox { margin: 0 !important; padding: 0 !important; border: none !important; outline: none !important; text-decoration: none !important; user-select: none !important; cursor: auto !important; } .github-emoji img { height: 1.2em !important; width: 1.2em !important; position: absolute !important; left: 50% !important; top: 50% !important; transform: translate(-50%, -50%) !important; user-select: none !important; cursor: auto !important; } .github-emoji-fallback { color: inherit; } .github-emoji-fallback img { opacity: 0 !important; }</style>
<link rel="alternate" href="/atom.xml" title="WisdomEquan" type="application/atom+xml">
</head>
<body>
<div class="progress-bar-container">
<span class="scroll-progress-bar"></span>
</div>
<main class="page-container border-box">
<!-- home first screen -->
<div class="first-screen-container border-box flex-center fade-in-down-animation">
<div class="first-screen-content border-box">
<div class="top-placeholder border-box"></div>
<div class="middle-placeholder border-box">
<div class="description border-box">
<div class="desc-item border-box"><span class="desc">随缘应变觉无界,因果循环见自然</span><span class="cursor">|</span></div>
</div>
</div>
<div class="bottom-placeholder border-box">
</div>
</div>
</div>
<!-- page content -->
<div class="page-main-content border-box is-home">
<div class="page-main-content-top">
<header class="header-wrapper transparent-1">
<div class="border-box header-content has-first-screen">
<div class="left flex-start border-box">
<a class="logo-image border-box" href="/">
<img src="https://pic.imgdb.cn/item/652e034cc458853aef735cea.jpg">
</a>
<a class="site-name border-box" href="/">
阳光下の少年
</a>
</div>
<div class="right border-box">
<div class="pc border-box">
<ul class="menu-list border-box">
<li class="menu-item flex-start border-box active">
<a class="menu-text-color border-box" href="/">
首页
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/archives">
归档
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/tags">
标签
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/categories">
分类
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/links">
友链
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/tools">
工具
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/about">
关于
</a>
</li>
<li class="menu-item search search-popup-trigger">
<i class="menu-text-color fas search fa-search"></i>
</li>
</ul>
</div>
<div class="mobile border-box flex-start">
<div class="icon-item search search-popup-trigger"><i class="fas fa-search"></i></div>
<div class="icon-item menu-bar">
<div class="menu-bar-middle"></div>
</div>
</div>
</div>
</div>
<div class="header-drawer">
<ul class="drawer-menu-list border-box">
<li class="drawer-menu-item border-box not-sub-menu active">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/">
首页
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/archives">
归档
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/tags">
标签
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/categories">
分类
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/links">
友链
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/tools">
工具
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/about">
关于
</a>
</label>
</li>
</ul>
</div>
<div class="window-mask"></div>
</header>
</div>
<div class="page-main-content-middle border-box">
<div class="main-content border-box">
<div class="home-content-container fade-in-down-animation">
<ul class="home-post-list border-box">
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/10/28/2024-10-28-keep-zhu-ti-ye-mian-ding-zhi-ji-lu/">
Keep主题页面定制记录
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>几个月前改配置没记录,现在忘了只好研究补记。</p>
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Mon Oct 28 2024 11:44:59 GMT+0800"
>2024-10-28 11:44:59</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Hexo/">Hexo</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/theme/">theme</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/10/28/2024-10-28-keep-zhu-ti-ye-mian-ding-zhi-ji-lu/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/05/14/2024-05-14-bei-jing-zhi-di-zi-yuan-jia-cheng-mo-zu/">
北境之地资源加成模组
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>记录一次<a class="link" target="_blank" rel="noopener" href="https://northgard.net/">Northgard(北境之地)<i class="fas fa-external-link-alt"></i></a>模组编写的过程</p>
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Tue May 14 2024 00:20:38 GMT+0800"
>2024-05-14 00:20:38</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Mod/">Mod</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Northgard/">Northgard</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/05/14/2024-05-14-bei-jing-zhi-di-zi-yuan-jia-cheng-mo-zu/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/02/25/2024-02-25-hexo-huan-jing-pei-zhi/">
Hexo环境配置
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>电脑有时会出现一些奇怪的问题要重装系统,导致很多环境要重新配置。Hexo是环境配置中最复杂的每次都要在百度查很久,为此今天重新配置环境就顺便写一篇文章来记录。</p>
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sun Feb 25 2024 03:19:21 GMT+0800"
>2024-02-25 03:19:21</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E7%8E%AF%E5%A2%83%E9%85%8D%E7%BD%AE/">环境配置</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Hexo/">Hexo</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/02/25/2024-02-25-hexo-huan-jing-pei-zhi/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2023/08/28/2023-08-28-node-js-kua-ping-tai-ju-yu-wang-xiao-xi-chuan-shu-yu-qnap-bu-shu-shou-ce/">
基于Node.js跨平台局域网消息传输与QNAP部署
</a>
</h3>
<div class="home-post-content keep-markdown-body">
0x1 引言0x1.1 目的与背景当我刚进入大学时,我得到了我的第一台游戏本。当时,我经常需要在手机和电脑之间传输文件和文档。最初,我使用QQ和手机热点来进行传输,这显得相当繁琐。后来,我尝试了蓝牙传输,但速度过慢。尽管我使用了小米的热点文件传输功能...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Mon Aug 28 2023 01:29:58 GMT+0800"
>2023-08-28 01:29:58</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Node-js/">Node.js</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/QNAP/">QNAP</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2023/08/28/2023-08-28-node-js-kua-ping-tai-ju-yu-wang-xiao-xi-chuan-shu-yu-qnap-bu-shu-shou-ce/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2023/07/01/2023-07-01-mcreator-zhi-zuo-zi-ding-yi-gong-zuo-tai/">
基于MCreator+Fabric+Forge的自定义工作台
</a>
</h3>
<div class="home-post-content keep-markdown-body">
前言玩Minecraft已经有9年了一直都想给Minecraft写Mod,但苦于不会写代码并且几年前就连搭建开发环境都一直没有成功。现在MCreator可以解决这些问题,只需要几分钟就能设计出属于你的Mod
名词释义模组 Modification 缩...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Jul 01 2023 10:39:54 GMT+0800"
>2023-07-01 10:39:54</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Minecraft/">Minecraft</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/MCreator/">MCreator</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2023/07/01/2023-07-01-mcreator-zhi-zuo-zi-ding-yi-gong-zuo-tai/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2023/06/24/2023-06-24-zhi-wu-da-zhan-jiang-shi-yang-guang-xiu-gai-qi/">
植物大战僵尸阳光修改器
</a>
</h3>
<div class="home-post-content keep-markdown-body">
前言一直都想搞一个植物大战僵尸的修改器,想通过学习自己制作一个
打算使用Cheat Engine修改器找到阳光的真正地址,然后再用易语言制作一个针对植物大战僵尸的阳光修改器
名词释义植物大战僵尸:可怕的僵尸即将入侵你的家,唯一的防御方式就是你栽种的植...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Jun 24 2023 11:34:56 GMT+0800"
>2023-06-24 11:34:56</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E6%98%93/">易</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/%E6%A4%8D%E7%89%A9%E5%A4%A7%E6%88%98%E5%83%B5%E5%B0%B8/">植物大战僵尸</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2023/06/24/2023-06-24-zhi-wu-da-zhan-jiang-shi-yang-guang-xiu-gai-qi/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
</ul>
<div class="paginator border-box flex-center">
<div class="border-box first-page paginator-btn not-allow">
<a class="border-box"><i class="fa-solid fa-angle-double-left"></i></a>
</div>
<div class="border-box paginator-btn">
<a class="border-box"
href="/"
><i class="fa-solid fa-chevron-left"></i></a>
</div>
<div class="page-number-box border-box flex-center">
<input class="page-number-input border-box base-style"
type="number"
value="1"
min="1"
max="2"
/><span class="delimiter base-style">/</span><span class="base-style">2</span>
</div>
<div class="border-box paginator-btn allowed">
<a class="border-box"
href="/page/2/"
><i class="fa-solid fa-chevron-right"></i></a>
</div>
<div class="border-box last-page paginator-btn allowed">
<a class="border-box"><i class="fa-solid fa-angle-double-right"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="page-main-content-bottom border-box">
<footer class="footer border-box">
<div class="copyright-info info-item">
© <span>2017</span> - 2024
<i class="fas fa-heart icon-animate"></i> <a href="/">WisdomEquan</a>
</div>
<div class="theme-info info-item">
由 <a target="_blank" href="https://hexo.io">Hexo</a> 驱动 & 主题 <a class="keep-version" target="_blank" href="https://github.com/XPoet/hexo-theme-keep">Keep</a>
</div>
</footer>
</div>
</div>
<!-- post tools -->
<!-- side tools -->
<div class="side-tools">
<div class="side-tools-container border-box side-tools-show-handle">
<ul class="side-tools-list side-tools-show-handle border-box">
<li class="tools-item tool-font-adjust-plus flex-center">
<i class="fas fa-search-plus"></i>
</li>
<li class="tools-item tool-font-adjust-minus flex-center">
<i class="fas fa-search-minus"></i>
</li>
<!-- toggle mode -->
<li class="tools-item tool-toggle-theme-mode flex-center">
<i class="fas fa-moon"></i>
</li>
<!-- rss -->
<!-- to bottom -->
<li class="tools-item tool-scroll-to-bottom flex-center">
<i class="fas fa-arrow-down"></i>
</li>
</ul>
<ul class="exposed-tools-list border-box">
<li class="tools-item tool-toggle-show flex-center">
<i class="fas fa-cog fa-spin"></i>
</li>
<li class="tools-item tool-scroll-to-top flex-center show-arrow">
<i class="arrow fas fa-arrow-up"></i>
<span class="percent"></span>
</li>
</ul>
</div>
</div>
<!-- image mask -->
<div class="zoom-in-image-mask">
<img class="zoom-in-image">
</div>
<!-- local search -->
<div class="search-pop-overlay">
<div class="popup search-popup">
<div class="search-header">
<span class="search-input-field-pre">
<i class="fas fa-keyboard"></i>
</span>
<div class="search-input-container">
<input autocomplete="off"
autocorrect="off"
autocapitalize="off"
placeholder="搜索..."
spellcheck="false"
type="search"
class="search-input"
>
</div>
<span class="close-popup-btn">
<i class="fas fa-times"></i>
</span>
</div>
<div id="search-result">
<div id="no-result">
<i class="fas fa-spinner fa-pulse fa-5x fa-fw"></i>
</div>
</div>
</div>
</div>
<!-- tablet toc -->
</main>
<!-- common js -->
<script src="/js/utils.js"></script>
<script src="/js/header-shrink.js"></script>
<script src="/js/back2top.js"></script>
<script src="/js/toggle-theme.js"></script>
<script src="/js/code-block.js"></script>
<script src="/js/main.js"></script>
<script src="/js/libs/anime.min.js"></script>
<!-- local search -->
<script src="/js/local-search.js"></script>
<!-- lazyload -->
<div class="">
<!-- home page -->
<script src="/js/page/home-page.js"></script>
<!-- post page -->
<!-- categories page -->
<!-- links page -->
<!-- photos page -->
<!-- tools page -->
</div>
<!-- mermaid -->
<!-- pjax -->
</body>
</html>