File size: 637 Bytes
a8cb0a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/**

 * Data of all minecraft blocks used by the music command gennerator

 * Most of the data has been determined experimentally with minimal reference to publically available sources.

 * Each value of a 'music-note' is in the following format - 

 * {

 *      'name': String  

 *      'description': String

 *      'id': String

 *      'structure': String

 * }

 */

const Blocks = new Map([
    ["Guitar",{
    name: "Guitar",
    description: "green_wool",
    id:'concrete["instrument":"guitar"]',
    structure:""
    }],
    ["Bass",{
    name:"",
    description:"",
    id:"",
    structure:""    
    }]
])