forked from jonsmy/glowers-radio
		
	add sus support
This commit is contained in:
		
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										49
									
								
								generate.js
									
									
									
									
									
								
							
							
						
						
									
										49
									
								
								generate.js
									
									
									
									
									
								
							| @@ -134,9 +134,10 @@ const radioEntries = [ | |||||||
|  |  | ||||||
|     // TODO: Add thumb |     // TODO: Add thumb | ||||||
|     RadioItem.new("southdakota") |     RadioItem.new("southdakota") | ||||||
|       .setMetadata("South Dakota", "Keeloh") |       .setMetadata("South Dakota", "Keeloh", "https://soundcloud.com/keelohproducer/southdakota") | ||||||
|       .addSource(RadioSource.new("audio/mp3") |       .addSource(RadioSource.new("audio/mp3") | ||||||
|         .setURL("x-gwm://wiki/southdakota.mp3")), |         .setURL("x-gwm://wiki/southdakota.mp3") | ||||||
|  |         .setThumbnailURL("mxc://glowers.club/FJfFhscJavurBvoEuRbykpmM")), | ||||||
|  |  | ||||||
|     RadioItem.new("dobson") |     RadioItem.new("dobson") | ||||||
|       .addSource(RadioSource.new("video/mp4") |       .addSource(RadioSource.new("video/mp4") | ||||||
| @@ -322,7 +323,49 @@ const radioEntries = [ | |||||||
|       .setNiggadata("tutorial", "570550d318f3c6dc5677b9d7") |       .setNiggadata("tutorial", "570550d318f3c6dc5677b9d7") | ||||||
|       .addSource(RadioSource.new("audio/mp3") |       .addSource(RadioSource.new("audio/mp3") | ||||||
|         .setURL("mxc://glowers.club/XZGliHHOkhcxCSUxKoIkgUlI") |         .setURL("mxc://glowers.club/XZGliHHOkhcxCSUxKoIkgUlI") | ||||||
|         .setThumbnailURL("mxc://glowers.club/nAaKRXuNBjltAYJbsLnjGusH")) |         .setThumbnailURL("mxc://glowers.club/nAaKRXuNBjltAYJbsLnjGusH")), | ||||||
|  |  | ||||||
|  |     RadioItem.new("imposterd") | ||||||
|  |       .setMetadata("Among Us Eurobeat Remix", "maki ligon", "https://soundcloud.com/maki-ligon-deez-nutz/among-us-drip-eurobeat-remix") | ||||||
|  |       .setTags([ "sus" ]) | ||||||
|  |       .addSource(RadioSource.new("audio/mp3") | ||||||
|  |         .setURL("x-gwm://include/imposterd.mp3") | ||||||
|  |         .setThumbnailURL("x-gwm://include/crewmate.gif")), | ||||||
|  |  | ||||||
|  |     RadioItem.new("dripmachine") | ||||||
|  |       .setMetadata("Amogus Drip Machine", "maki ligon", "https://soundcloud.com/maki-ligon-deez-nutz/amogus-drip-machine") | ||||||
|  |       .setTags([ "sus" ]) | ||||||
|  |       .addSource(RadioSource.new("audio/mp3") | ||||||
|  |         .setURL("mxc://glowers.club/DyboACFryZTCDeIgHtcRaBpL") | ||||||
|  |         .setThumbnailURL("mxc://glowers.club/VFehbVZaCVcNhQTYWuWRYTiM")), | ||||||
|  |  | ||||||
|  |     RadioItem.new("loneimposter") | ||||||
|  |       .setMetadata("Lone Impostor", "maki ligon", "https://www.youtube.com/watch?v=QbIckU4sXBM") | ||||||
|  |       .setTags([ "sus" ]) | ||||||
|  |       .addSource(RadioSource.new("audio/mp3") | ||||||
|  |         .setURL("mxc://glowers.club/oswdiINtTUUbQYEMEKpVmsHN") | ||||||
|  |         .setThumbnailURL("mxc://glowers.club/jYlptPwURJXVMBNivxlBFPuP")), | ||||||
|  |  | ||||||
|  |     RadioItem.new("amogusdrip") | ||||||
|  |       .setMetadata("Among Us Drip Theme Song", "Leonz", "https://youtu.be/grd-K33tOSM") | ||||||
|  |       .setTags([ "sus" ]) | ||||||
|  |       .addSource(RadioSource.new("audio/mp3") | ||||||
|  |         .setURL("mxc://glowers.club/xQHxUgpRUMtIkiBaszXiGAvh") | ||||||
|  |         .setThumbnailURL("mxc://glowers.club/erMHzidVOoqoWFXIxXAcozqW")), | ||||||
|  |  | ||||||
|  |     RadioItem.new("crewmate") | ||||||
|  |       .setMetadata("Among Us (Lofi Hip Hop Remix)", "Leonz", "https://youtu.be/gU39w8s54_Q") | ||||||
|  |       .setTags([ "sus" ]) | ||||||
|  |       .addSource(RadioSource.new("audio/mp3") | ||||||
|  |         .setURL("mxc://glowers.club/txMHzslGxRyDmNVsUCObJRzc") | ||||||
|  |         .setThumbnailURL("mxc://glowers.club/PfEBpatFHatQubohkgQThOor")), | ||||||
|  |  | ||||||
|  |     RadioItem.new("GETOUTOFMYHEAD") | ||||||
|  |       .setMetadata("GETOUTOFMYHEAD", "placeboing", "https://youtu.be/Xnv38FnLkbM") | ||||||
|  |       .setTags([ "sus" ]) | ||||||
|  |       .addSource(RadioSource.new("video/mp4") | ||||||
|  |         .setURL("mxc://glowers.club/sEtheeOyZlztUtQuHOzOJpOk") | ||||||
|  |         .setThumbnailURL("mxc://glowers.club/bJveZSEIXFsnEKdjDvwmmENo")) | ||||||
|  |  | ||||||
| ].filter(Boolean).map(a => a.serialize()).sort((a,b) => a.id.localeCompare(b.id)) | ].filter(Boolean).map(a => a.serialize()).sort((a,b) => a.id.localeCompare(b.id)) | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user