@@ -5,7 +5,9 @@
// 长号 trombone
// 圆号 horn
// 上低音号 upperBass
+// 次中音号 tenorHorn
// 小军鼓 snareDrum
+// 打击乐 idiophonic
let instruments = {
flute: {
@@ -479,6 +481,105 @@ let instruments = {
referencePrice: 65
}
]
+ },
+ tenorHorn: {
+ name: '次中音号',
+ config: [
+ {
+ default: 1,
+ name: '标准配置',
+ marketPrice: 5800,
+ referencePrice: 3980,
+ checked: true,
+ texture: '白铜变音管磷铜发音管',
+ index: 12
+ default: 0,
+ name: '自备',
+ marketPrice: 0,
+ referencePrice: 0,
+ checked: false,
+ index: 99
+ }
+ ],
+ configuration: '降B调、结构:三立键 喇叭口直径:278mm、内管:13.4mm',
+ auxiliaries: [
+ index: 1,
+ name: '节拍器',
+ marketPrice: 120,
+ referencePrice: 95
+ index: 2,
+ name: '谱架',
+ marketPrice: 80,
+ referencePrice: 65
+ index: 3,
+ name: '活塞油',
+ marketPrice: 30,
+ referencePrice: 25
+ index: 7,
+ name: '调音管油',
+ index: 8,
+ name: '乐器维护',
+ marketPrice: 480,
+ referencePrice: 300
+ ]
+ idiophonic: {
+ name: '打击乐',
+ marketPrice: 3700,
+ referencePrice: 3190,
+ texture: '',
+ index: 13
+ configuration: '珍珠镍小军鼓,桦木鼓腔,高碳钢纱带',
@@ -402,7 +402,9 @@ export default {
'长号': 'trombone',
'圆号': 'horn',
'上低音号': 'upperBass',
- '小军鼓': 'snareDrum'
+ '小军鼓': 'snareDrum',
+ '次中音号': 'tenorHorn',
+ '打击乐': 'idiophonic'
return arr[type]
},