@@ -25,15 +25,6 @@ const fromHardcodedNamed = username => ({
25
25
text : username
26
26
} ) ;
27
27
28
- const fromHardcodedDiscord = async userId => {
29
- const res = await fetch ( `https://pmupdatereader.jeremygamer13.repl.co/user/${ userId } ` ) ;
30
- const json = await res . json ( ) ;
31
- return {
32
- image : json . avatarURL ,
33
- text : json . username
34
- } ;
35
- } ;
36
-
37
28
const addonDevelopers = [
38
29
{
39
30
userId : '34018398' ,
@@ -160,7 +151,6 @@ const pmApiDevelopers = [
160
151
'enderhacker'
161
152
] . map ( fromHardcodedGithub ) ;
162
153
163
- // todo: should translators be only named or...?
164
154
const pmTranslators = [
165
155
{
166
156
text : 'kolikiscool' ,
@@ -337,9 +327,89 @@ const pmTranslators = [
337
327
} ,
338
328
] ;
339
329
340
- const logoArtists = Promise . all ( [
341
- '593554048188416001'
342
- ] . map ( fromHardcodedDiscord ) ) ;
330
+ const pmCostumeSubmittors = [
331
+ // github accounts
332
+ {
333
+ text : 'budc123' ,
334
+ image : `https://github.com/budc123.png` ,
335
+ href : `https://github.com/budc123/` ,
336
+ } ,
337
+ {
338
+ text : 'concertalyis' ,
339
+ image : `https://github.com/concertalyis.png` ,
340
+ href : `https://github.com/concertalyis/` ,
341
+ } ,
342
+ {
343
+ text : 'WojtekCodesToday' ,
344
+ image : `https://github.com/WojtekCodesToday.png` ,
345
+ href : `https://github.com/WojtekCodesToday/` ,
346
+ } ,
347
+ // unknown
348
+ {
349
+ text : 'maroonmball' ,
350
+ image : `https://penguinmod.com/unknown_user.png` ,
351
+ href : "https://studio.penguinmod.com/credits.html#" ,
352
+ } ,
353
+ {
354
+ text : 'eviepepsi' ,
355
+ image : `https://penguinmod.com/unknown_user.png` ,
356
+ href : "https://studio.penguinmod.com/credits.html#" ,
357
+ } ,
358
+ {
359
+ text : '1340073' ,
360
+ image : `https://penguinmod.com/unknown_user.png` ,
361
+ href : "https://studio.penguinmod.com/credits.html#" ,
362
+ } ,
363
+ {
364
+ text : 'cubeycreator' ,
365
+ image : `https://penguinmod.com/unknown_user.png` ,
366
+ href : "https://studio.penguinmod.com/credits.html#" ,
367
+ } ,
368
+ {
369
+ text : 'novaspiderultra' ,
370
+ image : `https://penguinmod.com/unknown_user.png` ,
371
+ href : "https://studio.penguinmod.com/credits.html#" ,
372
+ } ,
373
+ {
374
+ text : 'poundpound0209' ,
375
+ image : `https://penguinmod.com/unknown_user.png` ,
376
+ href : "https://studio.penguinmod.com/credits.html#" ,
377
+ } ,
378
+ {
379
+ text : 'gdplayer1035' ,
380
+ image : `https://penguinmod.com/unknown_user.png` ,
381
+ href : "https://studio.penguinmod.com/credits.html#" ,
382
+ } ,
383
+ {
384
+ text : 'cognitixsammy' ,
385
+ image : `https://penguinmod.com/unknown_user.png` ,
386
+ href : "https://studio.penguinmod.com/credits.html#" ,
387
+ } ,
388
+ {
389
+ text : 'thebusyman' ,
390
+ image : `https://penguinmod.com/unknown_user.png` ,
391
+ href : "https://studio.penguinmod.com/credits.html#" ,
392
+ } ,
393
+ {
394
+ text : 'gen1x_lmao' ,
395
+ image : `https://penguinmod.com/unknown_user.png` ,
396
+ href : "https://studio.penguinmod.com/credits.html#" ,
397
+ } ,
398
+ ] ;
399
+ const pmSoundSubmittors = [
400
+ // github accounts
401
+ {
402
+ text : 'ddededodediamante' ,
403
+ image : `https://github.com/ddededodediamante.png` ,
404
+ href : `https://github.com/ddededodediamante/` ,
405
+ } ,
406
+ // unknown
407
+ {
408
+ text : 'maroonmball' ,
409
+ image : `https://penguinmod.com/unknown_user.png` ,
410
+ href : "https://studio.penguinmod.com/credits.html#" ,
411
+ } ,
412
+ ] ;
343
413
344
414
const extensionDevelopers = [
345
415
'GarboMuffin' ,
@@ -360,7 +430,7 @@ const pmExtensionDevelopers = [
360
430
'WAYLIVES' ,
361
431
'MrRedstonia' ,
362
432
'MikeDev101' ,
363
- 'BopShoes ' ,
433
+ 'liablelua ' ,
364
434
'AlexSchoolOH' ,
365
435
'Monochromasity' ,
366
436
'LilyMakesThings' ,
@@ -370,16 +440,17 @@ const pmExtensionDevelopers = [
370
440
'oc9x97' ,
371
441
'lego7set' ,
372
442
'mariocraft987' ,
373
- 'Ashimee '
443
+ 'AshimeeAlt '
374
444
] . map ( fromHardcodedGithub ) ;
375
445
376
446
export default {
377
447
addonDevelopers : shuffle ( addonDevelopers ) ,
378
448
pmDevelopers : shuffle ( pmDevelopers ) ,
379
- logoArtists : shuffle ( logoArtists ) ,
380
449
extensionDevelopers : shuffle ( extensionDevelopers ) ,
381
450
pmExtensionDevelopers : shuffle ( pmExtensionDevelopers ) ,
382
451
pmApiDevelopers : shuffle ( pmApiDevelopers ) ,
383
452
pmTranslators : shuffle ( pmTranslators ) ,
453
+ pmSoundSubmittors : shuffle ( pmSoundSubmittors ) ,
454
+ pmCostumeSubmittors : shuffle ( pmCostumeSubmittors ) ,
384
455
pmPullRequestDevelopers : shuffle ( pmPullRequestDevelopers )
385
456
} ;
0 commit comments