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
|
let MOD = (domain, id, x) => (x ? `${x}x ` : "") + (id.startsWith('#') ? '#' : "") + domain + ":" + id.replace('#', '') let AE2 = (id, x) => MOD("appliedenergistics2", id, x) let TE = (id, x) => MOD("thermal", id, x) let AP = (id, x) => MOD("architects_palette", id, x) let FD = (id, x) => MOD("farmersdelight", id, x) let MC = (id, x) => MOD("minecraft", id, x) let CH = (id, x) => MOD("chisel", id, x)
onEvent('recipes', event => { log.push('Registering Recipes') event.remove({output: 'tconstruct:earth_slime_sling'}) event.remove({output: 'tconstruct:sky_slime_sling'}) event.remove({output: 'tconstruct:ichor_slime_sling'}) event.remove({output: 'tconstruct:ender_slime_sling'}) })
onEvent('recipes', event => { event.remove({id: CR("cutting/oak_log")}) event.recipes.createCutting([MC("stripped_oak_log"), FD("tree_bark")], MC("oak_log")).processingTime(50) })
onEvent('recipes', event => {
event.remove({id: CH("iron_chisel")}) event.remove({id: CH("diamond_chisel")})
event.shaped(CH("iron_chisel"), [ 'R ', ' M', ], { R: F('#rods'), M: MC('iron_ingot') })
event.shaped(CH("diamond_chisel"), [ 'R ', ' M', ], { R: F('#rods'), M: MC('diamond') }) })
onEvent('player.chat', event => { if (event.message.startsWith('查询太行山积雪深度')) { event.player.tell('66.57cm') event.cancel() } })
|