Skip to content

Commit

Permalink
集装分拣器、近程电浆塔、干扰塔
Browse files Browse the repository at this point in the history
  • Loading branch information
huww98 committed Feb 7, 2024
1 parent d8a9020 commit 9c04a78
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/blueprint/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -772,6 +772,7 @@ const parameterParsers = new Map<number, ParamParser<AllParameters>>([
[2011, inserterParamParser],
[2012, inserterParamParser],
[2013, inserterParamParser],
[2014, inserterParamParser],
[2101, storageParamParser(30)],
[2102, storageParamParser(60)],
[2106, tankParamParser],
Expand Down
3 changes: 3 additions & 0 deletions src/data/building.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const buildingMetaRaw: [number, { color: number | null, box: [number, number, nu
[ 41, { color: 0xE3A263, box: [1.0, 1.0, 1.0], offset: [0.0, 0.0, 0.0]}], // 低速分拣器
[ 42, { color: 0x51A896, box: [1.0, 1.0, 1.0], offset: [0.0, 0.0, 0.0]}], // 高速分拣器
[ 43, { color: 0x61A5D7, box: [1.0, 1.0, 1.0], offset: [0.0, 0.0, 0.0]}], // 极速分拣器
[483, { color: 0xC0C0C0, box: [1.0, 1.0, 1.0], offset: [0.0, 0.0, 0.0]}], // 集装分拣器
[ 38, { color: 0x3B5666, box: [2.7, 2.4, 2.7], offset: [0.0, 1.2, 0.0] }], // 四向分流器 a
[ 39, { color: 0x3B5666, box: [1.5, 2.4, 2.7], offset: [0.0, 1.2, 0.0] }], // 四向分流器 b
[ 40, { color: 0x3B5666, box: [2.7, 2.4, 2.7], offset: [0.0, 1.2, 0.0] }], // 四向分流器 c
Expand Down Expand Up @@ -67,6 +68,8 @@ const buildingMetaRaw: [number, { color: number | null, box: [number, number, nu
[403, { color: null, box: [6.0, 16.0, 6.0], offset: [0.0, 7.8, 0.0] }], // 信标
[402, { color: null, box: [7.0, 14.2, 7.0], offset: [0.0, 7.0, 0.0] }], // 护盾发生器
[453, { color: null, box: [5.0, 8.0, 7.0], offset: [0.0, 4.0, 0.0] }], // 战场分析基站
[482, { color: null, box: [2.5, 15.0, 2.5], offset: [0.0, 7.5, 0.0] }], // 地面电浆炮
[422, { color: null, box: [6.0, 7.0, 6.0], offset: [0.0, 3.5, 0.0] }], // 干扰塔
[371, { color: 0x718495, box: [3.0, 1.9, 3.2], offset: [0.0, 1.1, 0.0] }], // 物流配送器
])

Expand Down
2 changes: 1 addition & 1 deletion src/data/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function isBelt(id: number) {
}

export function isInserter(id: number) {
return id >= 2011 && id <= 2013;
return id >= 2011 && id <= 2014;
}

export function isStation(id: number) {
Expand Down

0 comments on commit 9c04a78

Please sign in to comment.