-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.json
More file actions
592 lines (592 loc) · 16.2 KB
/
Copy pathindex.json
File metadata and controls
592 lines (592 loc) · 16.2 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
{
"format_version": 1,
"data_version": 17,
"updated": "2026-03-22T19:54:07.067Z",
"announcement": null,
"categories": [
{
"id": "basic",
"name": "基础脚本",
"name_en": "Basics",
"desc": "Python 基础功能演示",
"desc_en": "Python fundamentals & demos",
"icon": "curlybraces",
"sort": 1,
"color": "#4A90D9"
},
{
"id": "ui",
"name": "UI 界面",
"name_en": "UI",
"desc": "原生 iOS 界面开发",
"desc_en": "Native iOS UI development",
"icon": "paintbrush.fill",
"sort": 2,
"color": "#E85D75"
},
{
"id": "games",
"name": "游戏",
"name_en": "Games",
"desc": "Scene 模块 2D 游戏",
"desc_en": "2D games with Scene module",
"icon": "gamecontroller.fill",
"sort": 3,
"color": "#50C878"
},
{
"id": "widgets",
"name": "小组件",
"name_en": "Widgets",
"desc": "桌面小组件脚本",
"desc_en": "Home screen widget scripts",
"icon": "square.grid.2x2",
"sort": 4,
"color": "#F5A623"
},
{
"id": "other",
"name": "其他格式",
"name_en": "Other Formats",
"desc": "HTML / Markdown / JS",
"desc_en": "HTML / Markdown / JS",
"icon": "globe",
"sort": 5,
"color": "#9B59B6"
}
],
"featured": [],
"scripts": [
{
"id": "brick_breaker",
"name": "霓虹弹球",
"name_en": "Neon Brick Breaker",
"desc": "经典打砖块重制版。60级关卡、7种道具、连击火焰、粒子爆炸、HUD安全区适配",
"desc_en": "Classic brick breaker with 60 levels, 7 power-ups, combo flames, particle effects",
"category": "games",
"file": "scripts/games/brick_breaker.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "官方",
"author_en": "Official",
"tags": [
"scene",
"touch",
"particle",
"game",
"brick"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 627
},
{
"id": "space_shooter",
"name": "太空射击",
"name_en": "Space Shooter",
"desc": "纵向卷轴射击游戏。手指控制飞船,自动射击,4种敌机、Boss战、连击系统、粒子爆炸",
"desc_en": "Vertical shooter with 4 enemy types, boss fights, combo system, particle explosions",
"category": "games",
"file": "scripts/games/space_shooter.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "官方",
"author_en": "Official",
"tags": [
"scene",
"touch",
"particle",
"game",
"shooter"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 352
},
{
"id": "gravity_maze",
"name": "重力迷宫",
"name_en": "Gravity Maze",
"desc": "利用设备重力感应控制小球穿越迷宫,收集星星,躲避障碍",
"desc_en": "Tilt your device to guide the ball through mazes, collect stars, avoid obstacles",
"category": "games",
"file": "scripts/games/gravity_maze.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "官方",
"author_en": "Official",
"tags": [
"scene",
"gravity",
"accelerometer",
"game",
"maze"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 298
},
{
"id": "neon_snake",
"name": "霓虹贪吃蛇",
"name_en": "Neon Snake",
"desc": "赛博朋克风贪吃蛇。方向键+滑动操控、虚拟方向键、墙壁障碍、道具系统、连击计分",
"desc_en": "Cyberpunk snake game with D-pad + swipe controls, wall obstacles, power-ups, combo scoring",
"category": "games",
"file": "scripts/games/neon_snake.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "官方",
"author_en": "Official",
"tags": [
"scene",
"touch",
"game",
"snake",
"dpad"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 500
},
{
"id": "jump_tower",
"name": "无尽跳塔",
"name_en": "Endless Jump Tower",
"desc": "无尽垂直跳跃游戏。触屏控制移动方向,自动弹跳,多种平台类型,越高难度越大",
"desc_en": "Endless vertical jumper with auto-bounce, multiple platform types, increasing difficulty",
"category": "games",
"file": "scripts/games/jump_tower.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "官方",
"author_en": "Official",
"tags": [
"scene",
"touch",
"game",
"jump",
"endless"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 350
},
{
"id": "whack_mole",
"name": "极速打地鼠",
"name_en": "Whack-a-Mole",
"desc": "限时打地鼠挑战。普通/金色/炸弹三种地鼠,连击加分,粒子特效,多关卡递进",
"desc_en": "Timed whack-a-mole with 3 mole types, combo bonuses, particle effects, progressive levels",
"category": "games",
"file": "scripts/games/whack_mole.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "官方",
"author_en": "Official",
"tags": [
"scene",
"touch",
"game",
"whack",
"timer"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 427
},
{
"id": "script_mmw6yzdm",
"name": "计算器",
"name_en": "计算器",
"desc": "iOS原生风格的计算器ui界面",
"desc_en": "iOS原生风格的计算器ui界面",
"category": "ui",
"file": "scripts/ui/script_mmw6yzdm.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "今晚打老虎",
"author_en": "今晚打老虎",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 144
},
{
"id": "script_mmw77ur1",
"name": "俄罗斯方块",
"name_en": "俄罗斯方块",
"desc": "俄罗斯方块小游戏,AI制作",
"desc_en": "俄罗斯方块小游戏,AI制作",
"category": "games",
"file": "scripts/games/script_mmw77ur1.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "今晚打老虎🐯",
"author_en": "今晚打老虎🐯",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 603
},
{
"id": "script_mmw8jszb",
"name": "霓虹塔防",
"name_en": "霓虹塔防",
"desc": "塔防游戏总共十次进攻",
"desc_en": "塔防游戏总共十次进攻",
"category": "games",
"file": "scripts/games/script_mmw8jszb.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "今晚打老虎",
"author_en": "今晚打老虎",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 616
},
{
"id": "script_mmw9b6wi",
"name": "水果忍者",
"name_en": "水果忍者",
"desc": "水果忍者儿童的回忆",
"desc_en": "水果忍者儿童的回忆",
"category": "games",
"file": "scripts/games/script_mmw9b6wi.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "今晚打老虎🐯",
"author_en": "今晚打老虎🐯",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 616
},
{
"id": "script_mmw9k80z",
"name": "节奏大师",
"name_en": "节奏大师",
"desc": "节奏大师你能玩的过吗",
"desc_en": "节奏大师你能玩的过吗",
"category": "games",
"file": "scripts/games/script_mmw9k80z.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "今晚打老虎",
"author_en": "今晚打老虎",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 563
},
{
"id": "community_2048游戏__by_今晚打老虎",
"name": "2048游戏 — by 今晚打老虎🐯",
"name_en": "2048游戏 — by 今晚打老虎🐯",
"desc": "[投稿] 2048游戏 — by 今晚打老虎🐯",
"desc_en": "[投稿] 2048游戏 — by 今晚打老虎🐯",
"category": "basic",
"file": "scripts/games/2048_mmw9n427.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "社区投稿",
"author_en": "社区投稿",
"tags": [
"community",
"basic"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 560
},
{
"id": "script_mmwa0ets",
"name": "习惯追踪器",
"name_en": "习惯追踪器",
"desc": "习惯追踪器",
"desc_en": "习惯追踪器",
"category": "widgets",
"file": "scripts/widgets/script_mmwa0ets.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "今晚打老虎🐯",
"author_en": "今晚打老虎🐯",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-18",
"updated": null,
"status": "active",
"lines": 95
},
{
"id": "script_mmx2zhqn",
"name": "汇率转换器",
"name_en": "汇率转换器",
"desc": "硬编码的,可以自己换api",
"desc_en": "硬编码的,可以自己换api",
"category": "widgets",
"file": "scripts/widgets/script_mmx2zhqn.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "今晚打老虎",
"author_en": "今晚打老虎",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-19",
"updated": null,
"status": "active",
"lines": 96
},
{
"id": "script_mmx89esh",
"name": "飞鸟",
"name_en": "飞鸟",
"desc": "太难了第一个柱子都过不了",
"desc_en": "太难了第一个柱子都过不了",
"category": "games",
"file": "scripts/games/script_mmx89esh.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "伟大的我",
"author_en": "伟大的我",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-19",
"updated": null,
"status": "active",
"lines": 201
},
{
"id": "script_mmxnexoi",
"name": "流量小组件",
"name_en": "流量小组件",
"desc": "这里省略了一万字",
"desc_en": "这里省略了一万字",
"category": "widgets",
"file": "scripts/widgets/script_mmxnexoi.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "Silence",
"author_en": "Silence",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-19",
"updated": null,
"status": "active",
"lines": 85
},
{
"id": "cookie_mmyqkjvd",
"name": "解析 Cookie,请认真看上面的提醒哦。",
"name_en": "解析 Cookie,请认真看上面的提醒哦。",
"desc": "这就是解析 Cookie",
"desc_en": "这就是解析 Cookie",
"category": "basic",
"file": "scripts/basic/cookie_mmyqkjvd.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "Silence",
"author_en": "Silence",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-20",
"updated": null,
"status": "active",
"lines": 51
},
{
"id": "script_mmyy8nf3",
"name": "计算器",
"name_en": "计算器",
"desc": "灰太狼开发",
"desc_en": "灰太狼开发",
"category": "ui",
"file": "scripts/ui/script_mmyy8nf3.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "计算器",
"author_en": "计算器",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-20",
"updated": null,
"status": "active",
"lines": 222
},
{
"id": "script_mmyzioeo",
"name": "这就是节假日",
"name_en": "这就是节假日",
"desc": "节假日小组件",
"desc_en": "节假日小组件",
"category": "widgets",
"file": "scripts/widgets/script_mmyzioeo.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "Silence",
"author_en": "Silence",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-20",
"updated": null,
"status": "active",
"lines": 85
},
{
"id": "script_mn0g9yri",
"name": "火柴人搭桥",
"name_en": "火柴人搭桥",
"desc": "经典搭桥小游戏,用手指按在屏幕上,桥就会开始增加长度.你要在两根柱子之间正确的把桥搭好才能正确过关,过长过短都会掉下悬崖!考验你的距离敏感度!",
"desc_en": "经典搭桥小游戏,用手指按在屏幕上,桥就会开始增加长度.你要在两根柱子之间正确的把桥搭好才能正确过关,过长过短都会掉下悬崖!考验你的距离敏感度!",
"category": "games",
"file": "scripts/games/script_mn0g9yri.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "XiaoYuan",
"author_en": "XiaoYuan",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-21",
"updated": null,
"status": "active",
"lines": 325
},
{
"id": "flight_mn1ryk35",
"name": "flight",
"name_en": "flight",
"desc": "一个供参考的文本模型,能生成简单但意思不全的句子",
"desc_en": "一个供参考的文本模型,能生成简单但意思不全的句子",
"category": "basic",
"file": "scripts/basic/flight_mn1ryk35.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "ioo",
"author_en": "ioo",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-22",
"updated": null,
"status": "active",
"lines": 69
},
{
"id": "web_crawler_mn26dhgw",
"name": "web_crawler",
"name_en": "web_crawler",
"desc": "爬虫测试",
"desc_en": "爬虫测试",
"category": "basic",
"file": "scripts/basic/web_crawler_mn26dhgw.py",
"thumbnail": null,
"version": 1,
"file_type": "py",
"author": "淮季",
"author_en": "淮季",
"tags": [
"community"
],
"requires": [],
"min_app_version": "1.5.0",
"added": "2026-03-22",
"updated": null,
"status": "active",
"lines": 971
}
]
}