diff --git a/README.md b/API Code.md similarity index 84% rename from README.md rename to API Code.md index f034ebc..aa4885e 100644 --- a/README.md +++ b/API Code.md @@ -1,115 +1,16 @@ -# Code API +# API Code +> [!NOTE] +> This document has been reorganized compared to the original documentation. -You can run javascript when right clicking code blocks and press to code boards. -This is only available to owners of worlds lobbies. -The javascript can interact with the Bloxd.io game api. - -Please use [our discord](https://discord.gg/vwMp5y25RX) to report any issues you come across or features you'd like to see added. - -## Code Blocks - -- World owners can find these by searching in the creative menu -- No need to add `press to code`, this text is only needed for code boards, and will automatically be removed -- If you want to run code without opening the code editor, you can trigger the code block by right clicking an adjacent `press to code` board instead - -## Boards - -- You can begin a board with `press to code` to run javascript when you right click it. -- Normally you can't edit a code board after placing it, but you can currently work around this by putting a space before `press to code`. -- Boards only allow for a small amount of text, we recommend you use Code Blocks instead, or you can work around this by using multiple boards - -## Notes - -- Global variable `myId` stores the player ID of who is running the code. -- Global variable `thisPos` stores the position of the currently executing code block or press to code board. -- You can use `api.log` or `console.log` for printing and debugging (they do the same thing). -- You can use `Date.now()` instead of `api.now()` if you prefer, both return the time in milliseconds. -- Comments like `/* comment */` work, but comments like `// comment` don't work right now. - -## Examples - -Code Block to make the player jump: - -```js -f = api.setVelocity(myId, 0, 9, 0) -``` - -Push the player - -```js -api.applyImpulse(myId, 9, 0, 9) -``` - -Send an orange message to yourself: - -```js -api.sendMessage(myId, "text", { color: "orange" }) -``` - -Create flying text: - -```js -const speed = 100 -api.sendFlyingMiddleMessage(myId, ["Message to display"], speed) -``` - -Send a message to all players: - -```js -api.broadcastMessage("announcement", { color: "red" }) -``` - -Set player health to 99, and print the old health: - -```js -const oldHealth = api.getHealth(myId) -api.setHealth(myId, 99) -api.log("Old Health:", oldHealth) -``` - -Define a function to get the player IDs excluding your own ID: - -```js -getOtherIds = () => { - const ids = api.getPlayerIds() - const otherIds = [] - for (const id of ids) { - if (id !== myId) { - otherIds.push(id) - } - } - return otherIds -} -``` - -Use the function above to make other players look like zombies: - -```js -for (const otherId of getOtherIds()) { - api.setPlayerPose(otherId, "zombie") - for (const part of ["head", "body", "legs"]) { - /* Notice the skin texture uses a capital Z */ - api.changePlayerIntoSkin(otherId, part, "Zombie") - } -} -``` - -Make all players look like floating wizards: - -```js -for (const playerId of api.getPlayerIds()) { - api.setPlayerPose(playerId, "driving") - for (const part of ["head", "body", "legs"]) { - /* Notice the skin texture uses a capital W */ - api.changePlayerIntoSkin(playerId, part, "Wizard") - } -} -``` - -## API +## Credits +Thank you to Tom for creating this. +## API functions Global object `api` has the following methods: +### Entity functions +> [!NOTE] +> Entities can be Players, Mobs, dropped items, and thrown items. ```js /** * Get position of a player / entity. @@ -117,7 +18,9 @@ Global object `api` has the following methods: * @returns {[number, number, number]} */ getPosition(entityId) +``` +```js /** * Set position of a player / entity. * @param {EntityId} entityId @@ -127,61 +30,9 @@ getPosition(entityId) * @returns {void} */ setPosition(entityId, x, y, z) +``` -/** - * Get all the player ids. - * @returns {PlayerId[]} - */ -getPlayerIds() - -/** - * Whether a player is currently in the game - * - * @param {PlayerId} playerId - * @returns {boolean} - */ -playerIsInGame(playerId) - -/** - * @param {PlayerId} playerId - * @returns {boolean} - */ -playerIsLoggedIn(playerId) - -/** - * Returns the party that the player was in when they joined the game. The returned object contains the playerDbIds, as well - * as the playerIds if available, of the party leader and members. - * - * @param {PlayerId} playerId - * @returns {PNull<{ playerDbIds: PlayerDbId[] }>} - */ -getPlayerPartyWhenJoined(playerId) - -/** - * Get the number of players in the room - * @returns {number} - */ -getNumPlayers() - -/** - * Get the co-ordinates of the blocks the player is standing on as a list. For example, if the center of the player is at 0,0,0 - * this function will return [[0, -1, 0], [-1, -1, 0], [0, -1, -1], [-1, -1, -1]] - * If the player is just standing on one block, the function would return e.g. [[0, 0, 0]] - * If the player is middair then returns an empty list []. - * - * @param {PlayerId} playerId - * @returns {number[][]} - */ -getBlockCoordinatesPlayerStandingOn(playerId) - -/** - * Get the types of block the player is standing on - * For example, if a player is standing on 4 dirt blocks, this will return ["Dirt", "Dirt", "Dirt", "Dirt"] - * @param {PlayerId} playerId - * @returns {any[]} - */ -getBlockTypesPlayerStandingOn(playerId) - +```js /** * Get the up to 12 unit co-ordinates the lifeform is located within * (A lifeform is modelled as having four corners and can be in up to 3 blocks vertically) @@ -190,21 +41,18 @@ getBlockTypesPlayerStandingOn(playerId) * @returns {number[][]} - List of x, y, z positions e.g. [[-1, 0, 0], [-1, 1, 0], [-1, 2, 0]] */ getUnitCoordinatesLifeformWithin(lifeformId) +``` -/** - * Show the shop tutorial for a player. Will not be shown if they have ever seen the shop tutorial in your game before. - * @param {PlayerId} playerId - * @returns {void} - */ -showShopTutorial(playerId) - +```js /** * Get the current shield of an entity. * @param {EntityId} entityId * @returns {number} */ getShieldAmount(entityId) +``` +```js /** * Set the current shield of a lifeform. * @@ -213,14 +61,18 @@ getShieldAmount(entityId) * @returns {void} */ setShieldAmount(lifeformId, newShieldAmount) +``` +```js /** * Get the current health of an entity. * @param {PlayerId} entityId * @returns {number} */ getHealth(entityId) +``` +```js /** * @param {LifeformId} lifeformId * @param {number} changeAmount - Must be an integer. A positive amount will increase the entity's health. A negative amount will decrease the entity's shield first, then their health. @@ -229,7 +81,9 @@ getHealth(entityId) * @returns {boolean} - Whether the entity was killed */ applyHealthChange(lifeformId, changeAmount, whoDidDamage, broadcastLifeformHurt) +``` +```js /** * Set the current health of an entity. * If you want to set their health to more than their current max health, the optional increaseMaxHealthIfNeeded must be true. @@ -241,18 +95,28 @@ applyHealthChange(lifeformId, changeAmount, whoDidDamage, broadcastLifeformHurt) * @returns {boolean} - Whether this change in health killed the player */ setHealth(entityId, newHealth, whoDidDamage, increaseMaxHealthIfNeeded) +``` +```js /** * Make it as if hittingEId hit hitEId * - * @param {PlayerId} hittingEId - * @param {PlayerId} hitEId + * @param {LifeformId} hittingEId + * @param {LifeformId} hitEId * @param {number[]} dirFacing * @param {PNull} [bodyPartHit] - * @returns {void} + * @param { { + * damage?: PNull + * heldItemName?:PNull + * horizontalKbMultiplier?: number + * verticalKbMultiplier?: number + * } } [overrides] + * @returns {boolean} */ -applyMeleeHit(hittingEId, hitEId, dirFacing, bodyPartHit) +applyMeleeHit(hittingEId, hitEId, dirFacing, bodyPartHit, overrides) +``` +```js /** * Apply damage to a lifeform. * eId is the player initiating the damage, hitEId is the lifeform being hit. @@ -297,15 +161,9 @@ attemptApplyDamage({ isTrueDamage = false, damagerDbId = null, }) +``` -/** - * Force respawn a player - * @param {PlayerId} playerId - * @param {number[]} [respawnPos] - * @returns {void} - */ -forceRespawn(playerId, respawnPos) - +```js /** * Kill a lifeform. * @param {LifeformId} lifeformId @@ -313,23 +171,9 @@ forceRespawn(playerId, respawnPos) * @returns {void} */ killLifeform(lifeformId, whoKilled) +``` -/** - * Gets the player's current killstreak - * - * @param {PlayerId} playerId - * @returns {number} - */ -getCurrentKillstreak(playerId) - -/** - * Clears the player's current killstreak - * - * @param {PlayerId} playerId - * @returns {void} - */ -clearKillstreak(playerId) - +```js /** * Whether a lifeform is alive or dead (or on the respawn screen, in a player's case). * @@ -337,419 +181,533 @@ clearKillstreak(playerId) * @returns {boolean} */ isAlive(lifeformId) +``` +```js /** - * Send a message to everyone + * Set a player's other-entity setting for a specific entity. * - * @param {string | CustomTextStyling} message - The text contained within the message. Can use `Custom Text Styling`. - * @param { { fontWeight?: number | string; color?: string } } [style] - An optional style argument. Can contain values for fontWeight and color of the message. + * @param {PlayerId} relevantPlayerId + * @param {EntityId} targetedEntityId + * @param {Setting} settingName + * @param {OtherEntitySettings[Setting]} settingValue * @returns {void} */ -broadcastMessage(message, style) +setOtherEntitySetting(relevantPlayerId, targetedEntityId, settingName, settingValue) +``` +```js /** - * Send a message to a specific player + * Set many of a player's other-entity settings for a specific entity. * - * @param {PlayerId} playerId - Id of the player - * @param {string | CustomTextStyling} message - The text contained within the message. Can use `Custom Text Styling`. - * @param { { fontWeight?: number | string; color?: string } } [style] - An optional style argument. Can contain values for fontWeight and color of the message. + * @param {PlayerId} relevantPlayerId + * @param {EntityId} targetedEntityId + * @param {Partial} settingsObject * @returns {void} */ -sendMessage(playerId, message, style) +setOtherEntitySettings(relevantPlayerId, targetedEntityId, settingsObject) +``` +```js /** - * Send a flying middle message to a specific player + * Get the value of a player's other-entity setting for a specific entity. * - * @param {PlayerId} playerId - Id of the player - * @param {CustomTextStyling} message - The text contained within the message. Can use `Custom Text Styling`. - * @param {number} distanceFromAction - The distance from the action that has caused this message to be displayed, this value - * @returns {void} + * @param {PlayerId} relevantPlayerId + * @param {EntityId} targetedEntityId + * @param {Setting} settingName + * @returns {OtherEntitySettings[Setting]} */ -sendFlyingMiddleMessage(playerId, message, distanceFromAction) +getOtherEntitySetting(relevantPlayerId, targetedEntityId, settingName) +``` +```js /** - * Modify a client option at runtime and send to the client if it changed - * - * @param {PlayerId} playerId - * @param {PassedOption} option - The name of the option - * @param {ClientOptions[PassedOption]} value - The new value of the option - * @returns {void} + * Get the in game name of an entity. + * @param {EntityId} entityId + * @returns {string} */ -setClientOption(playerId, option, value) +getEntityName(entityId) +``` +```js /** - * Returns the current value of a client option + * Check your game (and, optionally, a entity) is still valid and executing. + * Useful if you're using async functions and await within your game. + * If you use await/async or promises and do not check this, your game could have closed and then the rest of your + * async code executes. * - * @param {PlayerId} playerId - * @param {PassedOption} option - * @returns {ClientOptions[PassedOption]} + * @param {PNull} [entityId] + * @returns {boolean} */ -getClientOption(playerId, option) +checkValid(entityId) +``` +```js /** - * Modify client options at runtime + * Get the entities in the rect between [minX, minY, minZ] and [maxX, maxY, maxZ] * - * @param {PlayerId} playerId - * @param {Partial} optionsObj - An object which contains key value pairs of new settings. E.g {canChange: true, speedMultiplier: false} - * @returns {void} + * @param {number[]} minCoords + * @param {number[]} maxCoords + * @returns {EntityId[]} */ -setClientOptions(playerId, optionsObj) +getEntitiesInRect(minCoords, maxCoords) +``` +```js /** - * Sets a client option to its default value. This will be the value stored in your game's defaultClientOptions, otherwise Bloxd's default. - * - * @param {PlayerId} playerId - * @param {ClientOption} option - * @returns {void} + * @param {EntityId} entityId + * @returns {EntityType} */ -setClientOptionToDefault(playerId, option) +getEntityType(entityId) +``` +```js /** - * Set every player's other-entity setting to a specific value for a particular player. - * includeNewJoiners=true means that new players joining the game will also have this other player setting applied. + * Apply an impulse to an entity * - * @param {PlayerId} targetedPlayerId - * @param {Setting} settingName - * @param {OtherEntitySettings[Setting]} settingValue - * @param {boolean} [includeNewJoiners] + * @param {EntityId} eId + * @param {number} xImpulse + * @param {number} yImpulse + * @param {number} zImpulse * @returns {void} */ -setTargetedPlayerSettingForEveryone(targetedPlayerId, settingName, settingValue, includeNewJoiners) +applyImpulse(eId, xImpulse, yImpulse, zImpulse) +``` +```js /** - * Set a player's other-entity setting for every player in the game. - * includeNewJoiners=true means that the player will have the setting applied to new joiners. + * Set the velocity of an entity * - * @param {PlayerId} playerId - * @param {Setting} settingName - * @param {OtherEntitySettings[Setting]} settingValue - * @param {boolean} [includeNewJoiners] + * @param {EntityId} eId + * @param {number} x + * @param {number} y + * @param {number} z * @returns {void} */ -setEveryoneSettingForPlayer(playerId, settingName, settingValue, includeNewJoiners) +setVelocity(eId, x, y, z) +``` +```js /** - * Set a player's other-entity setting for a specific entity. + * Set the heading for a server-auth entity. * - * @param {PlayerId} relevantPlayerId - * @param {EntityId} targetedEntityId - * @param {Setting} settingName - * @param {OtherEntitySettings[Setting]} settingValue + * @param {EntityId} entityId + * @param {number} newHeading * @returns {void} */ -setOtherEntitySetting(relevantPlayerId, targetedEntityId, settingName, settingValue) +setEntityHeading(entityId, newHeading) +``` +```js /** - * Set many of a player's other-entity settings for a specific entity. + * Apply an effect to a lifeform. + * Can be an inbuilt effect E.g. "Speed" (speed boost), "Damage" (damage boost). + * For inbuilt just pass the name of the effect and the functionality is handled in-engine. + * For custom effect, you pass customEffectInfo. The icon can be an icon from "IngameIcons.ts" or a bloxd item name. + * The custom effect onEndCb is an optional helper within which you can undo the effect you applied. + * Note that onEndCb will not work for press to code boards, code blocks or world code. * - * @param {PlayerId} relevantPlayerId - * @param {EntityId} targetedEntityId - * @param {Partial} settingsObject + * @param {LifeformId} lifeformId + * @param {string} effectName + * @param {number | null} duration + * @param { { icon?: IngameIconName | ItemName; onEndCb?: () => void; displayName?: string | TranslatedText } & Partial } customEffectInfo * @returns {void} */ -setOtherEntitySettings(relevantPlayerId, targetedEntityId, settingsObject) +applyEffect(lifeformId, effectName, duration, customEffectInfo) +``` +```js /** - * Get the value of a player's other-entity setting for a specific entity. + * Get all the effects currently applied to a lifeform. * - * @param {PlayerId} relevantPlayerId - * @param {EntityId} targetedEntityId - * @param {Setting} settingName - * @returns {OtherEntitySettings[Setting]} + * @param {LifeformId} lifeformId + * @returns {string[]} */ -getOtherEntitySetting(relevantPlayerId, targetedEntityId, settingName) +getEffects(lifeformId) +``` +```js /** - * Play particle effect on all clients, or only on some clients if clientPredictedBy is specified - * @param {TempParticleSystemOpts} opts - * @param {PlayerId} [clientPredictedBy] - Play only on clients where client with playerId clientPredictedBy + * Remove an effect from a lifeform. + * + * @param {LifeformId} lifeformId + * @param {string} name * @returns {void} */ -playParticleEffect(opts, clientPredictedBy) +removeEffect(lifeformId, name) +``` +```js /** - * Get the in game name of an entity. - * @param {EntityId} entityId - * @returns {string} + * Attach/detach mesh instances to/from an entity + * @param {EntityId} eId + * @param {EntityNamedNode} node - node to attach to + * @param {PNull} type - if null, detaches mesh from this node + * @param {MeshEntityOpts[MeshType]} [opts] + * @param {number[]} [offset] + * @param {number[]} [rotation] + * @returns {void} */ -getEntityName(entityId) +updateEntityNodeMeshAttachment(eId, node, type, opts, offset, rotation) +``` +```js /** - * Given the name of a player, get their id - * @param {string} playerName - * @returns {PNull} + * Add following entity to player + * @param {PlayerId} playerId + * @param {EntityId} eId + * @param {number[]} [offset] + * @returns {void} */ -getPlayerId(playerName) +addFollowingEntityToPlayer(playerId, eId, offset) +``` +```js /** - * Given a player, get their permanent identifier that doesn't change when leaving and re-entering - * + * Remove following entity from player * @param {PlayerId} playerId - * @returns {PlayerDbId} + * @param {EntityId} entityEId + * @returns {void} */ -getPlayerDbId(playerId) +removeFollowingEntityFromPlayer(playerId, entityEId) +``` +```js /** - * Returns null if player not in lobby - * - * @param {PlayerDbId} dbId - * @returns {PNull} + * @param {EntityId} eId + * @param {ExplosionType} explosionType + * @param {number} knockbackFactor + * @param {number} explosionRadius + * @param {number[]} explosionPos + * @param {boolean} ignoreProjectiles + * @returns { { force: Pos; forceFrac: number; } } */ -getPlayerIdFromDbId(dbId) +calcExplosionForce(eId, explosionType, knockbackFactor, explosionRadius, explosionPos, ignoreProjectiles) +``` +### Player functions +> [!NOTE] +> This contains functions that use playerId, or affect only players. For example `broadcastMessage` is included in here cause only players read chat. +> [!NOTE] +> These fuctions work only on players, but entity functions will work on them too. +```js /** - * @param {PlayerId} playerId - * @param {string} reason - * @returns {void} + * Get all the player ids. + * This calls getEntitiesInRect for all loaded chunks + * @returns {PlayerId[]} */ -kickPlayer(playerId, reason) +getPlayerIds() +``` +```js /** - * Check if the block at a specific position is in a loaded chunk. - * @param {number} x - * @param {number} y - * @param {number} z - * @returns {boolean} - boolean + * Whether a player is currently in the game + * + * @param {PlayerId} playerId + * @returns {boolean} */ -isBlockInLoadedChunk(x, y, z) +playerIsInGame(playerId) +``` +```js /** - * Get the name of a block. - * @param {number | number[]} x - could be an array [x, y, z]. If so, the other params shouldn't be passed. - * @param {number} [y] - * @param {number} [z] - * @returns {BlockName} - blockName - will be a name contained in blockMetadata.ts or 'Air' + * @param {PlayerId} playerId + * @returns {boolean} */ -getBlock(x, y, z) +playerIsLoggedIn(playerId) +``` +```js /** - * Used to get the block id at a specific position. - * Intended only for use in hot code paths - default to getBlock for most use cases + * Returns the party that the player was in when they joined the game. The returned object contains the playerDbIds, as well + * as the playerIds if available, of the party leader and members. * - * @param {number} x - * @param {number} y - * @param {number} z - * @returns {BlockId} + * @param {PlayerId} playerId + * @returns {PNull<{ playerDbIds: PlayerDbId[] }>} */ -getBlockId(x, y, z) +getPlayerPartyWhenJoined(playerId) +``` +```js /** - * Set a block. Valid names are those either contained in blockMetadata.ts or are 'Air' - * - * This function is optimised for setting broad swathes of blocks. For example, if you have a 50x50x50 area you need to turn to air, it will run performantly if you call this in double nested loops. - * - * IF you're only changing a few blocks, you want this to be super snappy for players, AND you're calling this outside of your _tick function, you can use api.setOptimisations(false). + * Get the number of players in the room + * @returns {number} + */ +getNumPlayers() +``` + +```js +/** + * Update the max players and soft max players matchmaking will use * - * If you want the optimisations for large quantities of blocks later on, then call api.setOptimisations(true) when you're done. + * softMaxPlayers is the number of players that matchmaking will route to using "Quick Play". + * Once the softMaxPlayers limit is reached, this lobby can only be joined by requesting the lobby name or joining a friend. * + * maxPlayers is the absolute maximum: a lobby will not have more players than this. + * Tip: softMaxPlayers should be around 90% of maxPlayers * + * WARNING: This change is not immediate, as it takes a while for matchmaking to find out. + * Also, this will not kick players out of the lobby if set to a lower value than the current player count. * - * @param {number | number[]} x - Can be an array - * @param {number | BlockName} y - Should be blockname if first param is array - * @param {number} [z] - * @param {BlockName} [blockName] + * @param {number} softMaxPlayers + * @param {number} maxPlayers * @returns {void} */ -setBlock(x, y, z, blockName) +setMaxPlayers(softMaxPlayers, maxPlayers) +``` +```js /** - * Initiate a block change "by the world". - * This ends up calling the onWorldChangeBlock and only makes the change if not prevented by game/plugins. - * initiatorDbId is null if the change was initiated by the game code. + * Get the co-ordinates of the blocks the player is standing on as a list. For example, if the center of the player is at 0,0,0 + * this function will return [[0, -1, 0], [-1, -1, 0], [0, -1, -1], [-1, -1, -1]] + * If the player is just standing on one block, the function would return e.g. [[0, 0, 0]] + * If the player is middair then returns an empty list []. * - * @param {PNull} initiatorDbId - * @param {number} x - * @param {number} y - * @param {number} z - * @param {BlockName} blockName - * @returns {"preventChange" | "preventDrop" | void} - "preventChange" if the change was prevented, "preventDrop" if the change was allowed but without dropping any items, and undefined if the change was allowed with an item drop + * @param {PlayerId} playerId + * @returns {number[][]} */ -attemptWorldChangeBlock(initiatorDbId, x, y, z, blockName) +getBlockCoordinatesPlayerStandingOn(playerId) +``` +```js /** - * Returns whether a block is solid or not. - * E.g. Grass block is solid, while water, ladder and water are not. - * Will be true if the block is unloaded. - * - * @param {number | number[]} x - * @param {number} [y] - * @param {number} [z] - * @returns {boolean} + * Get the types of block the player is standing on + * For example, if a player is standing on 4 dirt blocks, this will return ["Dirt", "Dirt", "Dirt", "Dirt"] + * @param {PlayerId} playerId + * @returns {any[]} */ -getBlockSolidity(x, y, z) +getBlockTypesPlayerStandingOn(playerId) +``` +```js /** - * Helper function that sets all blocks in a rectangle to a specific block. - * - * @param {number[]} pos1 - array [x, y, z] - * @param {number[]} pos2 - array [x, y, z] - * @param {BlockName} blockName + * Show the shop tutorial for a player. Will not be shown if they have ever seen the shop tutorial in your game before. + * @param {PlayerId} playerId * @returns {void} */ -setBlockRect(pos1, pos2, blockName) +showShopTutorial(playerId) +``` +```js /** - * Create walls by providing two opposite corners of the cuboid - * - * - * @param {number[]} pos1 - array [x, y, z] - * @param {number[]} pos2 - array [x, y, z] - * @param {BlockName} blockName - * @param {boolean} [hasFloor] - * @param {boolean} [hasCeiling] + * Force respawn a player + * @param {PlayerId} playerId + * @param {number[]} [respawnPos] * @returns {void} */ -setBlockWalls(pos1, pos2, blockName, hasFloor, hasCeiling) - +forceRespawn(playerId, respawnPos) +``` + +```js /** - * Only use this instead of getBlock if you REALLY need the performance (i.e. you are iterating over tens of thousands of blocks) - * ReturnedObject.blockData is a 32x32x32 ndarray of block ids - * (see https://www.npmjs.com/package/ndarray) - * Each block id is a 16-bit number - * The ndarray should only be read from, writing to it will result in desync between the server and client + * Gets the player's current killstreak * - * @param {number[]} pos - The returned chunk contains pos - * @returns {PNull} - null if the chunk is not loaded in a persisted world. ReturnedObject.blockData is an ndarray that can be accessed + * @param {PlayerId} playerId + * @returns {number} */ -getChunk(pos) +getCurrentKillstreak(playerId) +``` +```js /** - * Use this to get a chunk ndarray you can edit and set in resetChunk. + * Clears the player's current killstreak * - * Only use chunk helpers if you REALLY need the performance (i.e. you are iterating over tens of thousands of blocks) - * ReturnedObject.blockData is a 32x32x32 ndarray of air. - * (see https://www.npmjs.com/package/ndarray) - * Each block id is a 16-bit number - * @returns {GameChunk} + * @param {PlayerId} playerId + * @returns {void} */ -getEmptyChunk() +clearKillstreak(playerId) +``` +```js /** - * Splits the block name by '|'. If no meta info, metaInfo is '' + * Send a message to everyone * - * @param {BlockName | null | undefined} blockName - * @returns {ItemMetaInfo} + * @param {string | CustomTextStyling} message - The text contained within the message. Can use `Custom Text Styling`. + * @param { { fontWeight?: number | string; color?: string } } [style] - An optional style argument. Can contain values for fontWeight and color of the message. + * @returns {void} */ -getMetaInfo(blockName) +broadcastMessage(message, style) +``` +```js /** - * Get the numeric id of a block used in the ndarrays returned from getChunk - * I.e. chunk.blockData.set(x, y, z, api.blockNameToBlockId("Dirt")) - * or chunk.blockData.get(x, y, z) === api.blockNameToBlockId("Dirt") + * Send a message to a specific player * - * @param {string} blockName - * @param {boolean} [allowInvalidBlock] - Don't throw an error if the block name is invalid. - * @returns {PNull} + * @param {PlayerId} playerId - Id of the player + * @param {string | CustomTextStyling} message - The text contained within the message. Can use `Custom Text Styling`. + * @param { { fontWeight?: number | string; color?: string } } [style] - An optional style argument. Can contain values for fontWeight and color of the message. + * @returns {void} */ -blockNameToBlockId(blockName, allowInvalidBlock) +sendMessage(playerId, message, style) +``` +```js /** - * Goes from block id to block name. The reverse of blockNameToBlockId + * Send a flying middle message to a specific player * - * @param {BlockId} blockId - * @returns {BlockName} + * @param {PlayerId} playerId - Id of the player + * @param {CustomTextStyling} message - The text contained within the message. Can use `Custom Text Styling`. + * @param {number} distanceFromAction - The distance from the action that has caused this message to be displayed, this value + * @returns {void} */ -blockIdToBlockName(blockId) +sendFlyingMiddleMessage(playerId, message, distanceFromAction) +``` +```js /** - * Get the unique id of the chunk containing pos in the current map + * Modify a client option at runtime and send to the client if it changed * - * @param {number[]} pos - * @returns {string} + * @param {PlayerId} playerId + * @param {PassedOption} option - The name of the option + * @param {ClientOptions[PassedOption]} value - The new value of the option + * @returns {void} */ -blockCoordToChunkId(pos) +setClientOption(playerId, option, value) +``` +```js /** - * Get the co-ordinates of the block in the chunk with the lowest x, y, and z co-ordinates + * Returns the current value of a client option * - * @param {string} chunkId - * @returns {[number, number, number]} + * @param {PlayerId} playerId + * @param {PassedOption} option + * @returns {ClientOptions[PassedOption]} */ -chunkIdToBotLeftCoord(chunkId) +getClientOption(playerId, option) +``` +```js /** - * @deprecated - prefer using other UI elements - * (this UI element hasn't been properly thought through in combination with other elements like killfeed, uirequests, etc) - * - * Send a player an icon in the top right corner + * Modify client options at runtime * * @param {PlayerId} playerId - * @param {string} icon - Can be any icon from font-awesome. - * @param {string} text - The text to send. - * @param { { - * duration?: number - * width?: number - * height?: number - * color?: string - * iconSizeMult?: number - * textAndIconColor?: string - * fontSize?: string - * } } opts - Can include keys duration, width, height, color, iconSizeMult. + * @param {Partial} optionsObj - An object which contains key value pairs of new settings. E.g {canChange: true, speedMultiplier: false} * @returns {void} */ -sendTopRightHelper(playerId, icon, text, opts) +setClientOptions(playerId, optionsObj) +``` +```js /** - * Whether the player is on a mobile device or a computer. + * Sets a client option to its default value. This will be the value stored in your game's defaultClientOptions, otherwise Bloxd's default. + * * @param {PlayerId} playerId - * @returns {boolean} + * @param {ClientOption} option + * @returns {void} */ -isMobile(playerId) +setClientOptionToDefault(playerId, option) +``` +```js /** - * Create a dropped item. - * @param {number} x - * @param {number} y - * @param {number} z - * @param {string} itemName - Name of the item. Valid names can be found in blockMetadata.ts and itemMetadata.ts - * @param {PNull} [amount] - The amount of the item to include in the drop - so when the player picks up the item drop, they get this many of the item. - * @param {boolean} [mergeItems] - Whether to merge the item into an nearby item of same type, if one exists. Defaults to false. - * @param {ItemAttributes} [attributes] - Attributes of the item being dropped - * @returns {PNull} - the id you can pass to setCantPickUpItem, or null if the item drop limit was reached + * Set every player's other-entity setting to a specific value for a particular player. + * includeNewJoiners=true means that new players joining the game will also have this other player setting applied. + * + * @param {PlayerId} targetedPlayerId + * @param {Setting} settingName + * @param {OtherEntitySettings[Setting]} settingValue + * @param {boolean} [includeNewJoiners] + * @returns {void} */ -createItemDrop(x, y, z, itemName, amount, mergeItems, attributes) +setTargetedPlayerSettingForEveryone(targetedPlayerId, settingName, settingValue, includeNewJoiners) +``` +```js /** - * Prevent a player from picking up an item. itemId returned by createItemDrop + * Set a player's other-entity setting for every player in the game. + * includeNewJoiners=true means that the player will have the setting applied to new joiners. * * @param {PlayerId} playerId - * @param {EntityId} itemId + * @param {Setting} settingName + * @param {OtherEntitySettings[Setting]} settingValue + * @param {boolean} [includeNewJoiners] * @returns {void} */ -setCantPickUpItem(playerId, itemId) +setEveryoneSettingForPlayer(playerId, settingName, settingValue, includeNewJoiners) +``` +```js /** - * Delete an item drop by item drop entity ID - * - * @param {EntityId} itemId + * Play particle effect on all clients, or only on some clients if clientPredictedBy is specified + * @param {TempParticleSystemOpts} opts + * @param {PlayerId} [clientPredictedBy] - Play only on clients where client with playerId clientPredictedBy * @returns {void} */ -deleteItemDrop(itemId) +playParticleEffect(opts, clientPredictedBy) +``` +```js /** - * Get the metadata about a block or item before stats have been modified by any client options - * (i.e. its entry in either blockMetadata.ts or nonBlockMetadata in itemMetadata.ts) + * Given the name of a player, get their id + * @param {string} playerName + * @returns {PNull} + */ +getPlayerId(playerName) +``` + +```js +/** + * Given a player, get their permanent identifier that doesn't change when leaving and re-entering * - * @param {string} itemName - * @returns {Partial} + * @param {PlayerId} playerId + * @returns {PlayerDbId} */ -getInitialItemMetadata(itemName) +getPlayerDbId(playerId) +``` +```js /** - * Get stat info about a block or item - * Either based on a client option for a player: (e.g. `DirtTtb`) - * or its entry in blockMetadata.ts or nonBlockMetadata in itemMetadata.ts if no client option is set. + * Returns null if player not in lobby * - * If null is passed for playerId, this is simply its entry in blockMetadata etc. + * @param {PlayerDbId} dbId + * @returns {PNull} + */ +getPlayerIdFromDbId(dbId) +``` + +```js +/** + * @param {PlayerId} playerId + * @param {string} reason + * @returns {void} + */ +kickPlayer(playerId, reason) +``` + +```js +/** + * @deprecated - prefer using other UI elements + * (this UI element hasn't been properly thought through in combination with other elements like killfeed, uirequests, etc) * + * Send a player an icon in the top right corner * - * @param {PNull} playerId - * @param {string} itemName - * @param {K} stat - * @returns {AnyMetadataItem[K]} + * @param {PlayerId} playerId + * @param {string} icon - Can be any icon from font-awesome. + * @param {string} text - The text to send. + * @param { { + * duration?: number + * width?: number + * height?: number + * color?: string + * iconSizeMult?: number + * textAndIconColor?: string + * fontSize?: string + * } } opts - Can include keys duration, width, height, color, iconSizeMult. + * @returns {void} */ -getItemStat(playerId, itemName, stat) +sendTopRightHelper(playerId, icon, text, opts) +``` + +```js +/** + * Whether the player is on a mobile device or a computer. + * @param {PlayerId} playerId + * @returns {boolean} + */ +isMobile(playerId) +``` +```js /** * Set the direction the player is looking. * @@ -758,7 +716,9 @@ getItemStat(playerId, itemName, stat) * @returns {void} */ setCameraDirection(playerId, direction) +``` +```js /** * Set a player's opacity * A simple helper that calls setTargetedPlayerSettingForEveryone @@ -768,7 +728,9 @@ setCameraDirection(playerId, direction) * @returns {void} */ setPlayerOpacity(playerId, opacity) +``` +```js /** * Set the level of viewable opacity by one player on another player * A simple helper that calls setOtherEntitySetting @@ -779,440 +741,279 @@ setPlayerOpacity(playerId, opacity) * @returns {void} */ setPlayerOpacityForOnePlayer(playerIdWhoViewsOpacityPlayer, playerIdOfOpacityPlayer, opacity) +``` +```js /** - * Obtain Date.now() value saved at start of current game tick - * @returns {number} + * Update the progress bar in the bottom right corner. + * Can be queued. + * + * @param {PlayerId} playerId + * @param {number} toFraction - The fraction of the progress bar you want to be filled up. + * @param {number} [toDuration] - The time it takes for the bar to reach the given toFraction in ms. + * @returns {void} */ -now() +progressBarUpdate(playerId, toFraction, toDuration) +``` +```js /** - * Check your game (and, optionally, a entity) is still valid and executing. - * Useful if you're using async functions and await within your game. - * If you use await/async or promises and do not check this, your game could have closed and then the rest of your - * async code executes. + * This will initiate the MiddleScreenBar, starting at empty and filling up to full over the given duration. + * Good to represent cooldowns (eg gun reload) or charged items (eg crossbow) * - * @param {PNull} [entityId] - * @returns {boolean} + * @param {PlayerId} playerId + * @param {number} duration - ms over which the MiddleScreenBar fills up + * @param {boolean} [chargeExpiresAutomatically] - Defaults to true. If true, the bar will disappear upon reaching full. If false, the bar will remain at full until hidden with removeMiddleScreenBar + * @param {number} [horizontalBarRemOffset] - Offset the bar left or right (in css unit - rem) + * @returns {void} */ -checkValid(entityId) +initiateMiddleScreenBar(playerId, duration, chargeExpiresAutomatically, horizontalBarRemOffset) +``` +```js /** - * Let a player change a block at a specific co-ordinate. Useful when client option canChange is false. - * Overrides blockRect and blockType settings, so also useful when you have disallowed changing of a block type with setCantChangeBlockType. - * Using this on 1000s of blocks will cause lag - if that is needed, find a way to use setCanChangeBlockType. + * If there is any current middle screen bar running, this will hide it * * @param {PlayerId} playerId - * @param {number} x - * @param {number} y - * @param {number} z * @returns {void} */ -setCanChangeBlock(playerId, x, y, z) +removeMiddleScreenBar(playerId) +``` +```js /** - * Prevents a player from changing a block at a specific co-ordinate. Useful when client option canChange is true. - * Overrides blockRect and blockType settings, so also useful when you have allowed changing of a block type with setCantChangeBlockType. - * Using this on 1000s of blocks will cause lag - if that is needed, find a way to use setCantChangeBlockType. + * Show a message over the shop in the same place that a shop item's onBoughtMessage is shown. + * Displays for a couple seconds before disappearing + * Use case is to show a dynamic message when player buys an item * * @param {PlayerId} playerId - * @param {number} x - * @param {number} y - * @param {number} z + * @param {string | CustomTextStyling} info * @returns {void} */ -setCantChangeBlock(playerId, x, y, z) +sendOverShopInfo(playerId, info) +``` +```js /** - * Lets a player Change a block type. Valid names are those contained within blockMetadata.ts and 'Air' - * Less priority than cant change block pos/can change block rect + * Open the shop UI for a player * * @param {PlayerId} playerId - * @param {BlockName} blockName + * @param {boolean} [toggle] - Whether to close the shop if it's already open + * @param {string} [forceCategory] - If set, will change the shop to this category * @returns {void} */ -setCanChangeBlockType(playerId, blockName) +openShop(playerId, toggle, forceCategory) +``` +```js /** - * Stops a player from Changeing a block type. Valid names are those contained within blockMetadata.ts and 'Air' - * Less priority than can change block pos/can change block rect - * + * Change a part of a player's skin * @param {PlayerId} playerId - * @param {BlockName} blockName + * @param {CustomisationPart} partType + * @param {string} selected * @returns {void} */ -setCantChangeBlockType(playerId, blockName) +changePlayerIntoSkin(playerId, partType, selected) +``` +```js /** - * Remove any previous can/cant change block type settings for a player - * + * Remove gamemode-applied skin from a player * @param {PlayerId} playerId - * @param {BlockName} blockName * @returns {void} */ -resetCanChangeBlockType(playerId, blockName) +removeAppliedSkin(playerId) +``` +```js /** - * Make it so a player can Change blocks within two points. Coordinates are inclusive. E.g. if [0, 0, 0] is pos1 - * and [1, 1, 1] is pos2 then the 8 blocks contained within low and high will be able to be broken. - * Overrides setCantChangeBlockType - * + * Scale node of a player's mesh by 3d vector. + * State from prior calls to this api is lost so if you want to have multiple nodes scaled, pass in all the scales at once. * * @param {PlayerId} playerId - * @param {number[]} pos1 - Arg as [x, y, z] - * @param {number[]} pos2 - Arg as [x, y, z] + * @param {EntityMeshScalingMap} nodeScales * @returns {void} */ -setCanChangeBlockRect(playerId, pos1, pos2) +scalePlayerMeshNodes(playerId, nodeScales) +``` +```js /** - * Make it so a player cant Change blocks within two points. Coordinates are inclusive. E.g. if [0, 0, 0] is pos1 - * and [1, 1, 1] is pos2 then the 8 blocks contained within pos1 and pos2 won't be able to be broken. - * Overrides setCanChangeBlockType - * - * + * Set the pose of the player * @param {PlayerId} playerId - * @param {number[]} pos1 - Arg as [x, y, z] - * @param {number[]} pos2 - Arg as [x, y, z] + * @param {PlayerPose} pose * @returns {void} */ -setCantChangeBlockRect(playerId, pos1, pos2) +setPlayerPose(playerId, pose) +``` +```js /** - * Remove any previous can/cant change block rect settings for a player - * + * Set physics state of player (vehicle type and tier) * @param {PlayerId} playerId - * @param {number[]} pos1 - * @param {number[]} pos2 + * @param {PlayerPhysicsStateData} physicsState * @returns {void} */ -resetCanChangeBlockRect(playerId, pos1, pos2) +setPlayerPhysicsState(playerId, physicsState) +``` +```js /** - * Allow a player to walk through a type of block. For blocks that are normally solid and not seethrough, the player will experience slight visual glitches while inside the block. - * - * + * Get physics state for player * @param {PlayerId} playerId - * @param {BlockName} blockName - * @param {boolean} [disable] - If you've enabled a player to walk through a block and want to make the block solid for them again, pass this with true. Otherwise you only need to pass playerId and blockName - * @returns {void} + * @returns {PlayerPhysicsStateData} */ -setWalkThroughType(playerId, blockName, disable) +getPlayerPhysicsState(playerId) +``` +```js /** - * Allow a player to walk through (or not walk through) voxels that are located within a given rectangle. - * For blocks that are normally solid and not seethrough, the player will experience slight visual glitches while inside the block. - * - * You could set both pos1 and pos2 to [0, 0, 0] to make only 0, 0, 0 walkthrough, for example. - * + * Set camera zoom for a player * @param {PlayerId} playerId - * @param {number[]} pos1 - The one corner of the cuboid. Format [x, y, z] - * @param {number[]} pos2 - The top right corner of the cuboid. Format [x, y, z] - * @param {WalkThroughType} updateType - The type of update. Whether to make a rect solid, or able to be walked through. + * @param {number} zoom * @returns {void} */ -setWalkThroughRect(playerId, pos1, pos2, updateType) +setCameraZoom(playerId, zoom) +``` +```js /** - * Give a player an item and a certain amount of that item. - * Returns the amount of item added to the users inventory. - * - * @param {PlayerId} playerId - * @param {string} itemName - * @param {number} [itemAmount] - * @param {ItemAttributes} [attributes] - An optional object for certain types of item. For guns this can contain the shotsLeft field which is the amount of ammo the gun currently has. - * @returns {number} + * @param {PlayerId} playerId - hears the sound + * @param {string} soundName - Can also be a prefix. If so, a random sound with that prefix will be played + * @param {number} volume - 0-1. If it's too quiet and volume is 1, normalise your sound in audacity + * @param {number} rate - The speed of playback. Also affects pitch. 0.5-4. Lower playback = lower pitch + * @param { { + * playerIdOrPos: PlayerId | number[] + * maxHearDist?: number + * refDistance?: number + * } } [posSettings] + * @returns {void} */ -giveItem(playerId, itemName, itemAmount, attributes) +playSound(playerId, soundName, volume, rate, posSettings) +``` +```js /** - * Whether the player has space in their inventory to get new blocks - * @param {PlayerId} playerId - * @returns {boolean} + * See documentation for api.playSound + * @param {string} soundName + * @param {number} volume + * @param {number} rate + * @param { { + * playerIdOrPos: PlayerId | number[] + * maxHearDist?: number + * refDistance?: number + * } } [posSettings] + * @param {PlayerId} [exceptPlayerId] + * @returns {void} */ -inventoryIsFull(playerId) +broadcastSound(soundName, volume, rate, posSettings, exceptPlayerId) +``` +```js /** - * Put an item in a specific index. Default hotbar is indexes 0-9 - * - * @param {PlayerId} playerId - * @param {number} itemSlotIndex - 0-indexed - * @param {string} itemName - Can be 'Air', in which case itemAmount will be ignored and the slot will be cleared. - * @param {PNull} [itemAmount] - -1 for infinity. Should not be set, or null, for items that are not stackable. - * @param {ItemAttributes} [attributes] - An optional object for certain types of item. For guns this can contain the shotsLeft field which is the amount of ammo the gun currently has. - * @param {boolean} [tellClient] - whether to tell client about it - results in desync between client and server if client doesnt locally perform the same action + * See documentation for api.playSound + * @param {string} soundName + * @param {number} volume + * @param {number} rate + * @param { { + * playerIdOrPos: PlayerId | number[] + * maxHearDist?: number + * refDistance?: number + * } } [posSettings] + * @param {PlayerId} [predictedBy] * @returns {void} */ -setItemSlot(playerId, itemSlotIndex, itemName, itemAmount, attributes, tellClient) +playClientPredictedSound(soundName, volume, rate, posSettings, predictedBy) +``` +```js /** - * Remove an amount of item from a player's inventory + * Get the position of a player's target block and the block adjacent to it (e.g. where a block would be placed) + * + * + * Note: This position is a tick ahead of the client's block target info (noa.targetedBlock), + * since the client updates the blocktarget before the entities tick (and since it uses the renderposition of the camera) + * + * This normally doesn't matter but if you are client predicting something based on noa.targetedBlock + * (currently only applicable to in-engine code), you should not verify using this * * @param {PlayerId} playerId - * @param {string} itemName - * @param {number} amount - * @returns {void} + * @returns { { position: Pos; normal: Pos; adjacent: Pos } } */ -removeItemName(playerId, itemName, amount) +getPlayerTargetInfo(playerId) +``` +```js /** - * Get the item at a specific index - * Returns null if there is no item at that index - * If there is an item, return an object of the format { name: string; amount: PNull; attributes: ItemAttributes; } + * Get the position of a player's camera and the direction (both in Euclidean and spherical coordinates) they are attempting to use an item. + * The camPos has the same limitations described in getPlayerTargetInfo * * @param {PlayerId} playerId - * @param {number} itemSlotIndex - * @returns {PNull} + * @returns { { camPos: Pos; dir: Pos; angleDir: AngleDir; moveHeading: number } } */ -getItemSlot(playerId, itemSlotIndex) +getPlayerFacingInfo(playerId) +``` +```js /** - * Whether a player has an item + * Check whether a player is crouching * * @param {PlayerId} playerId - * @param {string} itemName - * @returns {boolean} - bool + * @returns {boolean} */ -hasItem(playerId, itemName) +isPlayerCrouching(playerId) +``` +```js /** - * The amount of an itemName a player has. - * Returns 0 if the player has none, and a negative number if infinite. - * + * Get the aura info for a player * @param {PlayerId} playerId - * @param {string} itemName - * @returns {number} - number + * @returns { { level: number; totalAura: number; auraPerLevel: number } } */ -getInventoryItemAmount(playerId, itemName) +getAuraInfo(playerId) +``` +```js /** - * Clear the players inventory - * + * Sets the total aura for a player. Will not go over max level or under 0 * @param {PlayerId} playerId + * @param {number} totalAura * @returns {void} */ -clearInventory(playerId) +setTotalAura(playerId, totalAura) +``` +```js /** - * Force the player to have the ith inventory slot selected. E.g. newI 0 makes the player have the 0th inventory slot selected - * + * Set the aura level for a player - shortcut for setTotalAura(level * auraPerLevel) * @param {PlayerId} playerId - * @param {number} newI - integer from 0-9 + * @param {number} level * @returns {void} */ -setSelectedInventorySlotI(playerId, newI) +setAuraLevel(playerId, level) +``` +```js /** - * Get a player's currently selected inventory slot + * Add (or remove if negative) aura to a player. Will not go over max level or under 0 * @param {PlayerId} playerId - * @returns {number} - */ -getSelectedInventorySlotI(playerId) - -/** - * Get the currently held item of a player - * Returns null if no item is being held - * If an item is held, return an object of the format {name: itemName, amount: amountOfItem} - * - * @param {PlayerId} playerId - * @returns {PNull} - */ -getHeldItem(playerId) - -/** - * Get the amount of free slots in a player's inventory. - * - * @param {PlayerId} playerId - * @returns {number} - number - */ -getInventoryFreeSlotCount(playerId) - -/** - * Checks if a player is able to open a chest at a given location, - * as per the rules laid out by the "onPlayerAttemptOpenChest" game callback. - * Returns true if the player can open the chest, false if they cannot, and void if the chest does not exist. - * - * @param {PlayerId} playerId - * @param {number} chestX - * @param {number} chestY - * @param {number} chestZ - * @returns {PNull} - */ -canOpenStandardChest(playerId, chestX, chestY, chestZ) - -/** - * Give a standard chest an item and a certain amount of that item. - * Returns the amount of item added to the chest. - * - * @param {number[]} chestPos - * @param {string} itemName - * @param {number} [itemAmount] - * @param {PlayerId} [playerId] - The player who is interacting with the chest. - * @param {ItemAttributes} [attributes] - An optional object for certain types of item. For guns this can contain the shotsLeft field which is the amount of ammo the gun currently has. - * @returns {number} - */ -giveStandardChestItem(chestPos, itemName, itemAmount, playerId, attributes) - -/** - * Get the amount of free slots in a standard chest - * Returns null for non-chests - * - * @param {number[]} chestPos - * @returns {PNull} - number - */ -getStandardChestFreeSlotCount(chestPos) - -/** - * The amount of an itemName a standard chest has. - * Returns 0 if the standard chest has none, and a negative number if infinite. - * - * @param {number[]} chestPos - * @param {string} itemName - * @returns {number} - number - */ -getStandardChestItemAmount(chestPos, itemName) - -/** - * Get the item at a chest slot. Null if empty otherwise format {name: itemName, amount: amountOfItem} - * - * @param {number[]} chestPos - * @param {number} idx - * @returns {PNull} - */ -getStandardChestItemSlot(chestPos, idx) - -/** - * Get all the items from a standard chest in order. Use this instead of repetitive calls to getStandardChestItemSlot - * - * @param {number[]} chestPos - * @returns {PNull[]} - */ -getStandardChestItems(chestPos) - -/** - * @param {number[]} chestPos - * @param {number} idx - 0-indexed - * @param {string} itemName - Can be 'Air', in which case itemAmount will be ignored and the slot will be cleared. - * @param {number} [itemAmount] - -1 for infinity. Should not be set, or null, for items that are not stackable. - * @param {PlayerId} [playerId] - The player who is interacting with the chest. - * @param {ItemAttributes} [attributes] - An optional object for certain types of item. For guns this can contain the shotsLeft field which is the amount of ammo the gun currently has. - * @returns {void} - */ -setStandardChestItemSlot(chestPos, idx, itemName, itemAmount, playerId, attributes) - -/** - * Get the item in a player's moonstone chest slot. Null if empty - * - * Moonstone chests are a type of chest where a player accesses the same contents no matter the location of the moonstone chest - * - * @param {PlayerId} playerId - * @param {number} idx - * @returns {PNull} - */ -getMoonstoneChestItemSlot(playerId, idx) - -/** - * Get all the items from a moonstone chest in order. Use this instead of repetitive calls to getMoonstoneChestItemSlot - * - * Moonstone chests are a type of chest where a player accesses the same contents no matter the location of the moonstone chest - * - * @param {PlayerId} playerId - * @returns {PNull[]} - */ -getMoonstoneChestItems(playerId) - -/** - * Moonstone chests are a type of chest where a player accesses the same contents no matter the location of the moonstone chest - * - * @param {PlayerId} playerId - * @param {number} idx - 0-indexed - * @param {string} itemName - Can be 'Air', in which case itemAmount will be ignored and the slot will be cleared. - * @param {number} [itemAmount] - -1 for infinity. Should not be set, or null, for items that are not stackable. - * @param {ItemAttributes} [metadata] - An optional object for certain types of item. For guns this can contain the shotsLeft field which is the amount of ammo the gun currently has. - * @returns {void} - */ -setMoonstoneChestItemSlot(playerId, idx, itemName, itemAmount, metadata) - -/** - * Get the name of the lobby this game is running in. - * @returns {PNull} - */ -getLobbyName() - -/** - * Integer lobby names are public - * @returns {boolean} - boolean - */ -isPublicLobby() - -/** - * Returns if the current lobby the game is running in is special - e.g. a discord guild or dm, or simply a standard lobby - * @returns {LobbyType} - */ -getLobbyType() - -/** - * Update the progress bar in the bottom right corner. - * Can be queued. - * - * @param {PlayerId} playerId - * @param {number} toFraction - The fraction of the progress bar you want to be filled up. - * @param {number} [toDuration] - The time it takes for the bar to reach the given toFraction in ms. - * @returns {void} - */ -progressBarUpdate(playerId, toFraction, toDuration) - -/** - * Edit the crafting recipes for a player - * - * @param {PlayerId} playerId - * @param {ItemName} itemName - * @param {RecipesForItem} recipesForItem - * @returns {void} - */ -editItemCraftingRecipes(playerId, itemName, recipesForItem) - -/** - * Reset the crafting recipes for a given back to its original bloxd state - * - * @param {PlayerId} playerId - * @param {string} itemName - * @returns {void} - */ -resetItemCraftingRecipes(playerId, itemName) - -/** - * Check if a position is within a cubic rectangle - * - * @param {number[]} coordsToCheck - * @param {number[]} pos1 - position of one corner - * @param {number[]} pos2 - position of opposite corner - * @param {boolean} [addOneToMax] - * @returns {boolean} - */ -isInsideRect(coordsToCheck, pos1, pos2, addOneToMax) - -/** - * Get the entities in the rect between [minX, minY, minZ] and [maxX, maxY, maxZ] - * - * @param {number[]} minCoords - * @param {number[]} maxCoords - * @returns {EntityId[]} - */ -getEntitiesInRect(minCoords, maxCoords) - -/** - * @param {EntityId} entityId - * @returns {EntityType} + * @param {number} auraDiff + * @returns {number} - The actual change in aura */ -getEntityType(entityId) +applyAuraChange(playerId, auraDiff) +``` +### Mob functions +> [!NOTE] +> These functions only work on mobs, but entity functions will also work on them too. +```js /** * Create a mob herd. A mob herd represents a collection of mobs that move together. * @returns {MobHerdId} */ createMobHerd() - +``` +```js /** * Try to spawn a mob into the world at a given position. Returns null on failure. * WARNING: Either the "onPlayerAttemptSpawnMob" or the "onWorldAttemptSpawnMob" game callback will be called @@ -1232,7 +1033,8 @@ createMobHerd() * @returns {PNull} */ attemptSpawnMob(mobType, x, y, z, opts) - +``` +```js /** * Dispose of a mob's state and remove them from the world without triggering "on death" flows. * Always succeeds. @@ -1240,7 +1042,8 @@ attemptSpawnMob(mobType, x, y, z, opts) * @returns {void} */ despawnMob(mobId) - +``` +```js /** * Returns the current default value for a mob setting. * @@ -1249,7 +1052,8 @@ despawnMob(mobId) * @returns {MobSettings[TMobSetting]} */ getDefaultMobSetting(mobType, setting) - +``` +```js /** * Set the default value for a mob setting. * @param {TMobType} mobType @@ -1258,7 +1062,8 @@ getDefaultMobSetting(mobType, setting) * @returns {void} */ setDefaultMobSetting(mobType, setting, value) - +``` +```js /** * Get the current value of a mob setting for a specific mob. * @param {MobId} mobId @@ -1266,7 +1071,8 @@ setDefaultMobSetting(mobType, setting, value) * @returns {MobSettings[TMobSetting]} */ getMobSetting(mobId, setting) - +``` +```js /** * Set the current value of a mob setting for a specific mob. * @param {MobId} mobId @@ -1275,346 +1081,797 @@ getMobSetting(mobId, setting) * @returns {void} */ setMobSetting(mobId, setting, value) - +``` +```js /** * Get the number of mobs in the world. * @returns {number} */ getNumMobs() - +``` +```js /** * Get the mob IDs of all mobs in the world. * @returns {MobId[]} */ getMobIds() - -/** - * Apply an impulse to an entity - * - * @param {EntityId} eId - * @param {number} xImpulse - * @param {number} yImpulse - * @param {number} zImpulse - * @returns {void} - */ -applyImpulse(eId, xImpulse, yImpulse, zImpulse) - +``` +### Block functions +> [!NOTE] +> This contains functions used for setting, changing, and getting blocks. +```js /** - * Set the velocity of an entity - * - * @param {EntityId} eId + * Check if the block at a specific position is in a loaded chunk. * @param {number} x * @param {number} y * @param {number} z - * @returns {void} + * @returns {boolean} - boolean */ -setVelocity(eId, x, y, z) - +isBlockInLoadedChunk(x, y, z) +``` +```js /** - * Set the heading for a server-auth entity. - * - * @param {EntityId} entityId - * @param {number} newHeading + * Get the name of a block. + * @param {number | number[]} x - could be an array [x, y, z]. If so, the other params shouldn't be passed. + * @param {number} [y] + * @param {number} [z] + * @returns {BlockName} - blockName - will be a name contained in blockMetadata.ts or 'Air' + */ +getBlock(x, y, z) +``` +```js +/** + * Used to get the block id at a specific position. + * Intended only for use in hot code paths - default to getBlock for most use cases + * + * @param {number} x + * @param {number} y + * @param {number} z + * @returns {BlockId} + */ +getBlockId(x, y, z) +``` +```js +/** + * Set a block. Valid names are those either contained in blockMetadata.ts or are 'Air' + * + * This function is optimised for setting broad swathes of blocks. For example, if you have a 50x50x50 area you need to turn to air, it will run performantly if you call this in double nested loops. + * + * IF you're only changing a few blocks, you want this to be super snappy for players, AND you're calling this outside of your _tick function, you can use api.setOptimisations(false). + * + * If you want the optimisations for large quantities of blocks later on, then call api.setOptimisations(true) when you're done. + * + * + * + * @param {number | number[]} x - Can be an array + * @param {number | BlockName} y - Should be blockname if first param is array + * @param {number} [z] + * @param {BlockName} [blockName] * @returns {void} */ -setEntityHeading(entityId, newHeading) +setBlock(x, y, z, blockName) +``` +```js +/** + * Initiate a block change "by the world". + * This ends up calling the onWorldChangeBlock and only makes the change if not prevented by game/plugins. + * initiatorDbId is null if the change was initiated by the game code. + * + * @param {PNull} initiatorDbId + * @param {number} x + * @param {number} y + * @param {number} z + * @param {BlockName} blockName + * @param {WorldBlockChangeInfo} [extraInfo] + * @returns {"preventChange" | "preventDrop" | void} - "preventChange" if the change was prevented, "preventDrop" if the change was allowed but without dropping any items, and undefined if the change was allowed with an item drop + */ +attemptWorldChangeBlock(initiatorDbId, x, y, z, blockName, extraInfo) +``` +```js /** - * Spin player in kart - * @param {PlayerId} playerId - * @param {number} dir - direction of spin, 1 for right, -1 for left - * @param {number} durationInTicks - the number of ticks it takes to complete a spin - * @returns {void} + * Returns whether a block is solid or not. + * E.g. Grass block is solid, while water, ladder and water are not. + * Will be true if the block is unloaded. + * + * @param {number | number[]} x + * @param {number} [y] + * @param {number} [z] + * @returns {boolean} */ -spinKart(playerId, dir, durationInTicks) +getBlockSolidity(x, y, z) +``` +```js /** - * Set the amount of an item in an item entity + * Helper function that sets all blocks in a rectangle to a specific block. * - * @param {EntityId} itemId - * @param {number} newAmount + * @param {number[]} pos1 - array [x, y, z] + * @param {number[]} pos2 - array [x, y, z] + * @param {BlockName} blockName * @returns {void} */ -setItemAmount(itemId, newAmount) +setBlockRect(pos1, pos2, blockName) +``` +```js /** - * Show a message over the shop in the same place that a shop item's onBoughtMessage is shown. - * Displays for a couple seconds before disappearing - * Use case is to show a dynamic message when player buys an item + * Create walls by providing two opposite corners of the cuboid * - * @param {PlayerId} playerId - * @param {string | CustomTextStyling} info + * + * @param {number[]} pos1 - array [x, y, z] + * @param {number[]} pos2 - array [x, y, z] + * @param {BlockName} blockName + * @param {boolean} [hasFloor] + * @param {boolean} [hasCeiling] * @returns {void} */ -sendOverShopInfo(playerId, info) +setBlockWalls(pos1, pos2, blockName, hasFloor, hasCeiling) +``` +```js /** - * Open the shop UI for a player + * Only use this instead of getBlock if you REALLY need the performance (i.e. you are iterating over tens of thousands of blocks) + * ReturnedObject.blockData is a 32x32x32 ndarray of block ids + * (see https://www.npmjs.com/package/ndarray) + * Each block id is a 16-bit number + * The ndarray should only be read from, writing to it will result in desync between the server and client * - * @param {PlayerId} playerId - * @param {boolean} [toggle] - Whether to close the shop if it's already open - * @param {string} [forceCategory] - If set, will change the shop to this category - * @returns {void} + * @param {number[]} pos - The returned chunk contains pos + * @returns {PNull} - null if the chunk is not loaded in a persisted world. ReturnedObject.blockData is an ndarray that can be accessed */ -openShop(playerId, toggle, forceCategory) +getChunk(pos) +``` +```js /** - * Apply an effect to a lifeform. - * Can be an inbuilt effect E.g. "Speed" (speed boost), "Damage" (damage boost). - * For inbuilt just pass the name of the effect and the functionality is handled in-engine. - * For custom effect, you pass customEffectInfo. The icon can be an icon from "IngameIcons.ts" or a bloxd item name. - * The custom effect onEndCb is an optional helper within which you can undo the effect you applied. - * Note that onEndCb will not work for press to code boards, code blocks or world code. + * Use this to get a chunk ndarray you can edit and set in resetChunk. * - * @param {LifeformId} lifeformId - * @param {string} effectName - * @param {number | null} duration - * @param { { icon?: IngameIconName | ItemName; onEndCb?: () => void; displayName?: string | TranslatedText } & Partial } customEffectInfo - * @returns {void} + * Only use chunk helpers if you REALLY need the performance (i.e. you are iterating over tens of thousands of blocks) + * ReturnedObject.blockData is a 32x32x32 ndarray of air. + * (see https://www.npmjs.com/package/ndarray) + * Each block id is a 16-bit number + * @returns {GameChunk} */ -applyEffect(lifeformId, effectName, duration, customEffectInfo) +getEmptyChunk() +``` +```js /** - * Get all the effects currently applied to a lifeform. + * Splits the block name by '|'. If no meta info, metaInfo is '' * - * @param {LifeformId} lifeformId - * @returns {string[]} + * @param {BlockName | null | undefined} blockName + * @returns {ItemMetaInfo} */ -getEffects(lifeformId) +getMetaInfo(blockName) +``` +```js /** - * Remove an effect from a lifeform. + * Get the numeric id of a block used in the ndarrays returned from getChunk + * I.e. chunk.blockData.set(x, y, z, api.blockNameToBlockId("Dirt")) + * or chunk.blockData.get(x, y, z) === api.blockNameToBlockId("Dirt") * - * @param {LifeformId} lifeformId - * @param {string} name - * @returns {void} + * @param {string} blockName + * @param {boolean} [allowInvalidBlock] - Don't throw an error if the block name is invalid. + * @returns {PNull} */ -removeEffect(lifeformId, name) +blockNameToBlockId(blockName, allowInvalidBlock) +``` +```js /** - * Change a part of a player's skin + * Goes from block id to block name. The reverse of blockNameToBlockId + * + * @param {BlockId} blockId + * @returns {BlockName} + */ +blockIdToBlockName(blockId) +``` + +```js +/** + * Get the unique id of the chunk containing pos in the current map + * + * @param {number[]} pos + * @returns {string} + */ +blockCoordToChunkId(pos) +``` + +```js +/** + * Get the co-ordinates of the block in the chunk with the lowest x, y, and z co-ordinates + * + * @param {string} chunkId + * @returns {[number, number, number]} + */ +chunkIdToBotLeftCoord(chunkId) +``` + +```js +/** + * Let a player change a block at a specific co-ordinate. Useful when client option canChange is false. + * Overrides blockRect and blockType settings, so also useful when you have disallowed changing of a block type with setCantChangeBlockType. + * Using this on 1000s of blocks will cause lag - if that is needed, find a way to use setCanChangeBlockType. + * * @param {PlayerId} playerId - * @param {CustomisationPart} partType - * @param {string} selected + * @param {number} x + * @param {number} y + * @param {number} z * @returns {void} */ -changePlayerIntoSkin(playerId, partType, selected) +setCanChangeBlock(playerId, x, y, z) +``` +```js /** - * Remove gamemode-applied skin from a player + * Prevents a player from changing a block at a specific co-ordinate. Useful when client option canChange is true. + * Overrides blockRect and blockType settings, so also useful when you have allowed changing of a block type with setCantChangeBlockType. + * Using this on 1000s of blocks will cause lag - if that is needed, find a way to use setCantChangeBlockType. + * * @param {PlayerId} playerId + * @param {number} x + * @param {number} y + * @param {number} z * @returns {void} */ -removeAppliedSkin(playerId) +setCantChangeBlock(playerId, x, y, z) +``` +```js /** - * Scale node of a player's mesh by 3d vector. - * State from prior calls to this api is lost so if you want to have multiple nodes scaled, pass in all the scales at once. + * Lets a player Change a block type. Valid names are those contained within blockMetadata.ts and 'Air' + * Less priority than cant change block pos/can change block rect * * @param {PlayerId} playerId - * @param {EntityMeshScalingMap} nodeScales + * @param {BlockName} blockName * @returns {void} */ -scalePlayerMeshNodes(playerId, nodeScales) +setCanChangeBlockType(playerId, blockName) +``` +```js /** - * Attach/detach mesh instances to/from an entity - * @param {EntityId} eId - * @param {EntityNamedNode} node - node to attach to - * @param {PNull} type - if null, detaches mesh from this node - * @param {MeshEntityOpts[MeshType]} [opts] - * @param {number[]} [offset] - * @param {number[]} [rotation] + * Stops a player from Changeing a block type. Valid names are those contained within blockMetadata.ts and 'Air' + * Less priority than can change block pos/can change block rect + * + * @param {PlayerId} playerId + * @param {BlockName} blockName * @returns {void} */ -updateEntityNodeMeshAttachment(eId, node, type, opts, offset, rotation) +setCantChangeBlockType(playerId, blockName) +``` +```js /** - * Set the pose of the player + * Remove any previous can/cant change block type settings for a player + * * @param {PlayerId} playerId - * @param {PlayerPose} pose + * @param {BlockName} blockName * @returns {void} */ -setPlayerPose(playerId, pose) +resetCanChangeBlockType(playerId, blockName) +``` +```js /** - * Set physics state of player (vehicle type and tier) + * Make it so a player can Change blocks within two points. Coordinates are inclusive. E.g. if [0, 0, 0] is pos1 + * and [1, 1, 1] is pos2 then the 8 blocks contained within low and high will be able to be broken. + * Overrides setCantChangeBlockType + * + * * @param {PlayerId} playerId - * @param {PlayerPhysicsStateData} physicsState + * @param {number[]} pos1 - Arg as [x, y, z] + * @param {number[]} pos2 - Arg as [x, y, z] * @returns {void} */ -setPlayerPhysicsState(playerId, physicsState) - +setCanChangeBlockRect(playerId, pos1, pos2) +``` + +```js +/** + * Make it so a player cant Change blocks within two points. Coordinates are inclusive. E.g. if [0, 0, 0] is pos1 + * and [1, 1, 1] is pos2 then the 8 blocks contained within pos1 and pos2 won't be able to be broken. + * Overrides setCanChangeBlockType + * + * + * @param {PlayerId} playerId + * @param {number[]} pos1 - Arg as [x, y, z] + * @param {number[]} pos2 - Arg as [x, y, z] + * @returns {void} + */ +setCantChangeBlockRect(playerId, pos1, pos2) +``` + +```js +/** + * Remove any previous can/cant change block rect settings for a player + * + * @param {PlayerId} playerId + * @param {number[]} pos1 + * @param {number[]} pos2 + * @returns {void} + */ +resetCanChangeBlockRect(playerId, pos1, pos2) +``` + +```js +/** + * Allow a player to walk through a type of block. For blocks that are normally solid and not seethrough, the player will experience slight visual glitches while inside the block. + * + * + * @param {PlayerId} playerId + * @param {BlockName} blockName + * @param {boolean} [disable] - If you've enabled a player to walk through a block and want to make the block solid for them again, pass this with true. Otherwise you only need to pass playerId and blockName + * @returns {void} + */ +setWalkThroughType(playerId, blockName, disable) +``` + +```js +/** + * Allow a player to walk through (or not walk through) voxels that are located within a given rectangle. + * For blocks that are normally solid and not seethrough, the player will experience slight visual glitches while inside the block. + * + * You could set both pos1 and pos2 to [0, 0, 0] to make only 0, 0, 0 walkthrough, for example. + * + * @param {PlayerId} playerId + * @param {number[]} pos1 - The one corner of the cuboid. Format [x, y, z] + * @param {number[]} pos2 - The top right corner of the cuboid. Format [x, y, z] + * @param {WalkThroughType} updateType - The type of update. Whether to make a rect solid, or able to be walked through. + * @returns {void} + */ +setWalkThroughRect(playerId, pos1, pos2, updateType) +``` + +```js +/** + * Raycast for a block in the world. + * Given a position and a direction, find the first block that the "ray" hits. + * + * @param {number[]} fromPos + * @param {number[]} dirVec + * @returns {BlockRaycastResult} + */ +raycastForBlock(fromPos, dirVec) +``` + +```js +/** + * Store data about a block in a performant manner. Data is cleared when block changes. + * E.g. chest + * Works well with blocks marked tickable (e.g. wheat) + * + * @param {number} x + * @param {number} y + * @param {number} z + * @param {unknown} data + * @returns {void} + */ +setBlockData(x, y, z, data) +``` + +```js +/** + * Get stored data about a block in a performant manner. Data is cleared when block changes. + * E.g. chest + * Works well with blocks marked tickable (e.g. wheat) + * + * @param {number} x + * @param {number} y + * @param {number} z + * @returns {any} + */ +getBlockData(x, y, z) +``` + +### Item/Inventory Functions +> [!NOTE] +> Some of these functions require/affect playerId/mobId/entityId, but to keep them all together they have been placed here. +```js +/** + * Create a dropped item. + * @param {number} x + * @param {number} y + * @param {number} z + * @param {string} itemName - Name of the item. Valid names can be found in blockMetadata.ts and itemMetadata.ts + * @param {PNull} [amount] - The amount of the item to include in the drop - so when the player picks up the item drop, they get this many of the item. + * @param {boolean} [mergeItems] - Whether to merge the item into an nearby item of same type, if one exists. Defaults to false. + * @param {ItemAttributes} [attributes] - Attributes of the item being dropped + * @pram {number} [timeTillDespawn] - Time till the item automatically despawns in millisecounds. Max of 5 mins. + * @returns {PNull} - the id you can pass to setCantPickUpItem, or null if the item drop limit was reached + */ +createItemDrop(x, y, z, itemName, amount, mergeItems, attributes, timeTillDespawn) +``` +```js +/** + * Prevent a player from picking up an item. itemId returned by createItemDrop + * + * @param {PlayerId} playerId + * @param {EntityId} itemId + * @returns {void} + */ +setCantPickUpItem(playerId, itemId) +``` +```js +/** + * Delete an item drop by item drop entity ID + * + * @param {EntityId} itemId + * @returns {void} + */ +deleteItemDrop(itemId) +``` +```js +/** + * Get the metadata about a block or item before stats have been modified by any client options + * (i.e. its entry in either blockMetadata.ts or nonBlockMetadata in itemMetadata.ts) + * + * @param {string} itemName + * @returns {Partial} + */ +getInitialItemMetadata(itemName) +``` +```js +/** + * Get stat info about a block or item + * Either based on a client option for a player: (e.g. `DirtTtb`) + * or its entry in blockMetadata.ts or nonBlockMetadata in itemMetadata.ts if no client option is set. + * + * If null is passed for lifeformId, this is simply its entry in blockMetadata etc. + * + * + * @param {PNull} LifeformId + * @param {string} itemName + * @param {K} stat + * @returns {AnyMetadataItem[K]} + */ +getItemStat(LifeformId, itemName, stat) +``` +```js +/** + * Give a player an item and a certain amount of that item. + * Returns the amount of item added to the users inventory. + * + * @param {PlayerId} playerId + * @param {string} itemName + * @param {number} [itemAmount] + * @param {ItemAttributes} [attributes] - An optional object for certain types of item. For guns this can contain the shotsLeft field which is the amount of ammo the gun currently has. + * @returns {number} + */ +giveItem(playerId, itemName, itemAmount, attributes) +``` +```js +/** + * Whether the player has space in their inventory to get new blocks + * @param {PlayerId} playerId + * @returns {boolean} + */ +inventoryIsFull(playerId) +``` +```js +/** + * Put an item in a specific index. Default hotbar is indexes 0-9 + * + * @param {PlayerId} playerId + * @param {number} itemSlotIndex - 0-indexed + * @param {string} itemName - Can be 'Air', in which case itemAmount will be ignored and the slot will be cleared. + * @param {PNull} [itemAmount] - -1 for infinity. Should not be set, or null, for items that are not stackable. + * @param {ItemAttributes} [attributes] - An optional object for certain types of item. For guns this can contain the shotsLeft field which is the amount of ammo the gun currently has. + * @param {boolean} [tellClient] - whether to tell client about it - results in desync between client and server if client doesnt locally perform the same action + * @returns {void} + */ +setItemSlot(playerId, itemSlotIndex, itemName, itemAmount, attributes, tellClient) +``` +```js +/** + * Remove an amount of item from a player's inventory + * + * @param {PlayerId} playerId + * @param {string} itemName + * @param {number} amount + * @returns {void} + */ +removeItemName(playerId, itemName, amount) +``` +```js +/** + * Get the item at a specific index + * Returns null if there is no item at that index + * If there is an item, return an object of the format { name: string; amount: PNull; attributes: ItemAttributes; } + * + * @param {PlayerId} playerId + * @param {number} itemSlotIndex + * @returns {PNull} + */ +getItemSlot(playerId, itemSlotIndex) +``` +```js +/** + * Whether a player has an item + * + * @param {PlayerId} playerId + * @param {string} itemName + * @returns {boolean} - bool + */ +hasItem(playerId, itemName) +``` +```js +/** + * The amount of an itemName a player has. + * Returns 0 if the player has none, and a negative number if infinite. + * + * @param {PlayerId} playerId + * @param {string} itemName + * @returns {number} - number + */ +getInventoryItemAmount(playerId, itemName) +``` +```js +/** + * Clear the players inventory + * + * @param {PlayerId} playerId + * @returns {void} + */ +clearInventory(playerId) +``` +```js +/** + * Force the player to have the ith inventory slot selected. E.g. newI 0 makes the player have the 0th inventory slot selected + * + * @param {PlayerId} playerId + * @param {number} newI - integer from 0-9 + * @returns {void} + */ +setSelectedInventorySlotI(playerId, newI) +``` +```js +/** + * Get a player's currently selected inventory slot + * @param {PlayerId} playerId + * @returns {number} + */ +getSelectedInventorySlotI(playerId) +``` +```js +/** + * Get the currently held item of a player + * Returns null if no item is being held + * If an item is held, return an object of the format {name: itemName, amount: amountOfItem} + * + * @param {PlayerId} playerId + * @returns {PNull} + */ +getHeldItem(playerId) +``` +```js +/** + * Get the amount of free slots in a player's inventory. + * + * @param {PlayerId} playerId + * @returns {number} - number + */ +getInventoryFreeSlotCount(playerId) +``` +```js +/** + * Checks if a player is able to open a chest at a given location, + * as per the rules laid out by the "onPlayerAttemptOpenChest" game callback. + * Returns true if the player can open the chest, false if they cannot, and void if the chest does not exist. + * + * @param {PlayerId} playerId + * @param {number} chestX + * @param {number} chestY + * @param {number} chestZ + * @returns {PNull} + */ +canOpenStandardChest(playerId, chestX, chestY, chestZ) +``` +```js +/** + * Give a standard chest an item and a certain amount of that item. + * Returns the amount of item added to the chest. + * + * @param {number[]} chestPos + * @param {string} itemName + * @param {number} [itemAmount] + * @param {PlayerId} [playerId] - The player who is interacting with the chest. + * @param {ItemAttributes} [attributes] - An optional object for certain types of item. For guns this can contain the shotsLeft field which is the amount of ammo the gun currently has. + * @returns {number} + */ +giveStandardChestItem(chestPos, itemName, itemAmount, playerId, attributes) +``` +```js +/** + * Get the amount of free slots in a standard chest + * Returns null for non-chests + * + * @param {number[]} chestPos + * @returns {PNull} - number + */ +getStandardChestFreeSlotCount(chestPos) +``` +```js +/** + * The amount of an itemName a standard chest has. + * Returns 0 if the standard chest has none, and a negative number if infinite. + * + * @param {number[]} chestPos + * @param {string} itemName + * @returns {number} - number + */ +getStandardChestItemAmount(chestPos, itemName) +``` +```js +/** + * Get the item at a chest slot. Null if empty otherwise format {name: itemName, amount: amountOfItem} + * + * @param {number[]} chestPos + * @param {number} idx + * @returns {PNull} + */ +getStandardChestItemSlot(chestPos, idx) +``` +```js /** - * Get physics state for player - * @param {PlayerId} playerId - * @returns {PlayerPhysicsStateData} + * Get all the items from a standard chest in order. Use this instead of repetitive calls to getStandardChestItemSlot + * + * @param {number[]} chestPos + * @returns {PNull[]} */ -getPlayerPhysicsState(playerId) - +getStandardChestItems(chestPos) +``` +```js /** - * Add following entity to player - * @param {PlayerId} playerId - * @param {EntityId} eId - * @param {number[]} [offset] + * @param {number[]} chestPos + * @param {number} idx - 0-indexed + * @param {string} itemName - Can be 'Air', in which case itemAmount will be ignored and the slot will be cleared. + * @param {number} [itemAmount] - -1 for infinity. Should not be set, or null, for items that are not stackable. + * @param {PlayerId} [playerId] - The player who is interacting with the chest. + * @param {ItemAttributes} [attributes] - An optional object for certain types of item. For guns this can contain the shotsLeft field which is the amount of ammo the gun currently has. * @returns {void} */ -addFollowingEntityToPlayer(playerId, eId, offset) - +setStandardChestItemSlot(chestPos, idx, itemName, itemAmount, playerId, attributes) +``` +```js /** - * Remove following entity from player + * Get the item in a player's moonstone chest slot. Null if empty + * + * Moonstone chests are a type of chest where a player accesses the same contents no matter the location of the moonstone chest + * * @param {PlayerId} playerId - * @param {EntityId} entityEId - * @returns {void} + * @param {number} idx + * @returns {PNull} */ -removeFollowingEntityFromPlayer(playerId, entityEId) - +getMoonstoneChestItemSlot(playerId, idx) +``` +```js /** - * Set camera zoom for a player + * Get all the items from a moonstone chest in order. Use this instead of repetitive calls to getMoonstoneChestItemSlot + * + * Moonstone chests are a type of chest where a player accesses the same contents no matter the location of the moonstone chest + * * @param {PlayerId} playerId - * @param {number} zoom - * @returns {void} - */ -setCameraZoom(playerId, zoom) - -/** - * @param {PlayerId} playerId - hears the sound - * @param {string} soundName - Can also be a prefix. If so, a random sound with that prefix will be played - * @param {number} volume - 0-1. If it's too quiet and volume is 1, normalise your sound in audacity - * @param {number} rate - The speed of playback. Also affects pitch. 0.5-4. Lower playback = lower pitch - * @param { { - * playerIdOrPos: PlayerId | number[] - * maxHearDist?: number - * refDistance?: number - * } } [posSettings] - * @returns {void} + * @returns {PNull[]} */ -playSound(playerId, soundName, volume, rate, posSettings) - +getMoonstoneChestItems(playerId) +``` +```js /** - * See documentation for api.playSound - * @param {string} soundName - * @param {number} volume - * @param {number} rate - * @param { { - * playerIdOrPos: PlayerId | number[] - * maxHearDist?: number - * refDistance?: number - * } } [posSettings] - * @param {PlayerId} [exceptPlayerId] + * Moonstone chests are a type of chest where a player accesses the same contents no matter the location of the moonstone chest + * + * @param {PlayerId} playerId + * @param {number} idx - 0-indexed + * @param {string} itemName - Can be 'Air', in which case itemAmount will be ignored and the slot will be cleared. + * @param {number} [itemAmount] - -1 for infinity. Should not be set, or null, for items that are not stackable. + * @param {ItemAttributes} [metadata] - An optional object for certain types of item. For guns this can contain the shotsLeft field which is the amount of ammo the gun currently has. * @returns {void} */ -broadcastSound(soundName, volume, rate, posSettings, exceptPlayerId) - +setMoonstoneChestItemSlot(playerId, idx, itemName, itemAmount, metadata) +``` +```js /** - * See documentation for api.playSound - * @param {string} soundName - * @param {number} volume - * @param {number} rate - * @param { { - * playerIdOrPos: PlayerId | number[] - * maxHearDist?: number - * refDistance?: number - * } } [posSettings] - * @param {PlayerId} [predictedBy] + * Edit the crafting recipes for a player + * + * @param {PlayerId} playerId + * @param {ItemName} itemName + * @param {RecipesForItem} recipesForItem * @returns {void} */ -playClientPredictedSound(soundName, volume, rate, posSettings, predictedBy) - -/** - * @param {EntityId} eId - * @param {ExplosionType} explosionType - * @param {number} knockbackFactor - * @param {number} explosionRadius - * @param {number[]} explosionPos - * @param {boolean} ignoreProjectiles - * @returns { { force: Pos; forceFrac: number; } } - */ -calcExplosionForce(eId, explosionType, knockbackFactor, explosionRadius, explosionPos, ignoreProjectiles) - +editItemCraftingRecipes(playerId, itemName, recipesForItem) +``` +```js /** - * Get the position of a player's target block and the block adjacent to it (e.g. where a block would be placed) - * - * - * Note: This position is a tick ahead of the client's block target info (noa.targetedBlock), - * since the client updates the blocktarget before the entities tick (and since it uses the renderposition of the camera) - * - * This normally doesn't matter but if you are client predicting something based on noa.targetedBlock - * (currently only applicable to in-engine code), you should not verify using this + * Reset the crafting recipes for a given back to its original bloxd state * * @param {PlayerId} playerId - * @returns { { position: Pos; normal: Pos; adjacent: Pos } } + * @param {PNull} itemName - Resets all crafting recipes for the given player if null, otherwise restes the crafting recipes for the given item. + * @returns {void} */ -getPlayerTargetInfo(playerId) +resetItemCraftingRecipes(playerId, itemName) +``` +```js /** - * Get the position of a player's camera and the direction (both in Euclidean and spherical coordinates) they are attempting to use an item. - * The camPos has the same limitations described in getPlayerTargetInfo + * Removes crafting recipes * * @param {PlayerId} playerId - * @returns { { camPos: Pos; dir: Pos; angleDir: AngleDir; moveHeading: number } } + * @param {PNull} itemName - Removes all the crafting recipes for the given player if null, otherwise removes the crafting reipes for the given item. + * @returns {void} */ -getPlayerFacingInfo(playerId) +removeItemCraftingRecipes(playerId, itemName) +``` +```js /** - * Raycast for a block in the world. - * Given a position and a direction, find the first block that the "ray" hits. + * Set the amount of an item in an item entity * - * @param {number[]} fromPos - * @param {number[]} dirVec - * @returns {BlockRaycastResult} + * @param {EntityId} itemId + * @param {number} newAmount + * @returns {void} */ -raycastForBlock(fromPos, dirVec) +setItemAmount(itemId, newAmount) +``` +### Lobby related functions +```js /** - * Check whether a player is crouching - * - * @param {PlayerId} playerId - * @returns {boolean} + * Obtain Date.now() value saved at start of current game tick + * @returns {number} */ -isPlayerCrouching(playerId) - +now() +``` +```js /** - * Get the aura info for a player - * @param {PlayerId} playerId - * @returns { { level: number; totalAura: number; auraPerLevel: number } } + * Get the name of the lobby this game is running in. + * @returns {PNull} */ -getAuraInfo(playerId) - +getLobbyName() +``` +```js /** - * Sets the total aura for a player. Will not go over max level or under 0 - * @param {PlayerId} playerId - * @param {number} totalAura - * @returns {void} + * Integer lobby names are public + * @returns {boolean} - boolean */ -setTotalAura(playerId, totalAura) +isPublicLobby() +``` +```js /** - * Set the aura level for a player - shortcut for setTotalAura(level * auraPerLevel) - * @param {PlayerId} playerId - * @param {number} level - * @returns {void} + * Returns if the current lobby the game is running in is special - e.g. a discord guild or dm, or simply a standard lobby + * @returns {LobbyType} */ -setAuraLevel(playerId, level) +getLobbyType() +``` +```js /** - * Add (or remove if negative) aura to a player. Will not go over max level or under 0 - * @param {PlayerId} playerId - * @param {number} auraDiff - * @returns {number} - The actual change in aura + * Check if a position is within a cubic rectangle + * + * @param {number[]} coordsToCheck + * @param {number[]} pos1 - position of one corner + * @param {number[]} pos2 - position of opposite corner + * @param {boolean} [addOneToMax] + * @returns {boolean} */ -applyAuraChange(playerId, auraDiff) +isInsideRect(coordsToCheck, pos1, pos2, addOneToMax) ``` ## Glossary of Referenced Types - -These 'types' can't be referenced by your code, but they help explain some of the parameters in the API. +> [!NOTE] +> These 'types' can't be referenced by your code, but they help explain some of the parameters in the API. ```js type CustomTextStyling = (string | EntityName | TranslatedText | StyledIcon | StyledText)[] +``` +```js type EntityMeshScalingMap = { [key in "TorsoNode" | "HeadMesh" | "ArmRightMesh" | "ArmLeftMesh" | "LegLeftMesh" | "LegRightMesh"]?: number[] } +``` +```js type EntityName = { entityName: string style?: { @@ -1622,30 +1879,40 @@ type EntityName = { colour?: string } } +``` -type IngameIconName = "Damage" | "Damage Reduction" | "Speed" | "VoidJump" | "Fist" | "Frozen" | "Hydrated" | "Invisible" | "Jump Boost" | "Poisoned" | "Slowness" | "Weakness" | "Health Regen" | "Haste" | "Double Jump" | "Heat Resistance" | "Gliding" | "Boating" | "Obsidian Boating" | "Bunny Hop" | "FallDamage" | "Feather Falling" | "Rested Damage" | "Rested Haste" | "Rested Speed" | "Rested Farming Yield" | "Rested Aura" | "Damage Enchantment" | "Critical Damage Enchantment" | "Attack Speed Enchantment" | "Protection Enchantment" | "Health Enchantment" | "Health Regen Enchantment" | "Stomp Damage Enchantment" | "Knockback Resist Enchantment" | "Arrow Speed Enchantment" | "Arrow Damage Enchantment" | "Quick Charge Enchantment" | "Break Speed Enchantment" | "Momentum Enchantment" | "Mining Yield Enchantment" | "Farming Yield Enchantment" | "Mining Aura Enchantment" | "Digging Aura Enchantment" | "Lumber Aura Enchantment" | "Farming Aura Enchantment" | "Vertical Knockback Enchantment" | "Horizontal Knockback Enchantment" +```js +type IngameIconName = "Damage" | "Damage Reduction" | "Speed" | "VoidJump" | "Fist" | "Frozen" | "Hydrated" | "Invisible" | "Jump Boost" | "Poisoned" | "Slowness" | "Weakness" | "Health Regen" | "Haste" | "Double Jump" | "Heat Resistance" | "Gliding" | "Boating" | "Obsidian Boating" | "Riding" | "Bunny Hop" | "FallDamage" | "Feather Falling" | "Thief" | "Rested Damage" | "Rested Haste" | "Rested Speed" | "Rested Farming Yield" | "Rested Aura" | "Damage Enchantment" | "Critical Damage Enchantment" | "Attack Speed Enchantment" | "Protection Enchantment" | "Health Enchantment" | "Health Regen Enchantment" | "Stomp Damage Enchantment" | "Knockback Resist Enchantment" | "Arrow Speed Enchantment" | "Arrow Damage Enchantment" | "Quick Charge Enchantment" | "Break Speed Enchantment" | "Momentum Enchantment" | "Mining Yield Enchantment" | "Farming Yield Enchantment" | "Mining Aura Enchantment" | "Digging Aura Enchantment" | "Lumber Aura Enchantment" | "Farming Aura Enchantment" | "Vertical Knockback Enchantment" | "Horizontal Knockback Enchantment" | "Health" | "HealthShield" +``` +```js enum ParticleSystemBlendMode { // Source color is added to the destination color without alpha affecting the result OneOne = 0, - // Blend current color and particle color using particle’s alpha + // Blend current color and particle color using particle's alpha Standard = 1, - // Add current color and particle color multiplied by particle’s alpha + // Add current color and particle color multiplied by particle's alpha Add, // Multiply current color with particle color Multiply, - // Multiply current color with particle color then add current color and particle color multiplied by particle’s alpha + // Multiply current color with particle color then add current color and particle color multiplied by particle's alpha MultiplyAdd, } +``` -type RecipesForItem = { - requires: { items: string[]; amt: number }[] - produces: number - station?: string | string[] - onCraftedAura?: number - isStarterRecipe?: boolean -}[] +```js +type RecipesForItem = RecursiveReadonly< + { + requires: { items: string[]; amt: number }[] + produces: number + station?: string | string[] + onCraftedAura?: number + isStarterRecipe?: boolean + }[] +> +``` +```js type StyledIcon = { icon: string style?: { @@ -1655,7 +1922,9 @@ type StyledIcon = { opacity?: number } } +``` +```js type StyledText = { str: string | EntityName | TranslatedText style?: { @@ -1668,7 +1937,9 @@ type StyledText = { } clickableUrl?: string } +``` +```js type TempParticleSystemOpts = { texture: string minLifeTime: number @@ -1698,18 +1969,79 @@ type TempParticleSystemOpts = { manualEmitCount: number hideDist?: number } +``` +```js type TranslatedText = { translationKey: string params?: Record } +``` + +```js +type EarthSkyBox = { + type: "earth" + inclination?: number + turbidity?: number + infiniteDistance?: number + luminance?: number + yCameraOffset?: number + azimuth?: number + // Not part of sky model by default; heavily tint to a vertex color + vertexTint?: [number, number, number] +} +``` +```js type ItemAttributes = { customDisplayName?: string; customDescription?: string; customAttributes?: Record } +``` +```js enum WalkThroughType { CANT_WALK_THROUGH = 0, CAN_WALK_THROUGH = 1, DEFAULT_WALK_THROUGH = 2, } +``` + +```js +type WorldBlockChangedInfo = { + cause: PNull<"Paintball" | "FloorCreator" | "Sapling" | "StemFruit" | "MeltingIce" | "Explosion"> +} +``` +```js +SkyBoxOptions = [ + default, + earth, + interstellar, + space_lightblue, + space_blue, + space_red, + underwater +] +``` + +## Enchants +> [!NOTE] +> Thank you to the_ccccc for sharing this! + +```js +enchants = ['Protection', 'Health', 'Health Regen', 'Damage', 'Critical Damage', 'Attack Speed', 'Momentum', 'Break Speed', 'Yield', 'Aura', 'Stomp', 'Protection', 'Knockback', 'Arrow Speed', 'Arrow Damage', 'Quick Charge', 'Knockback Resist', 'Horizontal Knockback', 'Vertical Knockback'] +``` + +```js +item_enchants = { + "armor": ['Protection', 'Health', 'Health Regen'], + "sword": ['Damage', 'Critical Damage', 'Attack Speed'], + "pickaxe": ['Momentum', 'Break speed', 'Yield', 'Aura'], + "hoe": ['Momentum', 'Break Speed', 'Yield', 'Aura'], + "axe": ['Momentum', 'Break Speed', 'Aura'], + "spade": ['Momentum', 'Break Speed', 'Aura'], + "fur boots": ['Stomp', 'Protection', 'Health', 'Health Regen'], + "knight sword": ['Damage', 'Critical Damage', 'Attack Speed', 'Knockback'], + "moonstone pickaxe": ['Momentum', 'Break Speed', 'Aura'], + "bow": ['Arrow Speed', 'Arrow Damage', 'Quick Charge'], + "fur chestplate": ['Knockback Resist', 'Protection', 'Health', 'Health Regen'], + "stick": ['Horizontal Knockback', 'Vertical Knockback', 'Damage'] ``` diff --git a/Blocks.md b/Blocks.md new file mode 100644 index 0000000..1995b4c --- /dev/null +++ b/Blocks.md @@ -0,0 +1,2878 @@ +# Blocks +> [!NOTE] +> Thank you to DULPH for proof reading and updating this list! + +## Unloaded +``` +Unloaded +``` +## Dirt and related blocks +``` +Dirt +Messy Dirt +Useless Soil +Rocky Dirt +Dirt|GrassRoots +Tilled Soil +``` +### Slabs +``` +Dirt Slab +Dirt Slab|meta|rot1|top +Dirt Slab|meta|rot1|side +Dirt Slab|meta|rot2|side +Dirt Slab|meta|rot3|side +Dirt Slab|meta|rot4|side +``` +### Grass +``` +Grass Block +Grass +Tall Grass +Tall Grass|Top +Spectral Grass +Autumn Fern +``` +### Jungle Grass +``` +Jungle Grass Block +Jungle Tall Grass +Jungle Tall Grass|Top +Jungle Grass Slab +Jungle Grass Slab|meta|rot1|top +Jungle Grass Slab|meta|rot1|side +Jungle Grass Slab|meta|rot2|side +Jungle Grass Slab|meta|rot3|side +Jungle Grass Slab|meta|rot4|side +``` +### Pine +``` +Pine Grass Block +Pine Fern +Pine Grass +Pine Grass Slab +Pine Grass Slab|meta|rot1|top +Pine Grass Slab|meta|rot1|side +Pine Grass Slab|meta|rot2|side +Pine Grass Slab|meta|rot3|side +Pine Grass Slab|meta|rot4|side +``` +#### Slabs +``` +Grass Slab +Grass Slab|meta|rot1|top +Grass Slab|meta|rot1|side +Grass Slab|meta|rot2|side +Grass Slab|meta|rot3|side +Grass Slab|meta|rot4|side +``` +### Snow +``` +Snow +Packed Snow +``` +#### Snowy Stone +``` +Snowy Stone Slab +Snowy Stone Slab|meta|rot1|top +Snowy Stone Slab|meta|rot1|side +Snowy Stone Slab|meta|rot2|side +Snowy Stone Slab|meta|rot3|side +Snowy Stone Slab|meta|rot4|side +``` +#### Messy +``` +Snowy Messy Stone +``` +### Ice +``` +Ice +``` +#### Melting +``` +Melting Ice +Melting Ice|Breaking +``` +#### Bricks +``` +Ice Bricks +Ice Bricks Slab +Ice Bricks Slab|meta|rot1|top +Ice Bricks Slab|meta|rot1|side +Ice Bricks Slab|meta|rot2|side +Ice Bricks Slab|meta|rot3|side +Ice Bricks Slab|meta|rot4|side +``` +### Sand +``` +Sand +``` +#### Sandstone +``` +Sandstone +Marked Sandstone +Smooth Sandstone +Engraved Sandstone +``` +##### Slabs +``` +Sandstone Slab +Sandstone Slab|meta|rot1|top +Sandstone Slab|meta|rot1|side +Sandstone Slab|meta|rot2|side +Sandstone Slab|meta|rot3|side +Sandstone Slab|meta|rot4|side +``` +###### Marked +``` +Marked Sandstone Slab +Marked Sandstone Slab|meta|rot1|top +Marked Sandstone Slab|meta|rot1|side +Marked Sandstone Slab|meta|rot2|side +Marked Sandstone Slab|meta|rot3|side +Marked Sandstone Slab|meta|rot4|side +``` +###### Smooth +``` +Smooth Sandstone Slab +Smooth Sandstone Slab|meta|rot1|top +Smooth Sandstone Slab|meta|rot1|side +Smooth Sandstone Slab|meta|rot2|side +Smooth Sandstone Slab|meta|rot3|side +Smooth Sandstone Slab|meta|rot4|side +``` +###### Engraved +``` +Engraved Sandstone Slab +Engraved Sandstone Slab|meta|rot1|top +Engraved Sandstone Slab|meta|rot1|side +Engraved Sandstone Slab|meta|rot2|side +Engraved Sandstone Slab|meta|rot3|side +Engraved Sandstone Slab|meta|rot4|side +``` +##### Bricks +``` +Sandstone Bricks +``` +###### Slabs +``` +Sandstone Bricks Slab +Sandstone Bricks Slab|meta|rot1|top +Sandstone Bricks Slab|meta|rot1|side +Sandstone Bricks Slab|meta|rot2|side +Sandstone Bricks Slab|meta|rot3|side +Sandstone Bricks Slab|meta|rot4|side +``` +#### Red +``` +Red Sand +``` +##### Sandstone +``` +Red Sandstone +Smooth Red Sandstone +Engraved Red Sandstone +Marked Red Sandstone +``` +##### Slabs +``` +Red Sandstone Slab +Red Sandstone Slab|meta|rot1|top +Red Sandstone Slab|meta|rot1|side +Red Sandstone Slab|meta|rot2|side +Red Sandstone Slab|meta|rot3|side +Red Sandstone Slab|meta|rot4|side +``` +###### Smooth +``` +Smooth Red Sandstone Slab +Smooth Red Sandstone Slab|meta|rot1|top +Smooth Red Sandstone Slab|meta|rot1|side +Smooth Red Sandstone Slab|meta|rot2|side +Smooth Red Sandstone Slab|meta|rot3|side +Smooth Red Sandstone Slab|meta|rot4|side +``` +##### Engraved +``` +Engraved Red Sandstone Slab +Engraved Red Sandstone Slab|meta|rot1|top +Engraved Red Sandstone Slab|meta|rot1|side +Engraved Red Sandstone Slab|meta|rot2|side +Engraved Red Sandstone Slab|meta|rot3|side +Engraved Red Sandstone Slab|meta|rot4|side +``` +##### Marked +``` +Marked Red Sandstone Slab +Marked Red Sandstone Slab|meta|rot1|top +Marked Red Sandstone Slab|meta|rot1|side +Marked Red Sandstone Slab|meta|rot2|side +Marked Red Sandstone Slab|meta|rot3|side +Marked Red Sandstone Slab|meta|rot4|side +``` +##### Bricks +``` +Red Sandstone Bricks +``` +###### Slabs +``` +Red Sandstone Bricks Slab +Red Sandstone Bricks Slab|meta|rot1|top +Red Sandstone Bricks Slab|meta|rot1|side +Red Sandstone Bricks Slab|meta|rot2|side +Red Sandstone Bricks Slab|meta|rot3|side +Red Sandstone Bricks Slab|meta|rot4|side +``` +#### Clay & Gravel +``` +Clay +Gravel +``` +## Plants and Crops +### Flowers +``` +Dandelion +Poppy +Red Tulip +Pink Tulip +White Tulip +Orange Tulip +Daisy +Bluebell +Forget-me-not +Azure Bluet +Lily of the Valley +Shadow Rose +``` +#### Roots +``` +Dandelion|Roots +Poppy|Roots +Red Tulip|Roots +Pink Tulip|Roots +White Tulip|Roots +Orange Tulip|Roots +Daisy|Roots +Bluebell|Roots +Forget-me-not|Roots +Allium|Roots +Azure Bluet|Roots +Lily of the Valley|Roots +Shadow Rose|Roots +``` +### Crops +``` +Catnip +``` +#### Wheat +``` +Wheat Seeds +Wheat_stage1 +Wheat_stage2 +Wheat_stage3 +Wheat_stage4 +Wheat_stage5 +Wheat +Wheat|FreshlyGrown +``` +#### Corn +``` +Corn Seeds +Corn Seeds_stage1 +Corn Seeds|FreshlyGrown +Corn Seeds|Growing +Corn Plant_stage1 +Corn Plant_stage2 +Corn Plant_stage3 +Corn Plant_stage4 +Corn Plant_stage5 +Corn Plant +Corn Plant|FreshlyGrown +``` +#### Rice +``` +Rice +Rice_stage1 +Rice_stage2 +Rice_stage3 +Rice_stage4 +Rice_stage5 +Rice|FreshlyGrown +``` +#### Cranberries +``` +Cranberries +Cranberries_stage1 +Cranberries_stage2 +``` +#### Cotton +``` +Cotton Seeds +Cotton_stage1 +Cotton_stage2 +Cotton_stage3 +``` +#### Watermelon +``` +Watermelon Seeds +Watermelon Seeds|Growing +Attached Watermelon Stem +Attached Watermelon Stem|meta|rot2 +Attached Watermelon Stem|meta|rot3 +Attached Watermelon Stem|meta|rot4 +``` +#### Melon +``` +Melon Seeds +Melon Seeds|Growing +Attached Melon Stem +Attached Melon Stem|meta|rot2 +Attached Melon Stem|meta|rot3 +Attached Melon Stem|meta|rot4 +``` +#### Pumpkin +``` +Pumpkin Seeds +Pumpkin Seeds|Growing +Attached Pumpkin Stem +Attached Pumpkin Stem|meta|rot2 +Attached Pumpkin Stem|meta|rot3 +Attached Pumpkin Stem|meta|rot4 +``` +#### Banana +``` +Banana Seeds +Banana Seeds|Growing +Attached Banana Stem +Attached Banana Stem|meta|rot2 +Attached Banana Stem|meta|rot3 +Attached Banana Stem|meta|rot4 +``` +#### Chili Pepper +``` +Chili Pepper Seeds +Chili Pepper Plant_stage1 +Chili Pepper Plant_stage2 +Chili Pepper Plant_stage3 +Chili Pepper Plant_stage4 +Chili Pepper Plant +Chili Pepper Plant|FreshlyGrown +Chili Pepper Seeds|Lava +Chili Pepper Plant_stage1|Lava +Chili Pepper Plant_stage2|Lava +Chili Pepper Plant_stage3|Lava +Chili Pepper Plant_stage4|Lava +Chili Pepper Plant_stage5 +Chili Pepper Plant_stage5|Lava +Chili Pepper Plant|Lava|FreshlyGrown +``` +#### Fruits +``` +Watermelon +Melon +Pumpkin +Carved Pumpkin +Carved Pumpkin|meta|rot2 +Carved Pumpkin|meta|rot3 +Carved Pumpkin|meta|rot4 +Jack o'Lantern +Jack o'Lantern|meta|rot2 +Jack o'Lantern|meta|rot3 +Jack o'Lantern|meta|rot4 +Iron Watermelon +Banana Block +Apple Block +Coconut Block +Pear Block +Mango Block +Plum Block +Corn Block +Bread Block +``` +#### Mushrooms +``` +Red Mushroom +Brown Mushroom +Fat Red Mushroom +Fat Brown Mushroom +Red Mushroom Block +Brown Mushroom Block +Mushroom Stem +``` +## Wood & Tree Blocks +> [!Note] +> This also includes some blocks you can craft with Wood. +### Logs +#### Regular Logs +``` +Maple Log +Pine Log +Plum Log +Cedar Log +Aspen Log +Jungle Log +Palm Log +Pear Log +Cherry Log +Mango Log +Spectral Log +``` +#### Barkless Logs +``` +Barkless Maple Log +Barkless Aspen Log +Barkless Plum Log +Barkless Jungle Log +Barkless Pine Log +Barkless Cedar Log +Barkless Palm Log +Barkless Pear Log +Barkless Cherry Log +Barkless Mango Log +Barkless Spectral Log +``` +#### TreeBase Logs +``` +Maple Log|TreeBase|Maple +Pine Log|TreeBase|Pine +Plum Log|TreeBase|Plum +Cedar Log|TreeBase|Cedar +Aspen Log|TreeBase|Aspen +Jungle Log|TreeBase|Jungle +Palm Log|TreeBase|Palm +Pear Log|TreeBase|Pear +Cherry Log|TreeBase|Cherry +Mango Log|TreeBase|Mango +Spectral Log|TreeBase|Spectral +``` +##### Barkless +``` +Barkless Maple Log|TreeBase|Maple +Barkless Plum Log|TreeBase|Plum +Barkless Cedar Log|TreeBase|Cedar +Barkless Aspen Log|TreeBase|Aspen +Barkless Jungle Log|TreeBase|Jungle +Barkless Pine Log|TreeBase|Pine +Barkless Palm Log|TreeBase|Palm +Barkless Pear Log|TreeBase|Pear +Barkless Cherry Log|TreeBase|Cherry +Barkless Mango Log|TreeBase|Mango +Barkless Spectral Log|TreeBase|Spectral +``` +### Planks +``` +Maple Wood Planks +Aspen Wood Planks +Plum Wood Planks +Jungle Wood Planks +Pine Wood Planks +Cedar Wood Planks +Palm Wood Planks +Pear Wood Planks +Cherry Wood Planks +Mango Wood Planks +Spectral Wood Planks +``` +#### Colored Planks +``` +White Planks +Orange Planks +Magenta Planks +Light Blue Planks +Yellow Planks +Lime Planks +Pink Planks +Gray Planks +Light Gray Planks +Cyan Planks +Purple Planks +Blue Planks +Brown Planks +Green Planks +Red Planks +Black Planks +``` +### Leaves +``` +Pine Leaves +Aspen Leaves +Maple Leaves +Autumn Maple Leaves +Jungle Leaves +Plum Leaves +Cedar Leaves +Palm Leaves +Pear Leaves +Cherry Leaves +Mango Leaves +Spectral Leaves +Autumn Aspen Leaves +``` +#### Tree Canopy Leaves +``` +Pine Leaves|TreeCanopy +Aspen Leaves|TreeCanopy +Maple Leaves|TreeCanopy +Autumn Maple Leaves|TreeCanopy +Jungle Leaves|TreeCanopy +Plum Leaves|TreeCanopy +Cedar Leaves|TreeCanopy +Palm Leaves|TreeCanopy +Pear Leaves|TreeCanopy +Cherry Leaves|TreeCanopy +Mango Leaves|TreeCanopy +Spectral Leaves|TreeCanopy +``` +#### Fallen Leaves +##### Maple +``` +Fallen Maple Leaves +Fallen Maple Leaves|meta|rot1|top +Fallen Maple Leaves|meta|rot1|side +Fallen Maple Leaves|meta|rot2|side +Fallen Maple Leaves|meta|rot3|side +Fallen Maple Leaves|meta|rot4|side +``` +##### Cherry +``` +Fallen Cherry Leaves +Fallen Cherry Leaves|meta|rot1|top +Fallen Cherry Leaves|meta|rot1|side +Fallen Cherry Leaves|meta|rot2|side +Fallen Cherry Leaves|meta|rot3|side +Fallen Cherry Leaves|meta|rot4|side +``` +#### Autumn Maple Leaves +``` +Autumn Maple Leaves +Autumn Maple Leaves|TreeCanopy +``` +### Saplings +``` +Aspen Sapling +Maple Sapling +Jungle Sapling +Plum Sapling +Pine Sapling +Cedar Sapling +Palm Sapling +Pear Sapling +Cherry Sapling +Mango Sapling +Spectral Sapling +``` +### Slabs +#### Maple Slabs +``` +Maple Slab|meta|rot1|top +Maple Slab|meta|rot1|side +Maple Slab|meta|rot2|side +Maple Slab|meta|rot3|side +Maple Slab|meta|rot4|side +``` +#### Pine Slabs +``` +Pine Slab +Pine Slab|meta|rot1|top +Pine Slab|meta|rot1|side +Pine Slab|meta|rot2|side +Pine Slab|meta|rot3|side +Pine Slab|meta|rot4|side +``` +#### Plum Slabs +``` +Plum Slab +Plum Slab|meta|rot1|top +Plum Slab|meta|rot1|side +Plum Slab|meta|rot2|side +Plum Slab|meta|rot3|side +Plum Slab|meta|rot4|side +``` +#### Cedar Slabs +``` +Cedar Slab +Cedar Slab|meta|rot1|top +Cedar Slab|meta|rot1|side +Cedar Slab|meta|rot2|side +Cedar Slab|meta|rot3|side +Cedar Slab|meta|rot4|side +``` +#### Aspen Slabs +``` +Aspen Slab +Aspen Slab|meta|rot1|top +Aspen Slab|meta|rot1|side +Aspen Slab|meta|rot2|side +Aspen Slab|meta|rot3|side +Aspen Slab|meta|rot4|side +``` +#### Jungle Slabs +``` +Jungle Slab +Jungle Slab|meta|rot1|top +Jungle Slab|meta|rot1|side +Jungle Slab|meta|rot2|side +Jungle Slab|meta|rot3|side +Jungle Slab|meta|rot4|side +``` +#### Palm Slabs +``` +Palm Slab +Palm Slab|meta|rot1|top +Palm Slab|meta|rot1|side +Palm Slab|meta|rot2|side +Palm Slab|meta|rot3|side +Palm Slab|meta|rot4|side +``` +#### Pear Slabs +``` +Pear Slab +Pear Slab|meta|rot1|top +Pear Slab|meta|rot1|side +Pear Slab|meta|rot2|side +Pear Slab|meta|rot3|side +Pear Slab|meta|rot4|side +``` +#### Cherry Slabs +``` +Cherry Slab +Cherry Slab|meta|rot1|top +Cherry Slab|meta|rot1|side +Cherry Slab|meta|rot2|side +Cherry Slab|meta|rot3|side +Cherry Slab|meta|rot4|side +``` +#### Mango Slabs +``` +Mango Slab +Mango Slab|meta|rot1|top +Mango Slab|meta|rot1|side +Mango Slab|meta|rot2|side +Mango Slab|meta|rot3|side +Mango Slab|meta|rot4|side +``` +#### +``` +Spectral Slab +Spectral Slab|meta|rot1|top +Spectral Slab|meta|rot1|side +Spectral Slab|meta|rot2|side +Spectral Slab|meta|rot3|side +Spectral Slab|meta|rot4|side +``` +### Doors & Trapdoors +#### Maple +##### Door +``` +Maple Door +Maple Door|meta|rot1|open +Maple Door|meta|rot2|closed +Maple Door|meta|rot2|open +Maple Door|meta|rot3|closed +Maple Door|meta|rot3|open +Maple Door|meta|rot4|closed +Maple Door|meta|rot4|open +_Maple Door Top +_Maple Door Top|meta|rot1|open +_Maple Door Top|meta|rot2|closed +_Maple Door Top|meta|rot2|open +_Maple Door Top|meta|rot3|closed +_Maple Door Top|meta|rot3|open +_Maple Door Top|meta|rot4|closed +_Maple Door Top|meta|rot4|open +``` +##### Trapdoor +``` +Maple Trapdoor +Maple Trapdoor|meta|rot1|open +Maple Trapdoor|meta|rot2|closed +Maple Trapdoor|meta|rot2|open +Maple Trapdoor|meta|rot3|closed +Maple Trapdoor|meta|rot3|open +Maple Trapdoor|meta|rot4|closed +Maple Trapdoor|meta|rot4|open +``` +#### Pine +##### Door +``` +Pine Door +Pine Door|meta|rot1|open +Pine Door|meta|rot2|closed +Pine Door|meta|rot2|open +Pine Door|meta|rot3|closed +Pine Door|meta|rot3|open +Pine Door|meta|rot4|closed +Pine Door|meta|rot4|open +_Pine Door Top +_Pine Door Top|meta|rot1|open +_Pine Door Top|meta|rot2|closed +_Pine Door Top|meta|rot2|open +_Pine Door Top|meta|rot3|closed +_Pine Door Top|meta|rot3|open +_Pine Door Top|meta|rot4|closed +_Pine Door Top|meta|rot4|open +``` +##### Trapdoor +``` +Pine Trapdoor +Pine Trapdoor|meta|rot1|open +Pine Trapdoor|meta|rot2|closed +Pine Trapdoor|meta|rot2|open +Pine Trapdoor|meta|rot3|closed +Pine Trapdoor|meta|rot3|open +Pine Trapdoor|meta|rot4|closed +Pine Trapdoor|meta|rot4|open +``` +#### Plum +##### Door +``` +Plum Door +Plum Door|meta|rot1|open +Plum Door|meta|rot2|closed +Plum Door|meta|rot2|open +Plum Door|meta|rot3|closed +Plum Door|meta|rot3|open +Plum Door|meta|rot4|closed +Plum Door|meta|rot4|open +_Plum Door Top +_Plum Door Top|meta|rot1|open +_Plum Door Top|meta|rot2|closed +_Plum Door Top|meta|rot2|open +_Plum Door Top|meta|rot3|closed +_Plum Door Top|meta|rot3|open +_Plum Door Top|meta|rot4|closed +_Plum Door Top|meta|rot4|open +``` +##### Trapdoor +``` +Plum Trapdoor +Plum Trapdoor|meta|rot1|open +Plum Trapdoor|meta|rot2|closed +Plum Trapdoor|meta|rot2|open +Plum Trapdoor|meta|rot3|closed +Plum Trapdoor|meta|rot3|open +Plum Trapdoor|meta|rot4|closed +Plum Trapdoor|meta|rot4|open +``` +#### Cedar +##### Door +``` +Cedar Door +Cedar Door|meta|rot1|open +Cedar Door|meta|rot2|closed +Cedar Door|meta|rot2|open +Cedar Door|meta|rot3|closed +Cedar Door|meta|rot3|open +Cedar Door|meta|rot4|closed +Cedar Door|meta|rot4|open +_Cedar Door Top +_Cedar Door Top|meta|rot1|open +_Cedar Door Top|meta|rot2|closed +_Cedar Door Top|meta|rot2|open +_Cedar Door Top|meta|rot3|closed +_Cedar Door Top|meta|rot3|open +_Cedar Door Top|meta|rot4|closed +_Cedar Door Top|meta|rot4|open +``` +##### Trapdoor +``` +Cedar Trapdoor +Cedar Trapdoor|meta|rot1|open +Cedar Trapdoor|meta|rot2|closed +Cedar Trapdoor|meta|rot2|open +Cedar Trapdoor|meta|rot3|closed +Cedar Trapdoor|meta|rot3|open +Cedar Trapdoor|meta|rot4|closed +Cedar Trapdoor|meta|rot4|open +``` +#### Aspen +##### Door +``` +Aspen Door +Aspen Door|meta|rot1|open +Aspen Door|meta|rot2|closed +Aspen Door|meta|rot2|open +Aspen Door|meta|rot3|closed +Aspen Door|meta|rot3|open +Aspen Door|meta|rot4|closed +Aspen Door|meta|rot4|open +_Aspen Door Top +_Aspen Door Top|meta|rot1|open +_Aspen Door Top|meta|rot2|closed +_Aspen Door Top|meta|rot2|open +_Aspen Door Top|meta|rot3|closed +_Aspen Door Top|meta|rot3|open +_Aspen Door Top|meta|rot4|closed +_Aspen Door Top|meta|rot4|open +``` +##### Trapdoor +``` +Aspen Trapdoor +Aspen Trapdoor|meta|rot1|open +Aspen Trapdoor|meta|rot2|closed +Aspen Trapdoor|meta|rot2|open +Aspen Trapdoor|meta|rot3|closed +Aspen Trapdoor|meta|rot3|open +Aspen Trapdoor|meta|rot4|closed +Aspen Trapdoor|meta|rot4|open +``` +#### Jungle +##### Door +``` +Jungle Door +Jungle Door|meta|rot1|open +Jungle Door|meta|rot2|closed +Jungle Door|meta|rot2|open +Jungle Door|meta|rot3|closed +Jungle Door|meta|rot3|open +Jungle Door|meta|rot4|closed +Jungle Door|meta|rot4|open +_Jungle Door Top +_Jungle Door Top|meta|rot1|open +_Jungle Door Top|meta|rot2|closed +_Jungle Door Top|meta|rot2|open +_Jungle Door Top|meta|rot3|closed +_Jungle Door Top|meta|rot3|open +_Jungle Door Top|meta|rot4|closed +_Jungle Door Top|meta|rot4|open +``` +##### Trapdoor +``` +Jungle Trapdoor +Jungle Trapdoor|meta|rot1|open +Jungle Trapdoor|meta|rot2|closed +Jungle Trapdoor|meta|rot2|open +Jungle Trapdoor|meta|rot3|closed +Jungle Trapdoor|meta|rot3|open +Jungle Trapdoor|meta|rot4|closed +Jungle Trapdoor|meta|rot4|open +``` +#### Palm +##### Door +``` +Palm Door +Palm Door|meta|rot1|open +Palm Door|meta|rot2|closed +Palm Door|meta|rot2|open +Palm Door|meta|rot3|closed +Palm Door|meta|rot3|open +Palm Door|meta|rot4|closed +Palm Door|meta|rot4|open +_Palm Door Top +_Palm Door Top|meta|rot1|open +_Palm Door Top|meta|rot2|closed +_Palm Door Top|meta|rot2|open +_Palm Door Top|meta|rot3|closed +_Palm Door Top|meta|rot3|open +_Palm Door Top|meta|rot4|closed +_Palm Door Top|meta|rot4|open +``` +##### Trapdoor +``` +Palm Trapdoor +Palm Trapdoor|meta|rot1|open +Palm Trapdoor|meta|rot2|closed +Palm Trapdoor|meta|rot2|open +Palm Trapdoor|meta|rot3|closed +Palm Trapdoor|meta|rot3|open +Palm Trapdoor|meta|rot4|closed +Palm Trapdoor|meta|rot4|open +``` +#### Pear +##### Door +``` +Pear Door +Pear Door|meta|rot1|open +Pear Door|meta|rot2|closed +Pear Door|meta|rot2|open +Pear Door|meta|rot3|closed +Pear Door|meta|rot3|open +Pear Door|meta|rot4|closed +Pear Door|meta|rot4|open +_Pear Door Top +_Pear Door Top|meta|rot1|open +_Pear Door Top|meta|rot2|closed +_Pear Door Top|meta|rot2|open +_Pear Door Top|meta|rot3|closed +_Pear Door Top|meta|rot3|open +_Pear Door Top|meta|rot4|closed +_Pear Door Top|meta|rot4|open +``` +##### Trapdoor +``` +Pear Trapdoor +Pear Trapdoor|meta|rot1|open +Pear Trapdoor|meta|rot2|closed +Pear Trapdoor|meta|rot2|open +Pear Trapdoor|meta|rot3|closed +Pear Trapdoor|meta|rot3|open +Pear Trapdoor|meta|rot4|closed +Pear Trapdoor|meta|rot4|open +``` +#### Cherry +##### Door +``` +Cherry Door +Cherry Door|meta|rot1|open +Cherry Door|meta|rot2|closed +Cherry Door|meta|rot2|open +Cherry Door|meta|rot3|closed +Cherry Door|meta|rot3|open +Cherry Door|meta|rot4|closed +Cherry Door|meta|rot4|open +_Cherry Door Top +_Cherry Door Top|meta|rot1|open +_Cherry Door Top|meta|rot2|closed +_Cherry Door Top|meta|rot2|open +_Cherry Door Top|meta|rot3|closed +_Cherry Door Top|meta|rot3|open +_Cherry Door Top|meta|rot4|closed +_Cherry Door Top|meta|rot4|open +``` +##### Trapdoor +``` +Cherry Trapdoor +Cherry Trapdoor|meta|rot1|open +Cherry Trapdoor|meta|rot2|closed +Cherry Trapdoor|meta|rot2|open +Cherry Trapdoor|meta|rot3|closed +Cherry Trapdoor|meta|rot3|open +Cherry Trapdoor|meta|rot4|closed +Cherry Trapdoor|meta|rot4|open +``` +#### Mango +##### Door +``` +Mango Door +Mango Door|meta|rot1|open +Mango Door|meta|rot2|closed +Mango Door|meta|rot2|open +Mango Door|meta|rot3|closed +Mango Door|meta|rot3|open +Mango Door|meta|rot4|closed +Mango Door|meta|rot4|open +_Mango Door Top +_Mango Door Top|meta|rot1|open +_Mango Door Top|meta|rot2|closed +_Mango Door Top|meta|rot2|open +_Mango Door Top|meta|rot3|closed +_Mango Door Top|meta|rot3|open +_Mango Door Top|meta|rot4|closed +_Mango Door Top|meta|rot4|open +``` +##### Trapdoor +``` +Mango Trapdoor +Mango Trapdoor|meta|rot1|open +Mango Trapdoor|meta|rot2|closed +Mango Trapdoor|meta|rot2|open +Mango Trapdoor|meta|rot3|closed +Mango Trapdoor|meta|rot3|open +Mango Trapdoor|meta|rot4|closed +Mango Trapdoor|meta|rot4|open +``` +#### Spectral +##### Door +``` +Spectral Door +Spectral Door|meta|rot1|open +Spectral Door|meta|rot2|closed +Spectral Door|meta|rot2|open +Spectral Door|meta|rot3|closed +Spectral Door|meta|rot3|open +Spectral Door|meta|rot4|closed +Spectral Door|meta|rot4|open +_Spectral Door Top +_Spectral Door Top|meta|rot1|open +_Spectral Door Top|meta|rot2|closed +_Spectral Door Top|meta|rot2|open +_Spectral Door Top|meta|rot3|closed +_Spectral Door Top|meta|rot3|open +_Spectral Door Top|meta|rot4|closed +_Spectral Door Top|meta|rot4|open +``` +##### Trapdoor +``` +Spectral Trapdoor +Spectral Trapdoor|meta|rot1|open +Spectral Trapdoor|meta|rot2|closed +Spectral Trapdoor|meta|rot2|open +Spectral Trapdoor|meta|rot3|closed +Spectral Trapdoor|meta|rot3|open +Spectral Trapdoor|meta|rot4|closed +Spectral Trapdoor|meta|rot4|open +``` +### Ladders +#### Maple +``` +Maple Ladder +Maple Ladder|meta|rot1 +Maple Ladder|meta|rot3 +Maple Ladder|meta|rot4 +``` +#### Pine +``` +Pine Ladder +Pine Ladder|meta|rot2 +Pine Ladder|meta|rot3 +Pine Ladder|meta|rot4 +``` +#### Plum +``` +Plum Ladder +Plum Ladder|meta|rot2 +Plum Ladder|meta|rot3 +Plum Ladder|meta|rot4 +``` +#### Cedar +``` +Cedar Ladder +Cedar Ladder|meta|rot2 +Cedar Ladder|meta|rot3 +Cedar Ladder|meta|rot4 +``` +#### Aspen +``` +Aspen Ladder +Aspen Ladder|meta|rot2 +Aspen Ladder|meta|rot3 +Aspen Ladder|meta|rot4 +``` +#### Jungle +``` +Jungle Ladder +Jungle Ladder|meta|rot2 +Jungle Ladder|meta|rot3 +Jungle Ladder|meta|rot4 +``` +#### Palm +``` +Palm Ladder +Palm Ladder|meta|rot2 +Palm Ladder|meta|rot3 +Palm Ladder|meta|rot4 +``` +#### Pear +``` +Pear Ladder +Pear Ladder|meta|rot2 +Pear Ladder|meta|rot3 +Pear Ladder|meta|rot4 +``` +#### Cherry +``` +Cherry Ladder +Cherry Ladder|meta|rot2 +Cherry Ladder|meta|rot3 +Cherry Ladder|meta|rot4 +``` +#### Mango +``` +Mango Ladder +Mango Ladder|meta|rot1 +Mango Ladder|meta|rot3 +Mango Ladder|meta|rot4 +``` +#### Spectral +``` +Spectral Ladder +Spectral Ladder|meta|rot2 +Spectral Ladder|meta|rot3 +Spectral Ladder|meta|rot4 +``` +### Beds +#### Leaf +``` +Leaf Bed +Leaf Bed|meta|rot2 +Leaf Bed|meta|rot3 +Leaf Bed|meta|rot4 +_Leaf Bed Head +_Leaf Bed Head|meta|rot2 +_Leaf Bed Head|meta|rot3 +_Leaf Bed Head|meta|rot4 +``` +#### Strongbeds +##### Red +``` +Red Strongbed +Red Strongbed|meta|rot2 +Red Strongbed|meta|rot3 +Red Strongbed|meta|rot4 +_Red Strongbed Head +_Red Strongbed Head|meta|rot2 +_Red Strongbed Head|meta|rot3 +_Red Strongbed Head|meta|rot4 +``` +##### Lime +``` +Lime Strongbed +Lime Strongbed|meta|rot2 +Lime Strongbed|meta|rot3 +Lime Strongbed|meta|rot4 +_Lime Strongbed Head +_Lime Strongbed Head|meta|rot2 +_Lime Strongbed Head|meta|rot3 +_Lime Strongbed Head|meta|rot4 +``` +##### Pink +``` +Pink Strongbed +Pink Strongbed|meta|rot2 +Pink Strongbed|meta|rot3 +Pink Strongbed|meta|rot4 +_Pink Strongbed Head +_Pink Strongbed Head|meta|rot2 +_Pink Strongbed Head|meta|rot3 +_Pink Strongbed Head|meta|rot4 +``` +##### Gray +``` +Gray Strongbed +Gray Strongbed|meta|rot2 +Gray Strongbed|meta|rot3 +Gray Strongbed|meta|rot4 +_Gray Strongbed Head +_Gray Strongbed Head|meta|rot2 +_Gray Strongbed Head|meta|rot3 +_Gray Strongbed Head|meta|rot4 +``` +##### Cyan +``` +Cyan Strongbed +Cyan Strongbed|meta|rot2 +Cyan Strongbed|meta|rot3 +Cyan Strongbed|meta|rot4 +_Cyan Strongbed Head +_Cyan Strongbed Head|meta|rot2 +_Cyan Strongbed Head|meta|rot3 +_Cyan Strongbed Head|meta|rot4 +``` +##### Blue +``` +Blue Strongbed +Blue Strongbed|meta|rot2 +Blue Strongbed|meta|rot3 +Blue Strongbed|meta|rot4 +_Blue Strongbed Head +_Blue Strongbed Head|meta|rot2 +_Blue Strongbed Head|meta|rot3 +_Blue Strongbed Head|meta|rot4 +``` +##### White +``` +White Strongbed +White Strongbed|meta|rot2 +White Strongbed|meta|rot3 +White Strongbed|meta|rot4 +_White Strongbed Head +_White Strongbed Head|meta|rot2 +_White Strongbed Head|meta|rot3 +_White Strongbed Head|meta|rot4 +``` +##### Brown +``` +Brown Strongbed +Brown Strongbed|meta|rot2 +Brown Strongbed|meta|rot3 +Brown Strongbed|meta|rot4 +_Brown Strongbed Head +_Brown Strongbed Head|meta|rot2 +_Brown Strongbed Head|meta|rot3 +_Brown Strongbed Head|meta|rot4 +``` +##### Green +``` +Green Strongbed +Green Strongbed|meta|rot2 +Green Strongbed|meta|rot3 +Green Strongbed|meta|rot4 +_Green Strongbed Head +_Green Strongbed Head|meta|rot2 +_Green Strongbed Head|meta|rot3 +_Green Strongbed Head|meta|rot4 +``` +##### Black +``` +Black Strongbed +Black Strongbed|meta|rot2 +Black Strongbed|meta|rot3 +Black Strongbed|meta|rot4 +_Black Strongbed Head +_Black Strongbed Head|meta|rot2 +_Black Strongbed Head|meta|rot3 +_Black Strongbed Head|meta|rot4 +``` +##### Orange +``` +Orange Strongbed +Orange Strongbed|meta|rot2 +Orange Strongbed|meta|rot3 +Orange Strongbed|meta|rot4 +_Orange Strongbed Head +_Orange Strongbed Head|meta|rot2 +_Orange Strongbed Head|meta|rot3 +_Orange Strongbed Head|meta|rot4 +``` +##### Yellow +``` +Yellow Strongbed +Yellow Strongbed|meta|rot2 +Yellow Strongbed|meta|rot3 +Yellow Strongbed|meta|rot4 +_Yellow Strongbed Head +_Yellow Strongbed Head|meta|rot2 +_Yellow Strongbed Head|meta|rot3 +_Yellow Strongbed Head|meta|rot4 +``` +##### Purple +``` +Purple Strongbed +Purple Strongbed|meta|rot2 +Purple Strongbed|meta|rot3 +Purple Strongbed|meta|rot4 +_Purple Strongbed Head +_Purple Strongbed Head|meta|rot2 +_Purple Strongbed Head|meta|rot3 +_Purple Strongbed Head|meta|rot4 +``` +##### Magenta +``` +Magenta Strongbed +Magenta Strongbed|meta|rot2 +Magenta Strongbed|meta|rot3 +Magenta Strongbed|meta|rot4 +_Magenta Strongbed Head +_Magenta Strongbed Head|meta|rot2 +_Magenta Strongbed Head|meta|rot3 +_Magenta Strongbed Head|meta|rot4 +``` +##### Light Blue +``` +Light Blue Strongbed +Light Blue Strongbed|meta|rot2 +Light Blue Strongbed|meta|rot3 +Light Blue Strongbed|meta|rot4 +_Light Blue Strongbed Head +_Light Blue Strongbed Head|meta|rot2 +_Light Blue Strongbed Head|meta|rot3 +_Light Blue Strongbed Head|meta|rot4 +``` +##### Light Gray +``` +Light Gray Strongbed +Light Gray Strongbed|meta|rot2 +Light Gray Strongbed|meta|rot3 +Light Gray Strongbed|meta|rot4 +_Light Gray Strongbed Head +_Light Gray Strongbed Head|meta|rot2 +_Light Gray Strongbed Head|meta|rot3 +_Light Gray Strongbed Head|meta|rot4 +``` +### Regular +#### Red +``` +Red Bed +Red Bed|meta|rot2 +Red Bed|meta|rot3 +Red Bed|meta|rot4 +_Red Bed Head +_Red Bed Head|meta|rot2 +_Red Bed Head|meta|rot3 +_Red Bed Head|meta|rot4 +``` +##### Lime +``` +Lime Bed +Lime Bed|meta|rot2 +Lime Bed|meta|rot3 +Lime Bed|meta|rot4 +_Lime Bed Head +_Lime Bed Head|meta|rot2 +_Lime Bed Head|meta|rot3 +_Lime Bed Head|meta|rot4 +``` +##### Pink +``` +Pink Bed +Pink Bed|meta|rot2 +Pink Bed|meta|rot3 +Pink Bed|meta|rot4 +_Pink Bed Head +_Pink Bed Head|meta|rot2 +_Pink Bed Head|meta|rot3 +_Pink Bed Head|meta|rot4 +``` +##### Gray +``` +Gray Bed +Gray Bed|meta|rot2 +Gray Bed|meta|rot3 +Gray Bed|meta|rot4 +_Gray Bed Head +_Gray Bed Head|meta|rot2 +_Gray Bed Head|meta|rot3 +_Gray Bed Head|meta|rot4 +``` +##### Cyan +``` +Cyan Bed +Cyan Bed|meta|rot2 +Cyan Bed|meta|rot3 +Cyan Bed|meta|rot4 +_Cyan Bed Head +_Cyan Bed Head|meta|rot2 +_Cyan Bed Head|meta|rot3 +_Cyan Bed Head|meta|rot4 +``` +##### Blue +``` +Blue Bed +Blue Bed|meta|rot2 +Blue Bed|meta|rot3 +Blue Bed|meta|rot4 +_Blue Bed Head +_Blue Bed Head|meta|rot2 +_Blue Bed Head|meta|rot3 +_Blue Bed Head|meta|rot4 +``` +##### White +``` +White Bed +White Bed|meta|rot2 +White Bed|meta|rot3 +White Bed|meta|rot4 +_White Bed Head +_White Bed Head|meta|rot2 +_White Bed Head|meta|rot3 +_White Bed Head|meta|rot4 +``` +##### Brown +``` +Brown Bed +Brown Bed|meta|rot2 +Brown Bed|meta|rot3 +Brown Bed|meta|rot4 +_Brown Bed Head +_Brown Bed Head|meta|rot2 +_Brown Bed Head|meta|rot3 +_Brown Bed Head|meta|rot4 +``` +##### Green +``` +Green Bed +Green Bed|meta|rot2 +Green Bed|meta|rot3 +Green Bed|meta|rot4 +_Green Bed Head +_Green Bed Head|meta|rot2 +_Green Bed Head|meta|rot3 +_Green Bed Head|meta|rot4 +``` +##### Black +``` +Black Bed +Black Bed|meta|rot2 +Black Bed|meta|rot3 +Black Bed|meta|rot4 +_Black Bed Head +_Black Bed Head|meta|rot2 +_Black Bed Head|meta|rot3 +_Black Bed Head|meta|rot4 +``` +##### Orange +``` +Orange Bed +Orange Bed|meta|rot2 +Orange Bed|meta|rot3 +Orange Bed|meta|rot4 +_Orange Bed Head +_Orange Bed Head|meta|rot2 +_Orange Bed Head|meta|rot3 +_Orange Bed Head|meta|rot4 +``` +##### Yellow +``` +Yellow Bed +Yellow Bed|meta|rot2 +Yellow Bed|meta|rot3 +Yellow Bed|meta|rot4 +_Yellow Bed Head +_Yellow Bed Head|meta|rot2 +_Yellow Bed Head|meta|rot3 +_Yellow Bed Head|meta|rot4 +``` +##### Purple +``` +Purple Bed +Purple Bed|meta|rot2 +Purple Bed|meta|rot3 +Purple Bed|meta|rot4 +_Purple Bed Head +_Purple Bed Head|meta|rot2 +_Purple Bed Head|meta|rot3 +_Purple Bed Head|meta|rot4 +``` +##### Magenta +``` +Magenta Bed +Magenta Bed|meta|rot2 +Magenta Bed|meta|rot3 +Magenta Bed|meta|rot4 +_Magenta Bed Head +_Magenta Bed Head|meta|rot2 +_Magenta Bed Head|meta|rot3 +_Magenta Bed Head|meta|rot4 +``` +##### Light Blue +``` +Light Blue Bed +Light Blue Bed|meta|rot2 +Light Blue Bed|meta|rot3 +Light Blue Bed|meta|rot4 +_Light Blue Bed Head +_Light Blue Bed Head|meta|rot2 +_Light Blue Bed Head|meta|rot3 +_Light Blue Bed Head|meta|rot4 +``` +##### Light Gray +``` +Light Gray Bed +Light Gray Bed|meta|rot2 +Light Gray Bed|meta|rot3 +Light Gray Bed|meta|rot4 +_Light Gray Bed Head +_Light Gray Bed Head|meta|rot2 +_Light Gray Bed Head|meta|rot3 +_Light Gray Bed Head|meta|rot4 +``` +## Food +``` +Apple Block +Coconut Block +Plum Block +Cherry Block +Mango Block +Banana Block +Pear Block +``` +## Stone & Stone Variants +``` +Stone +Messy Stone +Mossy Messy Stone +Smooth Stone +Yellowstone +Dark Red Stone +Green Stone +Carved Messy Stone +Block of Quartz +Chiseled Block of Quartz +Engraved Stone +``` +### Slabs +``` +Stone Slab +Stone Slab|meta|rot1|top +Stone Slab|meta|rot1|side +Stone Slab|meta|rot2|side +Stone Slab|meta|rot3|side +Stone Slab|meta|rot4|side +``` +#### Messy +``` +Messy Stone Slab +Messy Stone Slab|meta|rot1|top +Messy Stone Slab|meta|rot1|side +Messy Stone Slab|meta|rot2|side +Messy Stone Slab|meta|rot3|side +Messy Stone Slab|meta|rot4|side +``` +#### Smooth +``` +Smooth Stone Slab +Smooth Stone Slab|meta|rot1|top +Smooth Stone Slab|meta|rot1|side +Smooth Stone Slab|meta|rot2|side +Smooth Stone Slab|meta|rot3|side +Smooth Stone Slab|meta|rot4|side +``` +#### Engraved +``` +Engraved Stone Slab +Engraved Stone Slab|meta|rot1|top +Engraved Stone Slab|meta|rot1|side +Engraved Stone Slab|meta|rot2|side +Engraved Stone Slab|meta|rot3|side +Engraved Stone Slab|meta|rot4|side +``` +#### Bricks +``` +Stone Bricks Slab +Stone Bricks Slab|meta|rot1|top +Stone Bricks Slab|meta|rot1|side +Stone Bricks Slab|meta|rot2|side +Stone Bricks Slab|meta|rot3|side +Stone Bricks Slab|meta|rot4|side +``` +#### Mossy +``` +Mossy Stone Slab +Mossy Stone Slab|meta|rot1|top +Mossy Stone Slab|meta|rot1|side +Mossy Stone Slab|meta|rot2|side +Mossy Stone Slab|meta|rot3|side +Mossy Stone Slab|meta|rot4|side +``` +##### Bricks +``` +Mossy Stone Bricks Slab +Mossy Stone Bricks Slab|meta|rot1|top +Mossy Stone Bricks Slab|meta|rot1|side +Mossy Stone Bricks Slab|meta|rot2|side +Mossy Stone Bricks Slab|meta|rot3|side +Mossy Stone Bricks Slab|meta|rot4|side +``` +### Bricks +``` +Stone Bricks +``` +#### Mossy +``` +Mossy Stone Bricks +``` +#### Cracked +``` +Cracked Stone Bricks +``` +#### Colored +``` +Green Bricks +``` +##### Dark +``` +Dark Red Brick +Dark Green Bricks +``` +### Diorite +``` +Diorite +Smooth Diorite +Engraved Diorite +Diorite Bricks +``` +#### Slabs +``` +Diorite Slab +Diorite Slab|meta|rot1|top +Diorite Slab|meta|rot1|side +Diorite Slab|meta|rot2|side +Diorite Slab|meta|rot3|side +Diorite Slab|meta|rot4|side +``` +##### Smooth +``` +Smooth Diorite Slab +Smooth Diorite Slab|meta|rot1|top +Smooth Diorite Slab|meta|rot1|side +Smooth Diorite Slab|meta|rot2|side +Smooth Diorite Slab|meta|rot3|side +Smooth Diorite Slab|meta|rot4|side +``` +##### Engraved +``` +Engraved Diorite Slab +Engraved Diorite Slab|meta|rot1|top +Engraved Diorite Slab|meta|rot1|side +Engraved Diorite Slab|meta|rot2|side +Engraved Diorite Slab|meta|rot3|side +Engraved Diorite Slab|meta|rot4|side +``` +##### Bricks +``` +Diorite Bricks Slab +Diorite Bricks Slab|meta|rot1|top +Diorite Bricks Slab|meta|rot1|side +Diorite Bricks Slab|meta|rot2|side +Diorite Bricks Slab|meta|rot3|side +Diorite Bricks Slab|meta|rot4|side +``` +### Andesite +``` +Andesite +Smooth Andesite +Engraved Andesite +Andesite Bricks +``` +#### Slabs +``` +Andesite Slab +Andesite Slab|meta|rot1|top +Andesite Slab|meta|rot1|side +Andesite Slab|meta|rot2|side +Andesite Slab|meta|rot3|side +Andesite Slab|meta|rot4|side +``` +##### Smooth +``` +Smooth Andesite Slab +Smooth Andesite Slab|meta|rot1|top +Smooth Andesite Slab|meta|rot1|side +Smooth Andesite Slab|meta|rot2|side +Smooth Andesite Slab|meta|rot3|side +Smooth Andesite Slab|meta|rot4|side +``` +##### Engraved +``` +Engraved Andesite Slab +Engraved Andesite Slab|meta|rot1|top +Engraved Andesite Slab|meta|rot1|side +Engraved Andesite Slab|meta|rot2|side +Engraved Andesite Slab|meta|rot3|side +Engraved Andesite Slab|meta|rot4|side +``` +##### Bricks +``` +Andesite Bricks Slab +Andesite Bricks Slab|meta|rot1|top +Andesite Bricks Slab|meta|rot1|side +Andesite Bricks Slab|meta|rot2|side +Andesite Bricks Slab|meta|rot3|side +Andesite Bricks Slab|meta|rot4|side +``` +### Granite +``` +Granite +Smooth Granite +Engraved Granite +Granite Bricks +``` +#### Slabs +``` +Granite Slab +Granite Slab|meta|rot1|top +Granite Slab|meta|rot1|side +Granite Slab|meta|rot2|side +Granite Slab|meta|rot3|side +Granite Slab|meta|rot4|side +``` +##### Smooth +``` +Smooth Granite Slab +Smooth Granite Slab|meta|rot1|top +Smooth Granite Slab|meta|rot1|side +Smooth Granite Slab|meta|rot2|side +Smooth Granite Slab|meta|rot3|side +Smooth Granite Slab|meta|rot4|side +``` +##### Engraved +``` +Engraved Granite Slab +Engraved Granite Slab|meta|rot1|top +Engraved Granite Slab|meta|rot1|side +Engraved Granite Slab|meta|rot2|side +Engraved Granite Slab|meta|rot3|side +Engraved Granite Slab|meta|rot4|side +``` +##### Bricks +``` +Granite Bricks Slab +Granite Bricks Slab|meta|rot1|top +Granite Bricks Slab|meta|rot1|side +Granite Bricks Slab|meta|rot2|side +Granite Bricks Slab|meta|rot3|side +Granite Bricks Slab|meta|rot4|side +``` +### Sandstone Bricks +``` +Sandstone Bricks +Sandstone Bricks Slab +Sandstone Bricks Slab|meta|rot1|top +Sandstone Bricks Slab|meta|rot1|side +Sandstone Bricks Slab|meta|rot2|side +Sandstone Bricks Slab|meta|rot3|side +Sandstone Bricks Slab|meta|rot4|side +``` +#### Red +``` +Red Sandstone Bricks +Red Sandstone Bricks Slab +Red Sandstone Bricks Slab|meta|rot1|top +Red Sandstone Bricks Slab|meta|rot1|side +Red Sandstone Bricks Slab|meta|rot2|side +Red Sandstone Bricks Slab|meta|rot3|side +Red Sandstone Bricks Slab|meta|rot4|side +``` +### Compressed Messy Stone +``` +Compressed Messy Stone +Extra Compressed Messy Stone +Super Compressed Messy Stone +Hyper Compressed Messy Stone +Ultra Compressed Messy Stone +Mega Compressed Messy Stone +``` +### Bricks +``` +Bricks +``` +#### Slabs +``` +Bricks Slab +Bricks Slab|meta|rot1|top +Bricks Slab|meta|rot1|side +Bricks Slab|meta|rot2|side +Bricks Slab|meta|rot3|side +Bricks Slab|meta|rot4|side +``` +#### Obsidian & Bedrock +``` +Obsidian +Bedrock +``` +## Ores +``` +Coal Ore +Iron Ore +Gold Ore +Lapis Lazuli Ore +Emerald Ore +Diamond Ore +Moonstone Ore +``` +### Ore Blocks +``` +Block of Coal +Block of Iron +Block of Gold +Block of Lapis Lazuli +Block of Emerald +Block of Diamond +Block of Moonstone +``` +## Wool +``` +White Wool +Orange Wool +Magenta Wool +Light Blue Wool +Yellow Wool +Lime Wool +Pink Wool +Gray Wool +Light Gray Wool +Cyan Wool +Purple Wool +Blue Wool +Brown Wool +Green Wool +Red Wool +Black Wool +``` +### Carpet +``` +Black Carpet +Blue Carpet +Brown Carpet +Cyan Carpet +Gray Carpet +Light Gray Carpet +Green Carpet +Light Blue Carpet +Lime Carpet +Magenta Carpet +Orange Carpet +Pink Carpet +Purple Carpet +Red Carpet +White Carpet +Yellow Carpet +``` +## Baked Clay +``` +Baked Clay +``` +### Colored +``` +White Baked Clay +Orange Baked Clay +Magenta Baked Clay +Light Blue Baked Clay +Yellow Baked Clay +Lime Baked Clay +Pink Baked Clay +Gray Baked Clay +Light Gray Baked Clay +Cyan Baked Clay +Purple Baked Clay +Blue Baked Clay +Brown Baked Clay +Green Baked Clay +Red Baked Clay +Black Baked Clay +``` +## Concrete +``` +Gray Concrete +Light Gray Concrete +Black Concrete +Blue Concrete +Brown Concrete +Cyan Concrete +Light Blue Concrete +Lime Concrete +Magenta Concrete +Orange Concrete +Pink Concrete +Purple Concrete +Red Concrete +White Concrete +Green Concrete +Yellow Concrete +``` +### Concrete Slabs +#### Yellow +``` +Yellow Concrete Slab +Yellow Concrete Slab|meta|rot1|top +Yellow Concrete Slab|meta|rot1|side +Yellow Concrete Slab|meta|rot2|side +Yellow Concrete Slab|meta|rot3|side +Yellow Concrete Slab|meta|rot4|side +``` +#### White +``` +White Concrete Slab +White Concrete Slab|meta|rot1|top +White Concrete Slab|meta|rot1|side +White Concrete Slab|meta|rot2|side +White Concrete Slab|meta|rot3|side +White Concrete Slab|meta|rot4|side +``` +#### Red +``` +Red Concrete Slab +Red Concrete Slab|meta|rot1|top +Red Concrete Slab|meta|rot1|side +Red Concrete Slab|meta|rot2|side +Red Concrete Slab|meta|rot3|side +Red Concrete Slab|meta|rot4|side +``` +#### Purple +``` +Purple Concrete Slab +Purple Concrete Slab|meta|rot1|top +Purple Concrete Slab|meta|rot1|side +Purple Concrete Slab|meta|rot2|side +Purple Concrete Slab|meta|rot3|side +Purple Concrete Slab|meta|rot4|side +``` +#### Pink +``` +Pink Concrete Slab +Pink Concrete Slab|meta|rot1|top +Pink Concrete Slab|meta|rot1|side +Pink Concrete Slab|meta|rot2|side +Pink Concrete Slab|meta|rot3|side +Pink Concrete Slab|meta|rot4|side +``` +#### Orange +``` +Orange Concrete Slab +Orange Concrete Slab|meta|rot1|top +Orange Concrete Slab|meta|rot1|side +Orange Concrete Slab|meta|rot2|side +Orange Concrete Slab|meta|rot3|side +Orange Concrete Slab|meta|rot4|side +``` +#### Magenta +``` +Magenta Concrete Slab +Magenta Concrete Slab|meta|rot1|top +Magenta Concrete Slab|meta|rot1|side +Magenta Concrete Slab|meta|rot2|side +Magenta Concrete Slab|meta|rot3|side +Magenta Concrete Slab|meta|rot4|side +``` +#### Lime +``` +Lime Concrete Slab +Lime Concrete Slab|meta|rot1|top +Lime Concrete Slab|meta|rot1|side +Lime Concrete Slab|meta|rot2|side +Lime Concrete Slab|meta|rot3|side +Lime Concrete Slab|meta|rot4|side +``` +#### Light Gray +``` +Light Gray Concrete Slab +Light Gray Concrete Slab|meta|rot1|top +Light Gray Concrete Slab|meta|rot1|side +Light Gray Concrete Slab|meta|rot2|side +Light Gray Concrete Slab|meta|rot3|side +Light Gray Concrete Slab|meta|rot4|side +``` +#### Light Blue +``` +Light Blue Concrete Slab +Light Blue Concrete Slab|meta|rot1|top +Light Blue Concrete Slab|meta|rot1|side +Light Blue Concrete Slab|meta|rot2|side +Light Blue Concrete Slab|meta|rot3|side +Light Blue Concrete Slab|meta|rot4|side +``` +#### Green +``` +Green Concrete Slab +Green Concrete Slab|meta|rot1|top +Green Concrete Slab|meta|rot1|side +Green Concrete Slab|meta|rot2|side +Green Concrete Slab|meta|rot3|side +Green Concrete Slab|meta|rot4|side +``` +#### Gray +``` +Gray Concrete Slab +Gray Concrete Slab|meta|rot1|top +Gray Concrete Slab|meta|rot1|side +Gray Concrete Slab|meta|rot2|side +Gray Concrete Slab|meta|rot3|side +Gray Concrete Slab|meta|rot4|side +``` +#### Cyan +``` +Cyan Concrete Slab +Cyan Concrete Slab|meta|rot1|top +Cyan Concrete Slab|meta|rot1|side +Cyan Concrete Slab|meta|rot2|side +Cyan Concrete Slab|meta|rot3|side +Cyan Concrete Slab|meta|rot4|side +``` +#### Brown +``` +Brown Concrete Slab +Brown Concrete Slab|meta|rot1|top +Brown Concrete Slab|meta|rot1|side +Brown Concrete Slab|meta|rot2|side +Brown Concrete Slab|meta|rot3|side +Brown Concrete Slab|meta|rot4|side +``` +#### Blue +``` +Blue Concrete Slab +Blue Concrete Slab|meta|rot1|top +Blue Concrete Slab|meta|rot1|side +Blue Concrete Slab|meta|rot2|side +Blue Concrete Slab|meta|rot3|side +Blue Concrete Slab|meta|rot4|side +``` +#### Black +``` +Black Concrete Slab +Black Concrete Slab|meta|rot1|top +Black Concrete Slab|meta|rot1|side +Black Concrete Slab|meta|rot2|side +Black Concrete Slab|meta|rot3|side +Black Concrete Slab|meta|rot4|side +``` +## Glass +``` +Glass +``` +### Colored Glass +``` +Black Glass +Blue Glass +Brown Glass +Cyan Glass +Gray Glass +Light Gray Glass +Green Glass +Light Blue Glass +Lime Glass +Magenta Glass +Orange Glass +Pink Glass +Purple Glass +Red Glass +White Glass +Yellow Glass +``` +### Patterned Glass +``` +Patterned Black Glass +Patterned Blue Glass +Patterned Brown Glass +Patterned Cyan Glass +Patterned Gray Glass +Patterned Light Gray Glass +Patterned Green Glass +Patterned Light Blue Glass +Patterned Lime Glass +Patterned Magenta Glass +Patterned Orange Glass +Patterned Pink Glass +Patterned Purple Glass +Patterned Red Glass +Patterned White Glass +Patterned Yellow Glass +``` +## Ceramics +### White +``` +White Ceramic +White Ceramic|meta|rot2 +White Ceramic|meta|rot3 +White Ceramic|meta|rot4 +``` +### Orange +``` +Orange Ceramic +Orange Ceramic|meta|rot2 +Orange Ceramic|meta|rot3 +Orange Ceramic|meta|rot4 +``` +### Magenta +``` +Magenta Ceramic +Magenta Ceramic|meta|rot2 +Magenta Ceramic|meta|rot3 +Magenta Ceramic|meta|rot4 +``` +### Light Blue +``` +Light Blue Ceramic +Light Blue Ceramic|meta|rot2 +Light Blue Ceramic|meta|rot3 +Light Blue Ceramic|meta|rot4 +``` +### Yellow +``` +Yellow Ceramic +Yellow Ceramic|meta|rot2 +Yellow Ceramic|meta|rot3 +Yellow Ceramic|meta|rot4 +``` +### Lime +``` +Lime Ceramic +Lime Ceramic|meta|rot2 +Lime Ceramic|meta|rot3 +Lime Ceramic|meta|rot4 +``` +### Pink +``` +Pink Ceramic +Pink Ceramic|meta|rot2 +Pink Ceramic|meta|rot3 +Pink Ceramic|meta|rot4 +``` +### Gray +``` +Gray Ceramic +Gray Ceramic|meta|rot2 +Gray Ceramic|meta|rot3 +Gray Ceramic|meta|rot4 +``` +### Light Gray +``` +Light Gray Ceramic +Light Gray Ceramic|meta|rot2 +Light Gray Ceramic|meta|rot3 +Light Gray Ceramic|meta|rot4 +``` +### Cyan +``` +Cyan Ceramic +Cyan Ceramic|meta|rot2 +Cyan Ceramic|meta|rot3 +Cyan Ceramic|meta|rot4 +``` +### Purple +``` +Purple Ceramic +Purple Ceramic|meta|rot2 +Purple Ceramic|meta|rot3 +Purple Ceramic|meta|rot4 +``` +### Blue +``` +Blue Ceramic +Blue Ceramic|meta|rot2 +Blue Ceramic|meta|rot3 +Blue Ceramic|meta|rot4 +``` +### Brown +``` +Brown Ceramic +Brown Ceramic|meta|rot2 +Brown Ceramic|meta|rot3 +Brown Ceramic|meta|rot4 +``` +### Green +``` +Green Ceramic +Green Ceramic|meta|rot2 +Green Ceramic|meta|rot3 +Green Ceramic|meta|rot4 +``` +### Red +``` +Red Ceramic +Red Ceramic|meta|rot2 +Red Ceramic|meta|rot3 +Red Ceramic|meta|rot4 +``` +### Black +``` +Black Ceramic +Black Ceramic|meta|rot2 +Black Ceramic|meta|rot3 +Black Ceramic|meta|rot4 +``` +## Chalk +``` +Chalk +``` +### Colored +``` +Yellow Chalk +White Chalk +Red Chalk +Purple Chalk +Pink Chalk +Orange Chalk +Magenta Chalk +Lime Chalk +Light Gray Chalk +Light Blue Chalk +Green Chalk +Gray Chalk +Cyan Chalk +Brown Chalk +Blue Chalk +Black Chalk +``` +### Bricks +``` +Yellow Chalk Bricks +White Chalk Bricks +Red Chalk Bricks +Purple Chalk Bricks +Pink Chalk Bricks +Orange Chalk Bricks +Magenta Chalk Bricks +Lime Chalk Bricks +Light Gray Chalk Bricks +Light Blue Chalk Bricks +Green Chalk Bricks +Gray Chalk Bricks +Cyan Chalk Bricks +Brown Chalk Bricks +Blue Chalk Bricks +Black Chalk Bricks +``` +### Chalk Slabs +#### Yellow +``` +Yellow Chalk Slab +Yellow Chalk Slab|meta|rot1|top +Yellow Chalk Slab|meta|rot1|side +Yellow Chalk Slab|meta|rot2|side +Yellow Chalk Slab|meta|rot3|side +Yellow Chalk Slab|meta|rot4|side +``` +#### White +``` +White Chalk Slab +White Chalk Slab|meta|rot1|top +White Chalk Slab|meta|rot1|side +White Chalk Slab|meta|rot2|side +White Chalk Slab|meta|rot3|side +White Chalk Slab|meta|rot4|side +``` +#### Red +``` +Red Chalk Slab +Red Chalk Slab|meta|rot1|top +Red Chalk Slab|meta|rot1|side +Red Chalk Slab|meta|rot2|side +Red Chalk Slab|meta|rot3|side +Red Chalk Slab|meta|rot4|side +``` +#### Purple +``` +Purple Chalk Slab +Purple Chalk Slab|meta|rot1|top +Purple Chalk Slab|meta|rot1|side +Purple Chalk Slab|meta|rot2|side +Purple Chalk Slab|meta|rot3|side +Purple Chalk Slab|meta|rot4|side +``` +#### Pink +``` +Pink Chalk Slab +Pink Chalk Slab|meta|rot1|top +Pink Chalk Slab|meta|rot1|side +Pink Chalk Slab|meta|rot2|side +Pink Chalk Slab|meta|rot3|side +Pink Chalk Slab|meta|rot4|side +``` +#### Orange +``` +Orange Chalk Slab +Orange Chalk Slab|meta|rot1|top +Orange Chalk Slab|meta|rot1|side +Orange Chalk Slab|meta|rot2|side +Orange Chalk Slab|meta|rot3|side +Orange Chalk Slab|meta|rot4|side +``` +#### Magenta +``` +Magenta Chalk Slab +Magenta Chalk Slab|meta|rot1|top +Magenta Chalk Slab|meta|rot1|side +Magenta Chalk Slab|meta|rot2|side +Magenta Chalk Slab|meta|rot3|side +Magenta Chalk Slab|meta|rot4|side +``` +#### Lime +``` +Lime Chalk Slab +Lime Chalk Slab|meta|rot1|top +Lime Chalk Slab|meta|rot1|side +Lime Chalk Slab|meta|rot2|side +Lime Chalk Slab|meta|rot3|side +Lime Chalk Slab|meta|rot4|side +``` +#### Light Gray +``` +Light Gray Chalk Slab +Light Gray Chalk Slab|meta|rot1|top +Light Gray Chalk Slab|meta|rot1|side +Light Gray Chalk Slab|meta|rot2|side +Light Gray Chalk Slab|meta|rot3|side +Light Gray Chalk Slab|meta|rot4|side +``` +#### Light Blue +``` +Light Blue Chalk Slab +Light Blue Chalk Slab|meta|rot1|top +Light Blue Chalk Slab|meta|rot1|side +Light Blue Chalk Slab|meta|rot2|side +Light Blue Chalk Slab|meta|rot3|side +Light Blue Chalk Slab|meta|rot4|side +``` +#### Green +``` +Green Chalk Slab +Green Chalk Slab|meta|rot1|top +Green Chalk Slab|meta|rot1|side +Green Chalk Slab|meta|rot2|side +Green Chalk Slab|meta|rot3|side +Green Chalk Slab|meta|rot4|side +``` +#### Gray +``` +Gray Chalk Slab +Gray Chalk Slab|meta|rot1|top +Gray Chalk Slab|meta|rot1|side +Gray Chalk Slab|meta|rot2|side +Gray Chalk Slab|meta|rot3|side +Gray Chalk Slab|meta|rot4|side +``` +#### Cyan +``` +Cyan Chalk Slab +Cyan Chalk Slab|meta|rot1|top +Cyan Chalk Slab|meta|rot1|side +Cyan Chalk Slab|meta|rot2|side +Cyan Chalk Slab|meta|rot3|side +Cyan Chalk Slab|meta|rot4|side +``` +#### Brown +``` +Brown Chalk Slab +Brown Chalk Slab|meta|rot1|top +Brown Chalk Slab|meta|rot1|side +Brown Chalk Slab|meta|rot2|side +Brown Chalk Slab|meta|rot3|side +Brown Chalk Slab|meta|rot4|side +``` +#### Blue +``` +Blue Chalk Slab +Blue Chalk Slab|meta|rot1|top +Blue Chalk Slab|meta|rot1|side +Blue Chalk Slab|meta|rot2|side +Blue Chalk Slab|meta|rot3|side +Blue Chalk Slab|meta|rot4|side +``` +#### Black +``` +Black Chalk Slab +Black Chalk Slab|meta|rot1|top +Black Chalk Slab|meta|rot1|side +Black Chalk Slab|meta|rot2|side +Black Chalk Slab|meta|rot3|side +Black Chalk Slab|meta|rot4|side +``` +### Chalk Bricks Slabs +#### Yellow +``` +Yellow Chalk Bricks Slab +Yellow Chalk Bricks Slab|meta|rot1|top +Yellow Chalk Bricks Slab|meta|rot1|side +Yellow Chalk Bricks Slab|meta|rot2|side +Yellow Chalk Bricks Slab|meta|rot3|side +Yellow Chalk Bricks Slab|meta|rot4|side +``` +#### White +``` +White Chalk Bricks Slab +White Chalk Bricks Slab|meta|rot1|top +White Chalk Bricks Slab|meta|rot1|side +White Chalk Bricks Slab|meta|rot2|side +White Chalk Bricks Slab|meta|rot3|side +White Chalk Bricks Slab|meta|rot4|side +``` +#### Red +``` +Red Chalk Bricks Slab +Red Chalk Bricks Slab|meta|rot1|top +Red Chalk Bricks Slab|meta|rot1|side +Red Chalk Bricks Slab|meta|rot2|side +Red Chalk Bricks Slab|meta|rot3|side +Red Chalk Bricks Slab|meta|rot4|side +``` +#### Purple +``` +Purple Chalk Bricks Slab +Purple Chalk Bricks Slab|meta|rot1|top +Purple Chalk Bricks Slab|meta|rot1|side +Purple Chalk Bricks Slab|meta|rot2|side +Purple Chalk Bricks Slab|meta|rot3|side +Purple Chalk Bricks Slab|meta|rot4|side +``` +#### Pink +``` +Pink Chalk Bricks Slab +Pink Chalk Bricks Slab|meta|rot1|top +Pink Chalk Bricks Slab|meta|rot1|side +Pink Chalk Bricks Slab|meta|rot2|side +Pink Chalk Bricks Slab|meta|rot3|side +Pink Chalk Bricks Slab|meta|rot4|side +``` +#### Orange +``` +Orange Chalk Bricks Slab +Orange Chalk Bricks Slab|meta|rot1|top +Orange Chalk Bricks Slab|meta|rot1|side +Orange Chalk Bricks Slab|meta|rot2|side +Orange Chalk Bricks Slab|meta|rot3|side +Orange Chalk Bricks Slab|meta|rot4|side +``` +#### Magenta +``` +Magenta Chalk Bricks Slab +Magenta Chalk Bricks Slab|meta|rot1|top +Magenta Chalk Bricks Slab|meta|rot1|side +Magenta Chalk Bricks Slab|meta|rot2|side +Magenta Chalk Bricks Slab|meta|rot3|side +Magenta Chalk Bricks Slab|meta|rot4|side +``` +#### Lime +``` +Lime Chalk Bricks Slab +Lime Chalk Bricks Slab|meta|rot1|top +Lime Chalk Bricks Slab|meta|rot1|side +Lime Chalk Bricks Slab|meta|rot2|side +Lime Chalk Bricks Slab|meta|rot3|side +Lime Chalk Bricks Slab|meta|rot4|side +``` +#### Light Gray +``` +Light Gray Chalk Bricks Slab +Light Gray Chalk Bricks Slab|meta|rot1|top +Light Gray Chalk Bricks Slab|meta|rot1|side +Light Gray Chalk Bricks Slab|meta|rot2|side +Light Gray Chalk Bricks Slab|meta|rot3|side +Light Gray Chalk Bricks Slab|meta|rot4|side +``` +#### Light Blue +``` +Light Blue Chalk Bricks Slab +Light Blue Chalk Bricks Slab|meta|rot1|top +Light Blue Chalk Bricks Slab|meta|rot1|side +Light Blue Chalk Bricks Slab|meta|rot2|side +Light Blue Chalk Bricks Slab|meta|rot3|side +Light Blue Chalk Bricks Slab|meta|rot4|side +``` +#### Green +``` +Green Chalk Bricks Slab +Green Chalk Bricks Slab|meta|rot1|top +Green Chalk Bricks Slab|meta|rot1|side +Green Chalk Bricks Slab|meta|rot2|side +Green Chalk Bricks Slab|meta|rot3|side +Green Chalk Bricks Slab|meta|rot4|side +``` +#### Gray +``` +Gray Chalk Bricks Slab +Gray Chalk Bricks Slab|meta|rot1|top +Gray Chalk Bricks Slab|meta|rot1|side +Gray Chalk Bricks Slab|meta|rot2|side +Gray Chalk Bricks Slab|meta|rot3|side +Gray Chalk Bricks Slab|meta|rot4|side +``` +#### Cyan +``` +Cyan Chalk Bricks Slab +Cyan Chalk Bricks Slab|meta|rot1|top +Cyan Chalk Bricks Slab|meta|rot1|side +Cyan Chalk Bricks Slab|meta|rot2|side +Cyan Chalk Bricks Slab|meta|rot3|side +Cyan Chalk Bricks Slab|meta|rot4|side +``` +#### Brown +``` +Brown Chalk Bricks Slab +Brown Chalk Bricks Slab|meta|rot1|top +Brown Chalk Bricks Slab|meta|rot1|side +Brown Chalk Bricks Slab|meta|rot2|side +Brown Chalk Bricks Slab|meta|rot3|side +Brown Chalk Bricks Slab|meta|rot4|side +``` +#### Blue +``` +Blue Chalk Bricks Slab +Blue Chalk Bricks Slab|meta|rot1|top +Blue Chalk Bricks Slab|meta|rot1|side +Blue Chalk Bricks Slab|meta|rot2|side +Blue Chalk Bricks Slab|meta|rot3|side +Blue Chalk Bricks Slab|meta|rot4|side +``` +#### Black +``` +Black Chalk Bricks Slab +Black Chalk Bricks Slab|meta|rot1|top +Black Chalk Bricks Slab|meta|rot1|side +Black Chalk Bricks Slab|meta|rot2|side +Black Chalk Bricks Slab|meta|rot3|side +Black Chalk Bricks Slab|meta|rot4|side +``` +## Lightning +``` +Dim Lamp On +Dim Lamp Off +Beacon +``` +## Protectors +``` +Protector +Tribe Protector +Faction Protector +``` +## Chests & Mailboxes +``` +Chest +Chest|meta|rot2 +Chest|meta|rot3 +Chest|meta|rot4 +``` +### Loot +``` +Loot Chest +Loot Chest|meta|rot2 +Loot Chest|meta|rot3 +Loot Chest|meta|rot4 +``` +### Moonstone +``` +Moonstone Chest +Moonstone Chest|meta|rot2 +Moonstone Chest|meta|rot3 +Moonstone Chest|meta|rot4 +``` +### Mailboxes +``` +Mailbox +Mailbox|meta|rot2|empty +Mailbox|meta|rot3|empty +Mailbox|meta|rot4|empty +Mailbox|meta|rot1|full +Mailbox|meta|rot2|full +Mailbox|meta|rot3|full +Mailbox|meta|rot4|full +``` +## Climbing +``` +Dangling Rope +Net +Cobweb +``` +### Vines +``` +Vines +Dangling Vine +Vines|meta|rot2 +Vines|meta|rot3 +Vines|meta|rot4 +Vines|meta|rot1|Growing +Vines|meta|rot2|Growing +Vines|meta|rot3|Growing +Vines|meta|rot4|Growing +``` +## Board +``` +Board +Board|meta|rot2 +Board|meta|rot3 +Board|meta|rot4 +``` +## Bookshelf +``` +Bookshelf +Bookshelf|meta|rot2|books6 +Bookshelf|meta|rot3|books6 +Bookshelf|meta|rot4|books6 +Empty Bookshelf +Empty Bookshelf|meta|rot2|books0 +Empty Bookshelf|meta|rot3|books0 +Empty Bookshelf|meta|rot4|books0 +Bookshelf|meta|rot1|books1 +Bookshelf|meta|rot2|books1 +Bookshelf|meta|rot3|books1 +Bookshelf|meta|rot4|books1 +Bookshelf|meta|rot1|books2 +Bookshelf|meta|rot2|books2 +Bookshelf|meta|rot3|books2 +Bookshelf|meta|rot4|books2 +Bookshelf|meta|rot1|books3 +Bookshelf|meta|rot2|books3 +Bookshelf|meta|rot3|books3 +Bookshelf|meta|rot4|books3 +Bookshelf|meta|rot1|books4 +Bookshelf|meta|rot2|books4 +Bookshelf|meta|rot3|books4 +Bookshelf|meta|rot4|books4 +Bookshelf|meta|rot1|books5 +Bookshelf|meta|rot2|books5 +Bookshelf|meta|rot3|books5 +Bookshelf|meta|rot4|books5 +``` +## Explosives +``` +Moonstone Explosive +Grenade +Bouncy Bomb Block +Obby Rocket +Rocket +Super Rocket +Timed Spike Bomb Block +Timed Spike Bomb Block|Flashing +Fireball Block +Iceball Block +Toxin Ball Block +``` +## Paintball +### Regular Explosives +``` +Yellow Paintball Explosive +White Paintball Explosive +Red Paintball Explosive +Purple Paintball Explosive +Pink Paintball Explosive +Orange Paintball Explosive +Magenta Paintball Explosive +Lime Paintball Explosive +Light Gray Paintball Explosive +Light Blue Paintball Explosive +Green Paintball Explosive +Gray Paintball Explosive +Cyan Paintball Explosive +Brown Paintball Explosive +Blue Paintball Explosive +Black Paintball Explosive +``` +### Quick Paintball Explosives +``` +Yellow Quick Paintball Explosive +White Quick Paintball Explosive +Red Quick Paintball Explosive +Purple Quick Paintball Explosive +Pink Quick Paintball Explosive +Orange Quick Paintball Explosive +Magenta Quick Paintball Explosive +Lime Quick Paintball Explosive +Light Gray Quick Paintball Explosive +Light Blue Quick Paintball Explosive +Green Quick Paintball Explosive +Gray Quick Paintball Explosive +Cyan Quick Paintball Explosive +Brown Quick Paintball Explosive +Blue Quick Paintball Explosive +Black Quick Paintball Explosive +``` +### Seeking Explosives +``` +Yellow Seeking Paintball Explosive +White Seeking Paintball Explosive +Red Seeking Paintball Explosive +Purple Seeking Paintball Explosive +Pink Seeking Paintball Explosive +Orange Seeking Paintball Explosive +Magenta Seeking Paintball Explosive +Lime Seeking Paintball Explosive +Light Gray Seeking Paintball Explosive +Light Blue Seeking Paintball Explosive +Green Seeking Paintball Explosive +Gray Seeking Paintball Explosive +Cyan Seeking Paintball Explosive +Brown Seeking Paintball Explosive +Blue Seeking Paintball Explosive +Black Seeking Paintball Explosive +``` +### Sticky Explosives +``` +Yellow Sticky Paintball Explosive +White Sticky Paintball Explosive +Red Sticky Paintball Explosive +Purple Sticky Paintball Explosive +Pink Sticky Paintball Explosive +Orange Sticky Paintball Explosive +Magenta Sticky Paintball Explosive +Lime Sticky Paintball Explosive +Light Gray Sticky Paintball Explosive +Light Blue Sticky Paintball Explosive +Green Sticky Paintball Explosive +Gray Sticky Paintball Explosive +Cyan Sticky Paintball Explosive +Brown Sticky Paintball Explosive +Blue Sticky Paintball Explosive +Black Sticky Paintball Explosive +``` +## Code +``` +Code Block +``` +## Spawn Block +``` +Spawn Block (Yellow) +Spawn Block (White) +Spawn Block (Red) +Spawn Block (Purple) +Spawn Block (Pink) +Spawn Block (Orange) +Spawn Block (Magenta) +Spawn Block (Lime) +Spawn Block (Light Gray) +Spawn Block (Light Blue) +Spawn Block (Green) +Spawn Block (Gray) +Spawn Block (Cyan) +Spawn Block (Brown) +Spawn Block (Blue) +Spawn Block (Black) +``` +## Checkpoint Block +``` +Checkpoint Block +Checkpoint Block|meta|rot2 +Checkpoint Block|meta|rot3 +Checkpoint Block|meta|rot4 +``` +## Custom Lobby Block +``` +Custom Lobby Block +Custom Lobby Block|meta|rot2 +Custom Lobby Block|meta|rot3 +Custom Lobby Block|meta|rot4 +``` +## Spawners +``` +Empty Spawner Block +``` +### Passive Mobs +``` +Pig Spawner Block +Cow Spawner Block +Sheep Spawner Block +Deer Spawner Block +``` +### Hostile Mobs +``` +Bear Spawner Block +Stag Spawner Block +Gold Watermelon Stag Spawner Block +Gorilla Spawner Block +Cave Golem Spawner Block +``` +#### Draugr +``` +Draugr Zombie Spawner Block +Draugr Skeleton Spawner Block +Draugr Knight Spawner Block +``` +#### Frost +``` +Frost Golem Spawner Block +Frost Zombie Spawner Block +Frost Skeleton Spawner Block +``` +### Neutral +> [!NOTE] +> By neutral we mean that these mobs can be hostile, passive and friendly +``` +Wolf Spawner Block +Wildcat Spawner Block +``` +### Generator Spawn +``` +Generator Spawn Block (Diamond) +Generator Spawn Block (Moonstone) +Generator Spawn Block (Ore) +``` +#### Colors +``` +Generator Spawn Block (Red) +Generator Spawn Block (Blue) +Generator Spawn Block (Lime) +Generator Spawn Block (Yellow) +Generator Spawn Block (Cyan) +Generator Spawn Block (White) +Generator Spawn Block (Pink) +Generator Spawn Block (Gray) +``` +### Trader Shop Spawn +``` +Trader Shop Spawn Block +Trader Shop Spawn Block|meta|rot2 +Trader Shop Spawn Block|meta|rot3 +Trader Shop Spawn Block|meta|rot4 +``` +### Wizard Shop Spawn +``` +Wizard Shop Spawn Block +Wizard Shop Spawn Block|meta|rot2 +Wizard Shop Spawn Block|meta|rot3 +Wizard Shop Spawn Block|meta|rot4 +``` +## Bones +``` +Bone Block +``` +## Antlers +### Bone Antler +``` +Bone Antlers +Bone Antlers|meta|rot2 +Bone Antlers|meta|rot3 +Bone Antlers|meta|rot4 +``` +### Gold Antlers +``` +Gold Antlers +Gold Antlers|meta|rot2 +Gold Antlers|meta|rot3 +Gold Antlers|meta|rot4 +``` +## Tables/Benches +### Furnace +``` +Furnace +Furnace|meta|rot2 +Furnace|meta|rot3 +Furnace|meta|rot4 +``` +### Workbench +``` +Workbench +Workbench|meta|rot2 +Workbench|meta|rot3 +Workbench|meta|rot4 +``` +### Artisan +``` +Artisan Bench +``` +### Potion +``` +Potion Table +Potion Table|meta|rot2 +Potion Table|meta|rot3 +Potion Table|meta|rot4 +``` +### Salvaging +``` +Salvaging Table +Salvaging Table|meta|rot2 +Salvaging Table|meta|rot3 +Salvaging Table|meta|rot4 +``` +### Enchanting +#### Wood +``` +Wood Enchanting Table +Wood Enchanting Table|meta|rot2 +Wood Enchanting Table|meta|rot3 +Wood Enchanting Table|meta|rot4 +``` +#### Stone +``` +Stone Enchanting Table +Stone Enchanting Table|meta|rot2 +Stone Enchanting Table|meta|rot3 +Stone Enchanting Table|meta|rot4 +``` +#### Iron +``` +Iron Enchanting Table +Iron Enchanting Table|meta|rot2 +Iron Enchanting Table|meta|rot3 +Iron Enchanting Table|meta|rot4 +``` +#### Gold +``` +Gold Enchanting Table +Gold Enchanting Table|meta|rot2 +Gold Enchanting Table|meta|rot3 +Gold Enchanting Table|meta|rot4 +``` +#### Diamond +``` +Diamond Enchanting Table +Diamond Enchanting Table|meta|rot2 +Diamond Enchanting Table|meta|rot3 +Diamond Enchanting Table|meta|rot4 +``` +## Miscellaneous +``` +Goal Block (Red) +Goal Block (Blue) +Finish Block +Drop Location Block +Water +Invisible Solid +Sponge +temp +``` +### Obby +``` +Obby Death Block +Obby Absorb Block +Obby Absorb Death Block +``` +### Placeholders +``` +Pumpkin_placeholder +free_placeholder +free_placeholder2 +UNUSED BLOCK TYPE +Placeholder Packed Ice +Placeholder Blue Ice +ReservedBread BlockRotation1 +ReservedBread BlockRotation2 +ReservedBread BlockRotation3 +``` diff --git a/CALLBACKS.md b/Callbacks.md similarity index 88% rename from CALLBACKS.md rename to Callbacks.md index 0a2e141..3d9aeb9 100644 --- a/CALLBACKS.md +++ b/Callbacks.md @@ -15,7 +15,7 @@ onWorldChangeBlock onCreateBloxdMeshEntity onEntityCollision onPlayerAttemptSpawnMob onWorldAttemptSpawnMob onPlayerSpawnMob onWorldSpawnMob onWorldAttemptDespawnMob onMobDespawned onPlayerAttack onPlayerDamagingOtherPlayer onPlayerDamagingMob onMobDamagingPlayer -onMobDamagingOtherMob onPlayerKilledOtherPlayer onMobKilledPlayer +onMobDamagingOtherMob onAttempKillPlayer onPlayerKilledOtherPlayer onMobKilledPlayer onPlayerKilledMob onMobKilledOtherMob onPlayerPotionEffect onPlayerDamagingMeshEntity onPlayerBreakMeshEntity onPlayerUsedThrowable onPlayerThrowableHitTerrain onTouchscreenActionButton onTaskClaimed @@ -26,38 +26,53 @@ To use a callback, just assign a function to it in the world code! tick = () => {} or function tick() {} ``` +> [!NOTE] +> Below is all the callbacks that you can use in Bloxd.io, there are headers above each. + +### Tick ```js /** * Called every tick, 20 times per second * @param ms */ tick = (ms) => {} - +``` +### onClose +```js /** * Called when the lobby is shutting down * @param serverIsShuttingDown - Whether the server is shutting down */ onClose = (serverIsShuttingDown) => {} - +``` +### onPlayerJoin +```js /** * Called when a player joins the lobby * @param playerId - The id of the player that joined + * @param fromGameReset - Whether this call is from a game reset (used by SessionBasedGame) */ -onPlayerJoin = (playerId) => {} - +onPlayerJoin = (playerId, fromGameReset) => {} +``` +### onPlayerLeave +```js /** * Called when a player leaves the lobby * @param playerId - The id of the player that left * @param serverIsShuttingDown - Whether the server is shutting down */ onPlayerLeave = (playerId, serverIsShuttingDown) => {} - +``` +### onPlayerJump +```js /** * Called when a player jumps * @param playerId - The id of the player that jumped */ onPlayerJump = (playerId) => {} - +``` +### onRespawnRequest +```js /** * Called when a player requests to respawn. * Optionally return the respawn location. Defaults to [0, 0, 0]. @@ -67,7 +82,9 @@ onPlayerJump = (playerId) => {} * @param playerId - The id of the player that requested to respawn */ onRespawnRequest = (playerId) => {} - +``` +### playerCommand +```js /** * Called when a player sends a command * @param playerId - The id of the player that sent the command @@ -76,7 +93,9 @@ onRespawnRequest = (playerId) => {} playerCommand = (playerId, command) => { return false } - +``` +### onPlayerChat +```js /** * Called when a player sends a chat message * Return false or null to prevent the broadcast of the message. @@ -92,7 +111,9 @@ playerCommand = (playerId, command) => { onPlayerChat = (playerId, chatMessage, channelName) => { return true } - +``` +### onPlayerChangeBlock +```js /** * Called when a player changes a block * Return "preventChange" to prevent the change. @@ -111,7 +132,9 @@ onPlayerChat = (playerId, chatMessage, channelName) => { * @param {MultiBlockInfo} toBlockInfo - The info of the new block that was placed */ onPlayerChangeBlock = (playerId, x, y, z, fromBlock, toBlock, droppedItem, fromBlockInfo, toBlockInfo) => {} - +``` +### onPlayerDropItem +```js /** * Called when a player drops an item * Return "preventDrop" to prevent the player from dropping the item at all. @@ -125,7 +148,9 @@ onPlayerChangeBlock = (playerId, x, y, z, fromBlock, toBlock, droppedItem, fromB * @param {number} fromIdx - The index of the item that was dropped from the player's inventory */ onPlayerDropItem = (playerId, x, y, z, itemName, itemAmount, fromIdx) => {} - +``` +### onPlayerPickedUpItem +```js /** * Called when a player picks up an item * @param {PlayerId} playerId - The id of the player that picked up the item @@ -133,7 +158,9 @@ onPlayerDropItem = (playerId, x, y, z, itemName, itemAmount, fromIdx) => {} * @param {number} itemAmount - The amount of the item that was picked up */ onPlayerPickedUpItem = (playerId, itemName, itemAmount) => {} - +``` +### onPlayerSelectInventorySlot +```js /** * Called when a player selects a different inventory slot. * This will be called eventually when you have already set the slot using @@ -142,9 +169,13 @@ onPlayerPickedUpItem = (playerId, itemName, itemAmount) => {} * @param {number} slotIndex - The index of the inventory slot that was selected */ onPlayerSelectInventorySlot = (playerId, slotIndex) => {} - +``` +### onBlockStand +```js /** * Called when a player stands on a block + * This can run at 20-80 ticks per second times the number of players + * Making this the fastest callback known, but it's prone to interruptions * @param {PlayerId} playerId - The id of the player that stood on the block * @param {number} x - The x coordinate of the block that was stood on * @param {number} y - The y coordinate of the block that was stood on @@ -152,7 +183,9 @@ onPlayerSelectInventorySlot = (playerId, slotIndex) => {} * @param {BlockName} blockName - The name of the block that was stood on */ onBlockStand = (playerId, x, y, z, blockName) => {} - +``` +### onPlayerAttemptCraft +```js /** * Called when a player attempts to craft an item * Return "preventCraft" to prevent a craft from happening @@ -161,7 +194,9 @@ onBlockStand = (playerId, x, y, z, blockName) => {} * @param {number} craftingIdx - The index of the used recipe in the item's recipe list */ onPlayerAttemptCraft = (playerId, itemName, craftingIdx) => {} - +``` +### onPlayerCraft +```js /** * Called when a player crafts an item * @param {PlayerId} playerId - The id of the player that crafted the item @@ -170,7 +205,9 @@ onPlayerAttemptCraft = (playerId, itemName, craftingIdx) => {} * @param {RecipesForItem[number]} recipe - The recipe that was used to craft the item */ onPlayerCraft = (playerId, itemName, craftingIdx, recipe) => {} - +``` +### onPlayerAttemptOpenChest +```js /** * Called when a player attempts to open a chest * Return "preventOpen" to prevent the player from opening the chest @@ -179,9 +216,12 @@ onPlayerCraft = (playerId, itemName, craftingIdx, recipe) => {} * @param {number} y - The y coordinate of the chest that the player is attempting to open * @param {number} z - The z coordinate of the chest that the player is attempting to open * @param {boolean} isMoonstoneChest - Whether the chest is a moonstone chest + * @param {boolean} isIronChest - Whether the chest is an iron chest */ -onPlayerAttemptOpenChest = (playerId, x, y, z, isMoonstoneChest) => {} - +onPlayerAttemptOpenChest = (playerId, x, y, z, isMoonstoneChest, isIronChest) => {} +``` +### onPlayerOpenedChest +```js /** * Called when a player opens a chest * @param {PlayerId} playerId - The id of the player that opened the chest @@ -189,9 +229,12 @@ onPlayerAttemptOpenChest = (playerId, x, y, z, isMoonstoneChest) => {} * @param {number} y - The y coordinate of the chest that was opened * @param {number} z - The z coordinate of the chest that was opened * @param {boolean} isMoonstoneChest - Whether the chest is a moonstone chest + * @param {boolean} isIronChest - Whether the chest is an iron chest */ -onPlayerOpenedChest = (playerId, x, y, z, isMoonstoneChest) => {} - +onPlayerOpenedChest = (playerId, x, y, z, isMoonstoneChest, isIronChest) => {} +``` +### onPlayerMoveItemOutOfInventory +```js /** * Called when a player moves an item out of their inventory * Return "preventChange" to prevent the movement @@ -202,7 +245,9 @@ onPlayerOpenedChest = (playerId, x, y, z, isMoonstoneChest) => {} * @param {string} movementType - The type of movement that occurred */ onPlayerMoveItemOutOfInventory = (playerId, itemName, itemAmount, fromIdx, movementType) => {} - +``` +### onPlayerMoveInvenItem +```js /** * Called for all types of inventory item movement. * Certain methods of moving item can result in splitting a stack @@ -216,7 +261,9 @@ onPlayerMoveItemOutOfInventory = (playerId, itemName, itemAmount, fromIdx, movem * @param {number} amt - The amount of the item being moved */ onPlayerMoveInvenItem = (playerId, fromIdx, toStartIdx, toEndIdx, amt) => {} - +``` +### onPlayerMoveItemIntoIdxs +```js /** * Called when a player moves an item into an index within a range of inventory slots * Return "preventChange" to prevent the movement @@ -227,7 +274,9 @@ onPlayerMoveInvenItem = (playerId, fromIdx, toStartIdx, toEndIdx, amt) => {} * @param {number} itemAmount - The amount of the item being moved */ onPlayerMoveItemIntoIdxs = (playerId, start, end, moveIdx, itemAmount) => {} - +``` +### onPlayerSwapInvenSlots +```js /** * Return "preventChange" to prevent the swap * @param {PlayerId} playerId - The id of the player swapping the inventory slots @@ -235,7 +284,9 @@ onPlayerMoveItemIntoIdxs = (playerId, start, end, moveIdx, itemAmount) => {} * @param {number} j - The index of the second slot */ onPlayerSwapInvenSlots = (playerId, i, j) => {} - +``` +### onPlayerMoveInvenItemWithAmt +```js /** * Return "preventChange" to prevent the movement * @param {PlayerId} playerId - The id of the player moving the item @@ -244,7 +295,9 @@ onPlayerSwapInvenSlots = (playerId, i, j) => {} * @param {number} amt - The amount of the item being moved */ onPlayerMoveInvenItemWithAmt = (playerId, i, j, amt) => {} - +``` +### onPlayerAttempAltAction +```js /** * Called when player alt actions (right click on pc). * The co-ordinates will be undefined if there is no targeted block (and block will be "Air") @@ -259,7 +312,9 @@ onPlayerMoveInvenItemWithAmt = (playerId, i, j, amt) => {} * @param {EntityId | null} targetEId - The id of the targeted entity */ onPlayerAttemptAltAction = (playerId, x, y, z, block, targetEId) => {} - +``` +### onPlayerAltAction +```js /** * Called when player completes an alt action (right click on pc). * The co-ordinates will be undefined if there is no targeted block (and block will be "Air") @@ -271,7 +326,9 @@ onPlayerAttemptAltAction = (playerId, x, y, z, block, targetEId) => {} * @param {EntityId | null} targetEId - The id of the targeted entity */ onPlayerAltAction = (playerId, x, y, z, block, targetEId) => {} - +``` +### onPlayerClick +```js /** * Called when a player clicks * Don't have important functionality depending on wasAltClick, @@ -280,7 +337,9 @@ onPlayerAltAction = (playerId, x, y, z, block, targetEId) => {} * @param {boolean} wasAltClick - Whether the click was an alt click (e.g. right click */ onPlayerClick = (playerId, wasAltClick) => {} - +``` +### onClientOptionUpdated +```js /** * Called when a client option is updated * @param {PlayerId} playerId - The id of the player whose option was updated @@ -288,7 +347,9 @@ onPlayerClick = (playerId, wasAltClick) => {} * @param {any} value - The new value of the option */ onClientOptionUpdated = (playerId, option, value) => {} - +``` +### onMobSettingUpdated +```js /** * Called when a mob setting is updated * @param {MobId} mobId - The id of the mob whose setting was updated @@ -296,13 +357,17 @@ onClientOptionUpdated = (playerId, option, value) => {} * @param {any} value - The new value of the setting */ onMobSettingUpdated = (mobId, setting, value) => {} - +``` +### onInventoryUpdated +```js /** * Called when a player's inventory is updated * @param {PlayerId} playerId - The id of the player whose inventory was updated */ onInventoryUpdated = (playerId) => {} - +``` +### onChestUpdated +```js /** * Called when a chest is updated by a player * x, y, z, will be null if isMoonstoneChest is true @@ -313,7 +378,9 @@ onInventoryUpdated = (playerId) => {} * @param {number | null} z - The z coordinate of the chest */ onChestUpdated = (initiatorEId, isMoonstoneChest, x, y, z) => {} - +``` +### onWorldChangeBlock +```js /** * Called when a block is changed in the world * initiatorDbId is null if updated by game code e.g. when a sapling grows @@ -325,23 +392,30 @@ onChestUpdated = (initiatorEId, isMoonstoneChest, x, y, z) => {} * @param {BlockName} fromBlock - The old block that was replaced * @param {BlockName} toBlock - The new block that was placed * @param {string | null} initiatorDbId - The id of the player who updated the block + * @param {WorldBlockChangedInfo} extraInfo - Extra info about the block change */ -onWorldChangeBlock = (x, y, z, fromBlock, toBlock, initiatorDbId) => {} - +onWorldChangeBlock = (x, y, z, fromBlock, toBlock, initiatorDbId, estraInfo) => {} +``` +### onCreateBloxdMeshEntity +```js /** * Called when a mesh entity is created * @param {EntityId} eId - The id of the mesh entity * @param {string} type - The type of mesh entity */ onCreateBloxdMeshEntity = (eId, type) => {} - +``` +### onEntityCollision +```js /** * Called when a entity collides with another entity * @param {EntityId} eId - The id of the entity * @param {EntityId} otherEId - The id of the other entity */ onEntityCollision = (eId, otherEId) => {} - +``` +### onPlayerAttemptSpawnMob +```js /** * Called when a player attempts to spawn a mob, e.g. using a spawn orb. * Return "preventSpawn" to prevent the mob from spawning. @@ -352,7 +426,9 @@ onEntityCollision = (eId, otherEId) => {} * @param {number} z - The potential z coordinate of the mob */ onPlayerAttemptSpawnMob = (playerId, mobType, x, y, z) => {} - +``` +### onWorldAttemptSpawnMob +```js /** * Called when the world attempts to spawn a mob. * Return "preventSpawn" to prevent the mob from spawning. @@ -362,7 +438,9 @@ onPlayerAttemptSpawnMob = (playerId, mobType, x, y, z) => {} * @param {number} z - The potential z coordinate of the mob */ onWorldAttemptSpawnMob = (mobType, x, y, z) => {} - +``` +### onPlayerAttemptSpawnMob +```js /** * Called when a mob is spawned by a player * @param {PlayerId} playerId - The id of the player who spawned the mob @@ -375,7 +453,9 @@ onWorldAttemptSpawnMob = (mobType, x, y, z) => {} * @param {boolean} playSoundOnSpawn - Whether to play a sound on spawn */ onPlayerSpawnMob = (playerId, mobId, mobType, x, y, z, mobHerdId, playSoundOnSpawn) => {} - +``` +### onWorldSpawnMob +```js /** * Called when a mob is spawned by the world * @param {MobId} mobId - The id of the mob @@ -387,26 +467,34 @@ onPlayerSpawnMob = (playerId, mobId, mobType, x, y, z, mobHerdId, playSoundOnSpa * @param {boolean} playSoundOnSpawn - Whether to play a sound on spawn */ onWorldSpawnMob = (mobId, mobType, x, y, z, mobHerdId, playSoundOnSpawn) => {} - +``` +### onWorldAttemptDespawnMob +```js /** * Called when a mob is despawned by the world. * Return "preventDespawn" to prevent the mob from despawning. * @param {MobId} mobId - The id of the mob despawned */ onWorldAttemptDespawnMob = (mobId) => {} - +``` +### onMobDespawned +```js /** * Called when a mob is despawned * @param {MobId} mobId - The id of the mob despawned */ onMobDespawned = (mobId) => {} - +``` +### onPlayerAttack +```js /** * Called when a player attacks another player * @param playerId - The id of the player attacking */ onPlayerAttack = (playerId) => {} - +``` +### onPlayerDamagingOtherPlayer +```js /** * Called when a player is damaging another player * Return "preventDamage" to prevent damage @@ -422,7 +510,9 @@ onPlayerAttack = (playerId) => {} * @param {PlayerDbId} damagerDbId - The database id of the player attacking */ onPlayerDamagingOtherPlayer = (attackingPlayer, damagedPlayer, damageDealt, withItem, bodyPartHit, damagerDbId) => {} - +``` +### onPlayerDamagingMob +```js /** * Called when a player is damaging a mob * Return "preventDamage" to prevent damage @@ -433,7 +523,9 @@ onPlayerDamagingOtherPlayer = (attackingPlayer, damagedPlayer, damageDealt, with * @param {string} withItem - The item used to attack */ onPlayerDamagingMob = (playerId, mobId, damageDealt, withItem) => {} - +``` +### onMobDamagingPlayer +```js /** * Called when a mob is damaging a player * Return "preventDamage" to prevent damage @@ -444,7 +536,9 @@ onPlayerDamagingMob = (playerId, mobId, damageDealt, withItem) => {} * @param {string} withItem */ onMobDamagingPlayer = (attackingMob, damagedPlayer, damageDealt, withItem) => {} - +``` +### onMobDamagingOtherMob +```js /** * Called when a mob is damaging another mob * Return "preventDamage" to prevent damage @@ -455,7 +549,19 @@ onMobDamagingPlayer = (attackingMob, damagedPlayer, damageDealt, withItem) => {} * @param {string} withItem */ onMobDamagingOtherMob = (attackingMob, damagedMob, damageDealt, withItem) => {} - +``` +### onAttemptKillPlayer +```js +/** + * Called when a player is about to be killed + * Return "preventDeath" to prevent the player from being killed + * @param {PlayerId} killedPlayer - The id of the player being killed + * @param {LifeformId} [attackingLifeform] - The optional id of the lifeform attacking the player + */ +onAttemptKillPlayer = (killedPlayer, attackingLifeform) => {} +``` +### onPlayerKilledOtherPlayer +```js /** * Called when a player kills another player * Return "keepInventory" to not drop the player's inventory @@ -465,7 +571,9 @@ onMobDamagingOtherMob = (attackingMob, damagedMob, damageDealt, withItem) => {} * @param withItem - The item used to attack */ onPlayerKilledOtherPlayer = (attackingPlayer, killedPlayer, damageDealt, withItem) => {} - +``` +### onMobKilledPlayer +```js /** * Called when a mob kills a player * Return "keepInventory" to not drop the player's inventory @@ -475,17 +583,21 @@ onPlayerKilledOtherPlayer = (attackingPlayer, killedPlayer, damageDealt, withIte * @param withItem - The item used to attack */ onMobKilledPlayer = (attackingMob, killedPlayer, damageDealt, withItem) => {} - +``` +### onPlayerKilledMob +```js /** - * Called when a mob kills a player + * Called when a player kills a mob * Return "preventDrop" to prevent the mob from dropping items - * @param {PlayerId} playerId - The id of the player killed - * @param {MobId} mobId - The id of the mob that killed the player + * @param {PlayerId} playerId - The id of the player that killed the mob + * @param {MobId} mobId - The id of the mob killed * @param {number} damageDealt - The amount of damage dealt * @param {string} withItem - The item used to attack */ onPlayerKilledMob = (playerId, mobId, damageDealt, withItem) => {} - +``` +### onMobKilledOtherMob +```js /** * Called when a mob kills another mob * Return "preventDrop" to prevent the mob from dropping items @@ -495,7 +607,9 @@ onPlayerKilledMob = (playerId, mobId, damageDealt, withItem) => {} * @param {string} withItem - The item used to attack */ onMobKilledOtherMob = (attackingMob, killedMob, damageDealt, withItem) => {} - +``` +### onPlayerPotionEffect +```js /** * Called when a player is affected by a new potion effect * @param initiatorId - The id of the player who initiated the potion effect @@ -503,7 +617,9 @@ onMobKilledOtherMob = (attackingMob, killedMob, damageDealt, withItem) => {} * @param effectName - The name of the potion effect */ onPlayerPotionEffect = (initiatorId, targetId, effectName) => {} - +``` +### onPlayerDamagingMeshEntity +```js /** * Called when a player is damaging a mesh entity * @param {PlayerId} playerId - The id of the player damaging the mesh entity @@ -512,14 +628,18 @@ onPlayerPotionEffect = (initiatorId, targetId, effectName) => {} * @param {string} withItem - The item used to attack */ onPlayerDamagingMeshEntity = (playerId, damagedId, damageDealt, withItem) => {} - +``` +### onPlayerBreakMeshEntity +```js /** * Called when a player breaks a mesh entity * @param {PlayerId} playerId - The id of the player breaking the mesh entity * @param {EntityId} entityId - The id of the mesh entity being broken */ onPlayerBreakMeshEntity = (playerId, entityId) => {} - +``` +### onPlayerUsedThrowable +```js /** * Called when a player uses a throwable item * @param {PlayerId} playerId - The id of the player using the throwable item @@ -527,7 +647,9 @@ onPlayerBreakMeshEntity = (playerId, entityId) => {} * @param {EntityId} thrownEntityId - The id of the projectile created by the player */ onPlayerUsedThrowable = (playerId, throwableName, thrownEntityId) => {} - +``` +### onPlayerThrowableHitTerrain +```js /** * Called when a player's thrown projectile hits the terrain * @param {PlayerId} playerId - The id of the player that threw the throwable item @@ -535,7 +657,9 @@ onPlayerUsedThrowable = (playerId, throwableName, thrownEntityId) => {} * @param {EntityId} thrownEntityId - The id of the entity which hit the terrain */ onPlayerThrowableHitTerrain = (playerId, throwableName, thrownEntityId) => {} - +``` +### onTouchscreenActionButton +```js /** * Set client option `touchscreenActionButton` to take effect * Called when a player presses the touchscreen action button @@ -544,7 +668,9 @@ onPlayerThrowableHitTerrain = (playerId, throwableName, thrownEntityId) => {} * @param {boolean} touchDown - Whether the touchscreen action button was pressed or released */ onTouchscreenActionButton = (playerId, touchDown) => {} - +``` +### onTaskClaimed +```js /** * Called when a player claims a task * @param playerId - The id of the player claiming the task @@ -553,7 +679,9 @@ onTouchscreenActionButton = (playerId, touchDown) => {} * @param claimedRewards - The rewards claimed by the player */ onTaskClaimed = (playerId, taskId, isPromoTask, claimedRewards) => {} - +``` +### onChuckLoaded +```js /** * Called when a chunk is first loaded * @param {string} chunkId - The id of the chunk being loaded @@ -561,7 +689,9 @@ onTaskClaimed = (playerId, taskId, isPromoTask, claimedRewards) => {} * @param {boolean} wasPersistedChunk - Whether the chunk was persisted */ onChunkLoaded = (chunkId, chunk, wasPersistedChunk) => {} - +``` +### onPlayerRequestChunk +```js /** * Called when a player requests a chunk * @param {PlayerId} playerId - The id of the player requesting the chunk @@ -571,7 +701,9 @@ onChunkLoaded = (chunkId, chunk, wasPersistedChunk) => {} * @param {string} chunkId - The id of the chunk being requested */ onPlayerRequestChunk = (playerId, chunkX, chunkY, chunkZ, chunkId) => {} - +``` +### onItemDropCreated +```js /** * Called when an item drop is created * @param {EntityId} itemEId - The id of the item drop @@ -582,14 +714,18 @@ onPlayerRequestChunk = (playerId, chunkX, chunkY, chunkZ, chunkId) => {} * @param {number} z - The z coordinate of the item drop */ onItemDropCreated = (itemEId, itemName, itemAmount, x, y, z) => {} - +``` +### onPlayerStartChargingItem +```js /** * Called when a player starts charging an item * @param {PlayerId} playerId - The id of the player charging the item * @param {string} itemName - The name of the item being charged */ onPlayerStartChargingItem = (playerId, itemName) => {} - +``` +### onPlayerFinishChargingItem +```js /** * Called when a player finishes charging an item * @param {PlayerId} playerId - The id of the player charging the item @@ -598,9 +734,11 @@ onPlayerStartChargingItem = (playerId, itemName) => {} * @param {number} duration - The duration of the charge */ onPlayerFinishChargingItem = (playerId, used, itemName, duration) => {} - +``` +### doPeriodicSave +```js /** - * Called every so often. + * Called every 2 mins. * You should save custom db values/s3 objects here. * Persisted items ARE saved on graceful shutdown (e.g. uncaught error, update, etc), * but this helps prevent large data-loss on non-graceful shutdowns. diff --git a/CLIENT_OPTIONS.md b/Client Options.md similarity index 75% rename from CLIENT_OPTIONS.md rename to Client Options.md index a3c0204..3c99973 100644 --- a/CLIENT_OPTIONS.md +++ b/Client Options.md @@ -2,6 +2,7 @@ A player's "Client Options" impact what they are capable of doing in the world. For example you can give them a double jump by setting the player's `airJumpCount` to `1`. Alternatively their health bar can be increased by setting their `maxHealth` to `200`. These API methods allow you to modify the client options: +## API functions for modifying Client Options ```js /** * Modify a client option at runtime and send to the client if it changed @@ -12,7 +13,9 @@ A player's "Client Options" impact what they are capable of doing in the world. * @returns {void} */ setClientOption(playerId, option, value) +``` +```js /** * Returns the current value of a client option * @@ -21,7 +24,9 @@ setClientOption(playerId, option, value) * @returns {ClientOptions[PassedOption]} */ getClientOption(playerId, option) +``` +```js /** * Modify client options at runtime * @@ -30,7 +35,9 @@ getClientOption(playerId, option) * @returns {void} */ setClientOptions(playerId, optionsObj) +``` +```js /** * Sets a client option to its default value. This will be the value stored in your game's defaultClientOptions, otherwise Bloxd's default. * @@ -41,469 +48,580 @@ setClientOptions(playerId, optionsObj) setClientOptionToDefault(playerId, option) ``` +## Options list Here is the full list of available client options: +> [!NOTE] +> This list has been reorganized compared to the Official documentation, but all the Client Options are here. +### Can Options ```js /** * Whether the player can change blocks * @type {boolean} */ canChange = true +``` +```js /** - * Speed multiplier for the player. - * Players are used to the default bloxd movement behaviour and speed, - * and may be put off from your game if different muscle memory is required. - * We suggest applying speed or slowness effects instead, using api.applyEffect. - * @type {number} + * Whether to allow the player to craft items + * useFullInventory must be true for this to work + * @type {boolean} */ -speedMultiplier = 1 +canCraft = true +``` +```js /** - * Speed multiplier for the player when crouching. - * Players are used to the default bloxd movement behaviour and speed, - * and may be put off from your game if different muscle memory is required. - * We suggest applying speed or slowness effects instead, using api.applyEffect. - * @type {number} + * Whether to allow the player to pick up items + * @type {boolean} */ -crouchingSpeed = 2 +canPickUpItems = true +``` +```js /** - * Amount of jump power the player has - * @type {number} + * Whether the player can customise their character + * @type {boolean} */ -jumpAmount = 8 +canCustomiseChar = true +``` +```js /** - * Amount of air jumps the player has - * @type {number} + * Whether the player can use the zoom key + * @type {boolean} */ -airJumpCount = 0 +canUseZoomKey = true +``` +```js /** - * Maximum multiplier for jump height when bunnyhopping - * @type {number} + * Whether the player can use the alt action key (right click on PC) + * @type {boolean} */ -bunnyhopMaxMultiplier = 1.3 +canAltAction = true +``` +```js /** - * The music track to play in the background - * @type {Song} + * Whether the player can see name tags through walls + * @type {boolean} */ -music = null +canSeeNametagsThroughWalls = true +``` +```js /** - * Volume level for the music - * @type {number} + * Whether the player can pick blocks (middle mouse click on PC), ignored if creative is false + * @type {boolean} */ -musicVolumeLevel = 0.6 +canPickBlocks = true +``` +### Can't Options +```js /** - * Not recommended to use anything other than "default" as client FPS can drop while loading the skybox - * @type { string | { type: "earth"; inclination?: number; turbidity?: number; infiniteDistance?: number; luminance?: number; yCameraOffset?: number; azimuth?: number; vertexTint?: [number, number, number]; } } + * Error message for when the player fails to change a block + * @type {string | CustomTextStyling} */ -skyBox = "default" +cantChangeError = "You cannot modify this block" +``` +```js /** - * Whether to show the player in unloaded chunks - * @type {boolean} + * Error message for when the player fails to break a block + * @type {string | CustomTextStyling} */ -showPlayersInUnloadedChunks = false +cantBreakError = null +``` + +```js +/** + * Error message for when the player fails to place a block + * @type {string | CustomTextStyling} + */ +cantBuildError = null +``` +### Use Options +```js /** * Whether to allow the player to use the inventory * Disabling this will also disable the hotbar * @type {boolean} */ useInventory = true +``` +```js /** * For now just enables the UI of the full inventory * @type {boolean} */ useFullInventory = true +``` +### Show Options +```js /** - * Whether to allow the player to craft items - * useFullInventory must be true for this to work + * Whether to show the player in unloaded chunks * @type {boolean} */ -canCraft = true +showPlayersInUnloadedChunks = false +``` +```js /** - * Whether to allow the player to pick up items + * Whether to show the killfeed * @type {boolean} */ -canPickUpItems = true +showKillfeed = true +``` +```js /** - * Default camera zoom level for the player - * @type {number} + * Whether to show basic movement controls + * @type {boolean} */ -playerZoom = 0 +showBasicMovementControls = true +``` +```js /** - * Distance to zoom the camera out to + * If set, clients will only be able to see the closest x players (good for client perf in games with many players) * @type {number} */ -zoomOutDistance = 3 +numClosestPlayersVisible = null +``` +```js /** - * Maximum camera zoom level for the player + * Whether to show the progress bar + * @type {boolean} + */ +showProgressBar = false +``` + +### Speed Options +```js +/** + * Speed multiplier for the player. + * Players are used to the default bloxd movement behaviour and speed, + * and may be put off from your game if different muscle memory is required. + * We suggest applying speed or slowness effects instead, using api.applyEffect. * @type {number} */ -maxPlayerZoom = 15 +speedMultiplier = 1 +``` +```js /** - * Columns of the lobby leaderboard - * @type {LobbyLeaderboardInfo} + * Speed multiplier for the player when crouching. + * Players are used to the default bloxd movement behaviour and speed, + * and may be put off from your game if different muscle memory is required. + * We suggest applying speed or slowness effects instead, using api.applyEffect. + * @type {number} */ -lobbyLeaderboardInfo = { - pfp: { - sortPriority: 1, - }, - name: { - displayName: "Name", - sortPriority: 0, - }, - } +crouchingSpeed = 2 +``` +```js /** - * Whether the player can customise their character - * @type {boolean} + * Multiplier for the flying speed in creative mode + * @type {number} */ -canCustomiseChar = true +flySpeedMultiplier = 1.5 +``` +### Jump Options +```js /** - * The default block the player can change blocks to, used if canChange is true but useInventory is false - * @type {string} + * Amount of jump power the player has + * @type {number} */ -defaultBlock = "Block of Gold" +jumpAmount = 8 +``` +```js /** - * Error message for when the player fails to change a block - * @type {string | CustomTextStyling} + * Amount of air jumps the player has + * @type {number} */ -cantChangeError = "You cannot modify this block" +airJumpCount = 0 +``` +### Bunnyhop Options +```js /** - * Error message for when the player fails to break a block - * @type {string | CustomTextStyling} + * Maximum multiplier for jump height when bunnyhopping + * @type {number} */ -cantBreakError = null +bunnyhopMaxMultiplier = 1.3 +``` +### Music Options +```js /** - * Error message for when the player fails to place a block - * @type {string | CustomTextStyling} + * The music track to play in the background + * @type {Song} */ -cantBuildError = null +music = null /** - * The contents of the action button. Supports custom text styling. onTouchscreenActionButton will be called when button pressed. - * @type {string | CustomTextStyling} + * Volume level for the music + * @type {number} */ -touchscreenActionButton = null +musicVolumeLevel = 0.6 +``` +### Camera Options +```js /** - * Whether a player can place fluid when canChange is false - * @type {boolean} + * RGBA array [r, g, b, a] for camera screen tint effect. Values fall between 0 and 1. + * @type {[number, number, number, number]} */ -strictFluidBuckets = true +cameraTint = null +``` +```js /** - * Whether the player can use the zoom key - * @type {boolean} + * Default camera zoom level for the player + * @type {number} */ -canUseZoomKey = true +playerZoom = 0 +``` +```js /** - * Whether the player can use the alt action key (right click on PC) - * @type {boolean} + * Distance to zoom the camera out to + * @type {number} */ -canAltAction = true +zoomOutDistance = 3 +``` +```js /** - * Whether the player can see name tags through walls - * @type {boolean} + * Maximum camera zoom level for the player + * @type {number} */ -canSeeNametagsThroughWalls = true +maxPlayerZoom = 15 +``` +### Leaderboard Options +```js /** - * Whether to show basic movement controls - * @type {boolean} + * Columns of the lobby leaderboard + * @type {LobbyLeaderboardInfo} */ -showBasicMovementControls = true +lobbyLeaderboardInfo = { + pfp: { + sortPriority: 1, + }, + name: { + displayName: "Name", + sortPriority: 0, + }, + } +``` +### Text Options +```js /** * Large text to display in the middle of the screen * @type {string | CustomTextStyling} */ middleTextUpper = "" +``` +```js /** * Small text to display in the middle of the screen * @type {string | CustomTextStyling} */ middleTextLower = "" +``` +```js /** * Text to display in the right info box * @type {string | CustomTextStyling} */ RightInfoText = "" +``` +```js /** - * If set, clients will only be able to see the closest x players (good for client perf in games with many players) - * @type {number} - */ -numClosestPlayersVisible = null - -/** - * Whether to show the progress bar - * @type {boolean} - */ -showProgressBar = false - -/** - * Whether to show the killfeed - * @type {boolean} - */ -showKillfeed = true - -/** - * Allows player to select a channel that is passed as argument to onPlayerChat. See SharedTypes.ts for expected format - * @type { { channelName: string; elementContent: string | CustomTextStyling; elementBgColor: string; }[] } - */ -chatChannels = null - -/** - * Whether the player is in creative mode - * @type {boolean} - */ -creative = false - -/** - * Multiplier for the flying speed in creative mode - * @type {number} - */ -flySpeedMultiplier = 1.5 - -/** - * Whether the player can pick blocks (middle mouse click on PC), ignored if creative is false - * @type {boolean} - */ -canPickBlocks = true - -/** - * The target the compass will point towards - * @type {string | number | number[]} - */ -compassTarget = [0, 0, 0] - -/** - * Multiplier for the time to break any block - * @type {number} + * The contents of the action button. Supports custom text styling. onTouchscreenActionButton will be called when button pressed. + * @type {string | CustomTextStyling} */ -ttbMultiplier = 1 +touchscreenActionButton = null +``` +### Inventory Options +```js /** * Whether the player can move items in their inventory, only applicable if useInventory is true * @type {boolean} */ inventoryItemsMoveable = true +``` +### Health and Shield Options +```js /** * Whether the player is invincible * @type {boolean} */ invincible = false +``` +```js /** * Maximum shield the player can have * @type {number} */ maxShield = 100 +``` +```js /** * Shield upon joining or respawning * @type {number} */ initialShield = 0 +``` +```js /** * Maximum health the player can have * @type {number} */ maxHealth = 100 +``` +```js /** * Health upon joining or respawning. Can be null for the player to not have health * @type {number} */ initialHealth = 100 +``` +```js /** * Fraction of max health that regens each regen tick * @type {number} */ healthRegenAmount = 0.05 +``` +```js /** * How often health regen is ticked * @type {number} */ healthRegenInterval = 4000 +``` +```js /** * How long after a player receives damage to start regen again * @type {number} */ healthRegenStartAfter = 5000 +``` +### Effect Options +```js /** * Duration of the +damage effect from plum * @type {number} */ effectDamageDuration = 8000 +``` +```js /** * Duration of +speed effect from cracked coconut * @type {number} */ effectSpeedDuration = 8000 +``` +```js /** * Duration of +damage reduction effect from pear * @type {number} */ effectDamageReductionDuration = 13000 +``` +```js /** * Duration of +health regen effect from cherry * @type {number} */ effectHealthRegenDuration = 5000 +``` +```js /** * Duration of potion effects * @type {number} */ potionEffectDuration = 12000 +``` +```js /** * Duration of splash potion effects * @type {number} */ splashPotionEffectDuration = 8000 +``` +```js /** * Duration of arrow potion effects * @type {number} */ arrowPotionEffectDuration = 6000 +``` +### Respawn Options +```js /** * After dying the player can respawn after this many seconds * @type {number} */ secsToRespawn = 3 +``` +```js /** * When player is dead, also show a play again button to matchmake player into a new lobby. Mostly useful for sessionBased games * @type {boolean} */ usePlayAgainButton = false +``` +```js /** * If true, player will respawn automatically after secsToRespawn seconds * @type {boolean} */ autoRespawn = false +``` +```js /** * Text to show on respawn button. (E.g. "Spectate") * @type {string} */ respawnButtonText = "general:respawn" +``` +```js /** * Duration before a killstreak expires. (defaults to never expiring) * @type {number} */ killstreakDuration = 200000000 +``` +### Damage Options +```js /** * Damage multiplier for all types of damage * @type {number} */ dealingDamageMultiplier = 1 +``` +```js /** * Damage multiplier for when the player hits a head. Only applies to guns * @type {number} */ dealingDamageHeadMultiplier = 1.75 +``` +```js /** * Damage multiplier for when the player hits a leg. Only applies to guns * @type {number} */ dealingDamageLegMultiplier = 1 +``` +```js /** * Mult for when the player hits neither a leg or a head. Only applies to guns * @type {number} */ dealingDamageDefaultMultiplier = 1 +``` +```js /** * Damage multiplier for all types of incoming damage * @type {number} */ receivingDamageMultiplier = 1 +``` + +```js +/** + * Whether to deal damage to the player when they fall + * @type {boolean} + */ +fallDamage = false +``` +### Kart Options +```js /** * Speed multiplier for karts * @type {number} */ kartTargetSpeedMult = 1 +``` +```js /** * Speed multiplier for speed boost effects in karts * @type {number} */ kartSpeedEffectMult = 1 +``` +```js /** * Kart gliding height * @type {number} */ kartGliderTargetHeight = 25 +``` +```js /** * Kart ground height * @type {number} */ kartGroundHeight = 4 +``` +```js /** * How much to step towards target speed each movement tick (acceleration) * @type {number} */ kartApproachMaxSpeedScalar = 1 +``` -/** - * Scale factor to use for dropped item meshes - * @type {number} - */ -droppedItemScale = 1 - -/** - * Amount that player camera is affected by movement based fov - * @type {number} - */ -movementBasedFovScale = 1 - +### Friction Options +```js /** * Amount of friction to apply to airborne players. * Only change if absolutely necessary i.e. Rocket Obby uses 0. @@ -513,7 +631,9 @@ movementBasedFovScale = 1 * @type {number} */ airFrictionScale = 1 +``` +```js /** * Amount of friction to apply to grounded players. * Only change if absolutely necessary i.e. Rocket Obby uses 3. @@ -523,7 +643,9 @@ airFrictionScale = 1 * @type {number} */ groundFrictionScale = 1 +``` +```js /** * Amount of acceleration to apply to airborne players. * Only change if absolutely necessary i.e. Rocket Obby uses 0.25. @@ -533,7 +655,9 @@ groundFrictionScale = 1 * @type {number} */ airAccScale = 1 +``` +```js /** * Whether to allow the player to strafe and conserve momentum while airborne. * Only change if absolutely necessary i.e. only Rocket Obby uses true. @@ -543,29 +667,181 @@ airAccScale = 1 * @type {boolean} */ airMomentumConservation = false +``` -/** - * Whether to deal damage to the player when they fall - * @type {boolean} - */ -fallDamage = false - +### canEditCode Options +```js /** * Normally only the world owner can edit code blocks and lobby code, and you can use this option to override that. * Remember as owner of the world you are responsible for any code anyone writes that could break Bloxd rules. * @type {boolean} */ canEditCode = false +``` +### Aura Options +```js /** * How much Aura XP is required per level. * @type {number} */ auraPerLevel = 100 +``` +```js /** * The maximum Aura Level attainable - Set to 0 to disable Aura XP * @type {number} */ maxAuraLevel = 0 ``` + +### Misc +```js +/** + * Allows player to select a channel that is passed as argument to onPlayerChat. See SharedTypes.ts for expected format + * @type { { channelName: string; elementContent: string | CustomTextStyling; elementBgColor: string; }[] } + */ +chatChannels = null +``` + +```js +/** + * Scale factor to use for dropped item meshes + * @type {number} + */ +droppedItemScale = 1 +``` + +```js +/** + * Amount that player camera is affected by movement based fov + * @type {number} + */ +movementBasedFovScale = 1 +``` + +```js +/** + * Whether the player is in creative mode + * @type {boolean} + */ +creative = false +``` + +```js +/** + * The target the compass will point towards + * @type {string | number | number[]} + */ +compassTarget = [0, 0, 0] +``` + +```js +/** + * Not recommended to use anything other than "default" as client FPS can drop while loading the skybox + * @type {string | EarthSkyBox} + */ +skyBox = "default" +``` + +```js +/** + * The default block the player can change blocks to, used if canChange is true but useInventory is false + * @type {string} + */ +defaultBlock = "Block of Gold" +``` + +```js +/** + * Multiplier for the time to break any block + * @type {number} + */ +ttbMultiplier = 1 +``` + +```js +/** + * Whether a player can place fluid when canChange is false + * @type {boolean} + */ +strictFluidBuckets = true +``` + +## Extra Information +```js +type CustomTextStyling = (string | EntityName | TranslatedText | StyledIcon | StyledText)[] +``` + +```js +type IngameIconName = "Damage" | "Damage Reduction" | "Speed" | "VoidJump" | "Fist" | "Frozen" | "Hydrated" | "Invisible" | "Jump Boost" | "Poisoned" | "Slowness" | "Weakness" | "Health Regen" | "Haste" | "Double Jump" | "Heat Resistance" | "Gliding" | "Boating" | "Obsidian Boating" | "Riding" | "Bunny Hop" | "FallDamage" | "Feather Falling" | "Thief" | "Rested Damage" | "Rested Haste" | "Rested Speed" | "Rested Farming Yield" | "Rested Aura" | "Damage Enchantment" | "Critical Damage Enchantment" | "Attack Speed Enchantment" | "Protection Enchantment" | "Health Enchantment" | "Health Regen Enchantment" | "Stomp Damage Enchantment" | "Knockback Resist Enchantment" | "Arrow Speed Enchantment" | "Arrow Damage Enchantment" | "Quick Charge Enchantment" | "Break Speed Enchantment" | "Momentum Enchantment" | "Mining Yield Enchantment" | "Farming Yield Enchantment" | "Mining Aura Enchantment" | "Digging Aura Enchantment" | "Lumber Aura Enchantment" | "Farming Aura Enchantment" | "Vertical Knockback Enchantment" | "Horizontal Knockback Enchantment" | "Health" | "HealthShield" +``` + +```js +type StyledIcon = { + icon: string + style?: { + color?: string + colour?: string + fontSize?: string + opacity?: number + } +} +``` + +```js +type StyledText = { + str: string | EntityName | TranslatedText + style?: { + color?: string + colour?: string + fontWeight?: string + fontSize?: string + fontStyle?: string + opacity?: number + } + clickableUrl?: string +} +``` + +```js +type TranslatedText = { + translationKey: string + params?: Record +} +``` + +```js +type EarthSkyBox = { + type: "earth" + inclination?: number + turbidity?: number + infiniteDistance?: number + luminance?: number + yCameraOffset?: number + azimuth?: number + // Not part of sky model by default; heavily tint to a vertex color + vertexTint?: [number, number, number] +} +``` + +```js +enum WalkThroughType { + CANT_WALK_THROUGH = 0, + CAN_WALK_THROUGH = 1, + DEFAULT_WALK_THROUGH = 2, +} +``` + +```js +SkyBoxOptions = [ + default, + earth, + interstellar, + space_lightblue, + space_blue, + space_red, + underwater +] +``` diff --git a/ENTITY_SETTINGS.md b/Entity Settings.md similarity index 79% rename from ENTITY_SETTINGS.md rename to Entity Settings.md index 427966c..3d7b9ae 100644 --- a/ENTITY_SETTINGS.md +++ b/Entity Settings.md @@ -16,7 +16,9 @@ These API methods allow you to modify entity settings: * @returns {void} */ setTargetedPlayerSettingForEveryone(targetedPlayerId, settingName, settingValue, includeNewJoiners) +``` +```js /** * Set a player's other-entity setting for every player in the game. * includeNewJoiners=true means that the player will have the setting applied to new joiners. @@ -28,7 +30,9 @@ setTargetedPlayerSettingForEveryone(targetedPlayerId, settingName, settingValue, * @returns {void} */ setEveryoneSettingForPlayer(playerId, settingName, settingValue, includeNewJoiners) +``` +```js /** * Set a player's other-entity setting for a specific entity. * @@ -39,7 +43,9 @@ setEveryoneSettingForPlayer(playerId, settingName, settingValue, includeNewJoine * @returns {void} */ setOtherEntitySetting(relevantPlayerId, targetedEntityId, settingName, settingValue) +``` +```js /** * Set many of a player's other-entity settings for a specific entity. * @@ -49,7 +55,9 @@ setOtherEntitySetting(relevantPlayerId, targetedEntityId, settingName, settingVa * @returns {void} */ setOtherEntitySettings(relevantPlayerId, targetedEntityId, settingsObject) +``` +```js /** * Get the value of a player's other-entity setting for a specific entity. * @@ -62,6 +70,8 @@ getOtherEntitySetting(relevantPlayerId, targetedEntityId, settingName) ``` Here is the full list of available entity settings: +> [!TIP] +> If you are having issues with Bloxd.io not reconizing these settings, then try placing them in quotes `''`. Example: ``` api.setEveryoneSettingForPlayer(myId, 'canAttack', false, true)```. Sometimes you may also need to do the same for the answer if it's not a `boolean` value. ```js /** @@ -71,49 +81,65 @@ Here is the full list of available entity settings: * @type {number} */ opacity = 1 +``` +```js /** * Whether the entity can attack other entities, ignored if the targeted entity is invincible * @type {boolean} */ canAttack = false +``` +```js /** * Whether the entity can be seen by the relevant player * @type {boolean} */ canSee = true +``` +```js /** * Whether you can see damage amounts when shooting the entity * @type {boolean} */ showDamageAmounts = true +``` +```js /** * The colour of kills in the killfeed. Defaults to blue for themselves and red for everyone else. * @type {string} */ killfeedColour = "" +``` +```js /** - * Scaling of mesh nodes, see api.scalePlayerMeshNodes + * Scaling of mesh nodes, see bottom of this page for EntityMeshScalingMap * @type {EntityMeshScalingMap} */ meshScaling = {} +``` +```js /** * The colour of the player in the lobby leaderboard. * @type {string} */ colorInLobbyLeaderboard = "" +``` +```js /** * The values of the leaderboard. * @type {LobbyLeaderboardValues} */ lobbyLeaderboardValues = {} +``` +```js /** * The name tag info of the player: * { @@ -125,16 +151,42 @@ lobbyLeaderboardValues = {} * @type {NameTagInfo} */ nameTagInfo = null +``` +```js /** * Whether the player has a priority name tag * @type {boolean} */ hasPriorityNametag = false +``` +```js /** * The colour of the player's name. * @type {string} */ nameColour = "default" ``` + +## Extra Information +```js +type EntityMeshScalingMap = { [key in "TorsoNode" | "HeadMesh" | "ArmRightMesh" | "ArmLeftMesh" | "LegLeftMesh" | "LegRightMesh"]?: number[] } +``` + +```js +type EntityName = { + entityName: string + style?: { + color?: string + colour?: string + } +} +``` + +```js +type MeshTypes = [null, BloxdBlock, ParticleEmitter] +``` +```js +type BoxMeshTypes = [Person, Box, BlockBlock, ParticleEmitter] +``` diff --git a/Icons.md b/Icons.md new file mode 100644 index 0000000..25de76b --- /dev/null +++ b/Icons.md @@ -0,0 +1,196 @@ +# All font Awesome Icons supported by Bloxd.io +> [!NOTE] +> That this list only includes icons that Bloxd.io supports, this is not ment to be a list of all icons in font Awesome. +## Credits +Thank you to: WBSTP & FrostyCaveman for creating and posting this. +### A +``` +angle-double-up +angle-down +angle-up +angles-up +arrow-up +arrows-rotate +award +``` +### B +``` +backpack +bars +block-question +bolt +``` +### C +``` +caret-up +cart-shopping +check +chess-rook +circle-info +clock-rotate-left +cog +coins +comment-dots +commenting +compress +cookie +copy +crosshairs +crown +cube +cubes +``` +### D +``` +dice +dizzy +door-closed +door-open +download +``` +### E +``` +ellipsis-h +ellipsis +exclamation +expand +eye +eye-slash +``` +### F +``` +face-dizzy +feather-alt +feather-pointed +film +fire +fist-raised +flag +folder-image +``` +### G +``` +gauge-high +gear +gem +globe +``` +### H +``` +hammer +hand-fist +hand-holding-medical +hand-point-left +hat-santa +heart +heart-music-camera-bolt +history +``` +### I +``` +icons +info-circle +``` +### J +``` +joystick +``` +### L +``` +lightbulb +list-squares +list +location-check +location-xmark +lock +lock-open +``` +### M +``` +magnifying-glass +map-marker-check +map-marker-times +map-marker-xmark +minus-square +music +``` +### N +``` +navicon +``` +### P +``` +palette +pen +pen-field +person-falling-burst +person-military-pointing +planet-ringed +power-off +``` +### R +``` +redo-alt +refresh +right-from-bracket +rotate-forward +rotate-right +``` +### S +``` +search +shield +shield-alt +shield-blank +shield-halved +shirt +shopping-cart +sign-out-alt +snowflake +square-minus +star +sync +``` +### T +``` +t-shirt +tachometer-alt-fast +tachometer-alt +terminal +trophy +tshirt +``` +### U +``` +up-from-bracket +user-friends +user-group +user-group-crown +user-plus +user-slash +user-unlock +users-crown +``` +### V +``` +video-camera +video +volume-down +volume-low +``` +### W +``` +wrench +``` +### X +``` +x +``` +### Y +``` +youtube +``` +### Z +``` +zap +``` \ No newline at end of file diff --git a/Items.md b/Items.md new file mode 100644 index 0000000..a2239e0 --- /dev/null +++ b/Items.md @@ -0,0 +1,1003 @@ +# All Items in Bloxd.io +## Credits +Thanks to (Ocelote) Solve 3+3/3*3/3-3/3/3 for creating and posting this. +## Tools +### Pickaxes +``` +Wood Pickaxe +Stone Pickaxe +Iron Pickaxe +Gold Pickaxe +Diamond Pickaxe +Moonstone Pickaxe +Golem Pickaxe +``` +### Axes +``` +Wood Axe +Stone Axe +Iron Axe +Gold Axe +Diamond Axe +Artisan Axe +Moonstone Axe +``` +### Spades +``` +Wood Spade +Stone Spade +Iron Spade +Gold Spade +Diamond Spade +``` +### Hoes +``` +Wood Hoe +Stone Hoe +Iron Hoe +Gold Hoe +Diamond Hoe +``` +### Shears +``` +Shears +Artisan Shears +``` +## Weapons +### Swords +``` +Wood Sword +Stone Sword +Iron Sword +Gold Sword +Diamond Sword +Knight Sword +``` +### Bows +#### Wood +``` +Wood Bow +Wood Bow|meta|charging2 +Wood Bow|meta|charging3 +Wood Bow|meta|charging4 +``` +#### Stone +``` +Stone Bow +Stone Bow|meta|charging2 +Stone Bow|meta|charging3 +Stone Bow|meta|charging4 +``` +#### Iron +``` +Iron Bow +Iron Bow|meta|charging2 +Iron Bow|meta|charging3 +Iron Bow|meta|charging4 +``` +#### Gold +``` +Gold Bow +Gold Bow|meta|charging2 +Gold Bow|meta|charging3 +Gold Bow|meta|charging4 +``` +#### Diamond +``` +Diamond Bow +Diamond Bow|meta|charging2 +Diamond Bow|meta|charging3 +Diamond Bow|meta|charging4 +``` +### CrossBows +#### Wood +``` +Wood Crossbow +Wood Crossbow|meta|charging2 +Wood Crossbow|meta|charging3 +Wood Crossbow|meta|charging4 +Wood Crossbow Charged +``` +#### Stone +``` +Stone Crossbow +Stone Crossbow|meta|charging2 +Stone Crossbow|meta|charging3 +Stone Crossbow|meta|charging4 +Stone Crossbow Charged +``` +#### Iron +``` +Iron Crossbow +Iron Crossbow|meta|charging2 +Iron Crossbow|meta|charging3 +Iron Crossbow|meta|charging4 +Iron Crossbow Charged +``` +#### Gold +``` +Gold Crossbow +Gold Crossbow|meta|charging2 +Gold Crossbow|meta|charging3 +Gold Crossbow|meta|charging4 +Gold Crossbow Charged +``` +#### Diamond +``` +Diamond Crossbow +Diamond Crossbow|meta|charging2 +Diamond Crossbow|meta|charging3 +Diamond Crossbow|meta|charging4 +Diamond Crossbow Charged +``` +### Guns +``` +AK-47 +M16 +MP40 +TAR-21 +M1911 +One Shot Pistol +Double Barrel +AWP +Minigun +``` +## Armor +### Helmets +``` +Wood Helmet +Iron Helmet +Gold Helmet +Diamond Helmet +``` +### Chestplates +``` +Wood Chestplate +Iron Chestplate +Gold Chestplate +Diamond Chestplate +Fur Chestplate +``` +### Guantlets +``` +Wood Gauntlets +Iron Gauntlets +Gold Gauntlets +Diamond Gauntlets +``` +### Leggings +``` +Wood Leggings +Iron Leggings +Gold Leggings +Diamond Leggings +``` +### Boots +``` +Wood Boots +Iron Boots +Gold Boots +Diamond Boots +Spiked Boots +``` +### Colored Armor +#### White +``` +White Wood Helmet +White Wood Chestplate +White Wood Leggings +White Wood Boots +White Wood Gauntlets +``` +#### Orange +``` +Orange Wood Helmet +Orange Wood Chestplate +Orange Wood Leggings +Orange Wood Boots +Orange Wood Gauntlets +``` +#### Magenta +``` +Magenta Wood Helmet +Magenta Wood Chestplate +Magenta Wood Leggings +Magenta Wood Boots +Magenta Wood Gauntlets +``` +#### Light Blue +``` +Light Blue Wood Helmet +Light Blue Wood Chestplate +Light Blue Wood Leggings +Light Blue Wood Boots +Light Blue Wood Gauntlets +``` +#### Yellow +``` +Yellow Wood Helmet +Yellow Wood Chestplate +Yellow Wood Leggings +Yellow Wood Boots +Yellow Wood Gauntlets +``` +#### Lime +``` +Lime Wood Helmet +Lime Wood Chestplate +Lime Wood Leggings +Lime Wood Boots +Lime Wood Gauntlets +``` +#### Pink +``` +Pink Wood Helmet +Pink Wood Chestplate +Pink Wood Leggings +Pink Wood Boots +Pink Wood Gauntlets +``` +#### Gray +``` +Gray Wood Helmet +Gray Wood Chestplate +Gray Wood Leggings +Gray Wood Boots +Gray Wood Gauntlets +``` +#### Light Gray +``` +Light Gray Wood Helmet +Light Gray Wood Chestplate +Light Gray Wood Leggings +Light Gray Wood Boots +Light Gray Wood Gauntlets +``` +#### Cyan +``` +Cyan Wood Helmet +Cyan Wood Chestplate +Cyan Wood Leggings +Cyan Wood Boots +Cyan Wood Gauntlets +``` +#### Purple +``` +Purple Wood Helmet +Purple Wood Chestplate +Purple Wood Leggings +Purple Wood Boots +Purple Wood Gauntlets +``` +#### Blue +``` +Blue Wood Helmet +Blue Wood Chestplate +Blue Wood Leggings +Blue Wood Boots +Blue Wood Gauntlets +``` +#### Brown +``` +Brown Wood Helmet +Brown Wood Chestplate +Brown Wood Leggings +Brown Wood Boots +Brown Wood Gauntlets +``` +#### Green +``` +Green Wood Helmet +Green Wood Chestplate +Green Wood Leggings +Green Wood Boots +Green Wood Gauntlets +``` +#### Red +``` +Red Wood Helmet +Red Wood Chestplate +Red Wood Leggings +Red Wood Boots +Red Wood Gauntlets +``` +#### Black +``` +Black Wood Helmet +Black Wood Chestplate +Black Wood Leggings +Black Wood Boots +Black Wood Gauntlets +``` +## Stick +``` +Stick +``` +## Metals/Ores +### Coal +``` +Coal +``` +### Iron +``` +Raw Iron +Iron Bar +Iron Fragment +``` +### Gold +``` +Raw Gold +Gold Bar +Gold Fragment +``` +### Diamond +``` +Diamond +Diamond Fragment +``` +### Moonstone +``` +Moonstone +Moonstone Fragment +``` +## Bowls +``` +Bowl +``` +## Buckets +``` +Bucket +Water Bucket +Lava Bucket +``` +## Boats +``` +Boat +INTERNAL_MESH_Boat +Obsidian Boat +INTERNAL_MESH_Obsidian Boat +``` +## Karts +``` +INTERNAL_MESH_Kart +``` +## Gliders +``` +Wood Hang Glider +INTERNAL_MESH_Wood Hang Glider +Iron Hang Glider +INTERNAL_MESH_Iron Hang Glider +Gold Hang Glider +INTERNAL_MESH_Gold Hang Glider +Diamond Hang Glider +INTERNAL_MESH_Diamond Hang Glider +``` +## Cotton +``` +Cotton +``` +## Throwables +### Balls +``` +Ball +Reinforced Ball +Snowball +``` +### Pebbles +``` +Pebble +Reinforced Pebble +``` +### Orbs +#### Moonstone +> [!NOTE] +> Moonstone Orbs teleport you to where they land +``` +Moonstone Orb +``` +#### Mob Spawn +##### Passive +``` +Pig Spawn Orb +Cow Spawn Orb +Sheep Spawn Orb +Deer Spawn Orb +``` +##### Neutral +``` +Wolf Spawn Orb +Wildcat Spawn Orb +``` +##### Hostile +``` +Bear Spawn Orb +Stag Spawn Orb +Gold Watermelon Stag Spawn Orb +Gorilla Spawn Orb +Cave Golem Spawn Orb +Draugr Zombie Spawn Orb +Draugr Skeleton Spawn Orb +Frost Golem Spawn Orb +Frost Zombie Spawn Orb +Frost Skeleton Spawn Orb +Draugr Knight Spawn Orb +``` +### Arrows +``` +Arrow +``` +### Explosives +``` +Fireball +Bouncy Bomb +RPG +Obby RPG +Super RPG +Grenade Launcher +Iceball +Toxin Ball +``` +### Fruit +> [!NOTE] +> Unlike most food you throw Mangos, they give knockback and damage to the player that gets hit by them. +``` +Mango +``` + +## Food +``` +Bread +Bowl of Rice +Partially Bowl of Cranberries +Half Full Bowl of Cranberries +Nearly Full Bowl of Cranberries +Bowl of Cranberries +Mushroom Soup +Apple +Plum +Coconut +Cracked Coconut +Pear +Cherry +Banana +Watermelon Slice +Gold Watermelon Slice +Melon Slice +Gold Melon Slice +Pumpkin Pie +Corn +Cornbread +Chili Pepper +``` +### Meats +#### Raw +``` +Raw Porkchop +Raw Beef +Raw Mutton +Raw Venison +``` +#### Cooked +``` +Cooked Porkchop +Steak +Cooked Mutton +Cooked Venison +``` +#### Rotten +``` +Rotten Flesh +``` +## Mob Parts +### Bones +``` +Bone +Bone Meal +``` +### Fur +``` +Fur +``` +### Organs +``` +Golem Eye +Knight Heart +``` +## Writeables +``` +Name Tag +Book +``` +## Bottles/Potions +### Bottles +``` +Empty Bottle +Water Bottle +``` +### Potions +#### Slowness +``` +Slowness Potion +Slowness Potion II +Splash Slowness Potion +Splash Slowness Potion II +Arrow of Slowness +``` +#### Poison +``` +Poison Potion +Poison Potion II +Splash Poison Potion +Splash Poison Potion II +Arrow of Poison +``` +#### Weakness +``` +Weakness Potion +Weakness Potion II +Splash Weakness Potion +Splash Weakness Potion II +Arrow of Weakness +``` +#### Instant Damage +``` +Instant Damage Potion +Instant Damage Potion II +Splash Instant Damage Potion +Splash Instant Damage Potion II +Arrow of Instant Damage +``` +#### Milk +``` +Milk Potion +Splash Milk Potion +Arrow of Milk +``` +#### Speed +``` +Speed Potion +Speed Potion II +Splash Speed Potion +Splash Speed Potion II +Arrow of Speed +``` +#### Defense +``` +Defense Potion +Defense Potion II +Splash Defense Potion +Splash Defense Potion II +Arrow of Defense +``` +#### Strength +``` +Strength Potion +Strength Potion II +Splash Strength Potion +Splash Strength Potion II +Arrow of Strength +``` +#### Invisibility +``` +Invisibility Potion +Splash Invisibility Potion +Arrow of Invisibility +``` +#### Jump +``` +Jump Potion +Jump Potion II +Splash Jump Potion +Splash Jump Potion II +Arrow of Jumping +``` +#### Knockback +``` +Knockback Potion +Splash Knockback Potion +Splash Knockback Potion II +Arrow of Knockback +``` +#### Regeneration +``` +Regeneration Potion +Regeneration Potion II +Splash Regeneration Potion +Splash Regeneration Potion II +Arrow of Regeneration +``` +#### Instant Healing +``` +Instant Healing Potion +Instant Healing Potion II +Splash Instant Healing Potion +Splash Instant Healing Potion II +Arrow of Instant Healing +``` +#### Haste +``` +Haste Potion +Haste Potion II +Splash Haste Potion +Splash Haste Potion II +Arrow of Haste +``` +#### Shield +``` +Shield Potion +Shield Potion II +Splash Shield Potion +Splash Shield Potion II +Arrow of Shield +``` +#### Double Jump +``` +Double Jump Potion +Splash Double Jump Potion +Arrow of Double Jump +``` +#### Heat Resistance +``` +Heat Resistance Potion +Splash Heat Resistance Potion +Arrow of Heat Resistance +``` +#### Chaos +``` +Chaos Potion +``` +## Coins +``` +Gold Coin +``` +## Special Items +``` +Updraft +Snowdash +Floor Creator +Moonstone Remote Explosive +Moonstone Remote +Ice Bridge +``` +### Compass +``` +Compass|meta|dir1 +Compass|meta|dir2 +Compass|meta|dir3 +Compass|meta|dir4 +Compass|meta|dir5 +Compass|meta|dir6 +Compass|meta|dir7 +Compass|meta|dir8 +Compass|meta|dir9 +Compass|meta|dir10 +Compass|meta|dir11 +Compass|meta|dir12 +``` +### Balloons +#### Regular +``` +Yellow Balloon +White Balloon +Red Balloon +Purple Balloon +Pink Balloon +Orange Balloon +Magenta Balloon +Lime Balloon +Light Gray Balloon +Light Blue Balloon +Green Balloon +Gray Balloon +Cyan Balloon +Brown Balloon +Blue Balloon +Black Balloon +``` +#### Internal Mesh +``` +INTERNAL_MESH_Yellow Balloon +INTERNAL_MESH_White Balloon +INTERNAL_MESH_Red Balloon +INTERNAL_MESH_Purple Balloon +INTERNAL_MESH_Pink Balloon +INTERNAL_MESH_Orange Balloon +INTERNAL_MESH_Magenta Balloon +INTERNAL_MESH_Lime Balloon +INTERNAL_MESH_Light Gray Balloon +INTERNAL_MESH_Light Blue Balloon +INTERNAL_MESH_Green Balloon +INTERNAL_MESH_Gray Balloon +INTERNAL_MESH_Cyan Balloon +INTERNAL_MESH_Brown Balloon +INTERNAL_MESH_Blue Balloon +INTERNAL_MESH_Black Balloon +``` +### Popup Towers +> [!NOTE] +> These produce towers of colored wool. +``` +Yellow Popup Tower +White Popup Tower +Red Popup Tower +Purple Popup Tower +Pink Popup Tower +Orange Popup Tower +Magenta Popup Tower +Lime Popup Tower +Light Gray Popup Tower +Light Blue Popup Tower +Green Popup Tower +Gray Popup Tower +Cyan Popup Tower +Brown Popup Tower +Blue Popup Tower +Black Popup Tower +``` +### Paintball Items +> [!NOTE] +> These change all blocks in their effect radius to colored clay. +#### Paintball Guns +``` +Yellow Paintball Gun +White Paintball Gun +Red Paintball Gun +Purple Paintball Gun +Pink Paintball Gun +Orange Paintball Gun +Magenta Paintball Gun +Lime Paintball Gun +Light Gray Paintball Gun +Light Blue Paintball Gun +Green Paintball Gun +Gray Paintball Gun +Cyan Paintball Gun +Brown Paintball Gun +Blue Paintball Gun +Black Paintball Gun +``` +#### Paintballs +``` +Yellow Paintball +White Paintball +Red Paintball +Purple Paintball +Pink Paintball +Orange Paintball +Magenta Paintball +Lime Paintball +Light Gray Paintball +Light Blue Paintball +Green Paintball +Gray Paintball +Cyan Paintball +Brown Paintball +Blue Paintball +Black Paintball +``` +#### Heavy Paintball Guns +``` +Yellow Heavy Paintball Gun +White Heavy Paintball Gun +Red Heavy Paintball Gun +Purple Heavy Paintball Gun +Pink Heavy Paintball Gun +Orange Heavy Paintball Gun +Magenta Heavy Paintball Gun +Lime Heavy Paintball Gun +Light Gray Heavy Paintball Gun +Light Blue Heavy Paintball Gun +Green Heavy Paintball Gun +Gray Heavy Paintball Gun +Cyan Heavy Paintball Gun +Brown Heavy Paintball Gun +Blue Heavy Paintball Gun +Black Heavy Paintball Gun +``` +#### Paintball Explosive +``` +Yellow Paintball Explosive Item +White Paintball Explosive Item +Red Paintball Explosive Item +Purple Paintball Explosive Item +Pink Paintball Explosive Item +Orange Paintball Explosive Item +Magenta Paintball Explosive Item +Lime Paintball Explosive Item +Green Paintball Explosive Item +Gray Paintball Explosive Item +Cyan Paintball Explosive Item +Brown Paintball Explosive Item +Blue Paintball Explosive Item +Black Paintball Explosive Item +``` +#### Sticky Paintball Explosive +``` +Yellow Sticky Paintball Explosive Item +White Sticky Paintball Explosive Item +Red Sticky Paintball Explosive Item +Purple Sticky Paintball Explosive Item +Pink Sticky Paintball Explosive Item +Orange Sticky Paintball Explosive Item +Magenta Sticky Paintball Explosive Item +Lime Sticky Paintball Explosive Item +Light Gray Sticky Paintball Explosive Item +Light Blue Sticky Paintball Explosive Item +Green Sticky Paintball Explosive Item +Gray Sticky Paintball Explosive Item +Cyan Sticky Paintball Explosive Item +Brown Sticky Paintball Explosive Item +Blue Sticky Paintball Explosive Item +Black Sticky Paintball Explosive Item +``` +#### Seeking Paintball Explosive +> [!NOTE] +> These seek the nearest entity +``` +Yellow Seeking Paintball Explosive Item +White Seeking Paintball Explosive Item +Red Seeking Paintball Explosive Item +Purple Seeking Paintball Explosive Item +Pink Seeking Paintball Explosive Item +Orange Seeking Paintball Explosive Item +Magenta Seeking Paintball Explosive Item +Lime Seeking Paintball Explosive Item +Light Gray Seeking Paintball Explosive Item +Light Blue Seeking Paintball Explosive Item +Green Seeking Paintball Explosive Item +Gray Seeking Paintball Explosive Item +Cyan Seeking Paintball Explosive Item +Brown Seeking Paintball Explosive Item +Blue Seeking Paintball Explosive Item +Black Seeking Paintball Explosive Item +``` +#### Quick Paintball Explosive +``` +Yellow Quick Paintball Explosive Item +White Quick Paintball Explosive Item +Red Quick Paintball Explosive Item +Purple Quick Paintball Explosive Item +Pink Quick Paintball Explosive Item +Orange Quick Paintball Explosive Item +Magenta Quick Paintball Explosive Item +Lime Quick Paintball Explosive Item +Light Gray Quick Paintball Explosive Item +Light Blue Quick Paintball Explosive Item +Green Quick Paintball Explosive Item +Gray Quick Paintball Explosive Item +Cyan Quick Paintball Explosive Item +Brown Quick Paintball Explosive Item +Blue Quick Paintball Explosive Item +Black Quick Paintball Explosive Item +``` +#### Paint Bows +##### Yellow +``` +Yellow Paint Bow +Yellow Paint Bow|meta|charging2 +Yellow Paint Bow|meta|charging3 +Yellow Paint Bow|meta|charging4 +``` +##### White +``` +White Paint Bow +White Paint Bow|meta|charging2 +White Paint Bow|meta|charging3 +White Paint Bow|meta|charging4 +``` +##### Red +``` +Red Paint Bow +Red Paint Bow|meta|charging2 +Red Paint Bow|meta|charging3 +Red Paint Bow|meta|charging4 +``` +##### Purple +``` +Purple Paint Bow +Purple Paint Bow|meta|charging2 +Purple Paint Bow|meta|charging3 +Purple Paint Bow|meta|charging4 +``` +##### Pink +``` +Pink Paint Bow +Pink Paint Bow|meta|charging2 +Pink Paint Bow|meta|charging3 +Pink Paint Bow|meta|charging4 +``` +##### Orange +``` +Orange Paint Bow +Orange Paint Bow|meta|charging2 +Orange Paint Bow|meta|charging3 +Orange Paint Bow|meta|charging4 +``` +##### Magenta +``` +Magenta Paint Bow +Magenta Paint Bow|meta|charging2 +Magenta Paint Bow|meta|charging3 +Magenta Paint Bow|meta|charging4 +``` +##### Lime +``` +Lime Paint Bow +Lime Paint Bow|meta|charging2 +Lime Paint Bow|meta|charging3 +Lime Paint Bow|meta|charging4 +``` +##### Light Gray +``` +Light Gray Paint Bow +Light Gray Paint Bow|meta|charging2 +Light Gray Paint Bow|meta|charging3 +Light Gray Paint Bow|meta|charging4 +``` +##### Light Blue +``` +Light Blue Paint Bow +Light Blue Paint Bow|meta|charging2 +Light Blue Paint Bow|meta|charging3 +Light Blue Paint Bow|meta|charging4 +``` +##### Green +``` +Green Paint Bow +Green Paint Bow|meta|charging2 +Green Paint Bow|meta|charging3 +Green Paint Bow|meta|charging4 +``` +##### Gray +``` +Gray Paint Bow +Gray Paint Bow|meta|charging2 +Gray Paint Bow|meta|charging3 +Gray Paint Bow|meta|charging4 +``` +##### Cyan +``` +Cyan Paint Bow +Cyan Paint Bow|meta|charging2 +Cyan Paint Bow|meta|charging3 +Cyan Paint Bow|meta|charging4 +``` +##### Brown +``` +Brown Paint Bow +Brown Paint Bow|meta|charging2 +Brown Paint Bow|meta|charging3 +Brown Paint Bow|meta|charging4 +``` +##### Blue +``` +Blue Paint Bow +Blue Paint Bow|meta|charging2 +Blue Paint Bow|meta|charging3 +Blue Paint Bow|meta|charging4 +``` +##### Black +``` +Black Paint Bow +Black Paint Bow|meta|charging2 +Black Paint Bow|meta|charging3 +Black Paint Bow|meta|charging4 +``` +### Timed Spike Bombs +``` +Timed Spike Bomb +Timed Spike Bomb|meta|charging2 +Timed Spike Bomb|meta|charging3 +Timed Spike Bomb|meta|charging4 +``` +### Aura XP +``` +Aura XP Fragment +Aura XP Orb +Aura XP Potion +Aura XP Potion II +Splash Aura XP Potion +Splash Aura XP Potion II +Arrow of Aura XP + +``` diff --git a/ListOfBlocks.md b/ListOfBlocks.md new file mode 100644 index 0000000..9194132 --- /dev/null +++ b/ListOfBlocks.md @@ -0,0 +1,2097 @@ +# List of Blocks +Here is a machine-generated list of all block names in bloxd.io (in block id order). It is more accurate than the list in Blocks.md, but not organized. + +``` +[2025-08-29T07:36:58.006Z] Tomato Plant|Top|FreshlyGrown +Carrot Plant +Carrot Plant_stage1 +Carrot Plant|FreshlyGrown +Potato Plant +Potato Plant_stage1 +Potato Plant|FreshlyGrown +Strawberry Bush +Strawberry Bush_stage1 +Strawberry Bush_stage2 +Sugar Cane Plant +Sugar Cane Plant_stage1 +Sugar Cane Plant|FreshlyGrown +Sugar Cane Plant|Top|FreshlyGrown +Lettuce Plant +Lettuce Plant_stage1 +Lettuce Plant|FreshlyGrown +Coffee Plant +Coffee Plant_stage1 +Coffee Plant|FreshlyGrown +Cauliflower Plant +Cauliflower Plant_stage1 +Cauliflower Plant|FreshlyGrown +Parsnip Plant +Parsnip Plant_stage1 +Parsnip Plant|FreshlyGrown +Blueberry Bush +Blueberry Bush_stage1 +Blueberry Bush_stage2 +Red Cabbage Plant +Red Cabbage Plant_stage1 +Red Cabbage Plant|FreshlyGrown +Beetroot Plant +Beetroot Plant_stage1 +Beetroot Plant|FreshlyGrown +Autumn Aspen Leaves +Autumn Aspen Leaves|TreeCanopy +Autumn Fern +Iron Chest +Iron Chest|meta|rot2 +Iron Chest|meta|rot3 +Iron Chest|meta|rot4 +Mango Slab|meta|rot2|side +Mango Slab|meta|rot3|side +Mango Slab|meta|rot4|side +Mango Ladder +Mango Ladder|meta|rot2 +Mango Ladder|meta|rot3 +Mango Ladder|meta|rot4 +Mango Block +Banana Block +Banana Seeds +Banana Seeds|Growing +Attached Banana Stem +Attached Banana Stem|meta|rot2 +Attached Banana Stem|meta|rot3 +Attached Banana Stem|meta|rot4 +Dangling Rope +Dangling Vine +Gorilla Spawner Block +Wildcat Spawner Block +Fruity Maple Leaves +Pine Cone Leaves +Fruity Plum Leaves +Fruity Palm Leaves +Fruity Pear Leaves +Fruity Cherry Leaves +Fruity Mango Leaves +Draugr Huntress Spawner Block +Magma Golem Spawner Block +Black Portal +Blue Portal +Brown Portal +Cyan Portal +Gray Portal +Green Portal +Grey Portal +Light Blue Portal +Light Gray Portal +Lime Portal +Magenta Portal +Orange Portal +Pink Portal +Purple Portal +Red Portal +White Portal +Yellow Portal +Leather Block +Horse Spawner Block +Tomato Plant +Tomato Plant_stage1 +Tomato Plant|FreshlyGrown +Leaf Bed|meta|rot4 +_Leaf Bed Head +_Leaf Bed Head|meta|rot2 +_Leaf Bed Head|meta|rot3 +_Leaf Bed Head|meta|rot4 +Jungle Grass Block +Jungle Grass Slab +Jungle Grass Slab|meta|rot1|top +Jungle Grass Slab|meta|rot1|side +Jungle Grass Slab|meta|rot2|side +Jungle Grass Slab|meta|rot3|side +Jungle Grass Slab|meta|rot4|side +Jungle Tall Grass +Jungle Tall Grass|Top +Catnip +Mango Log +Barkless Mango Log +Barkless Mango Log|TreeBase|Mango +Mango Wood Planks +Mango Leaves +Mango Door +Mango Door|meta|rot1|open +Mango Door|meta|rot2|closed +Mango Door|meta|rot2|open +Mango Door|meta|rot3|closed +Mango Door|meta|rot3|open +Mango Door|meta|rot4|closed +Mango Door|meta|rot4|open +_Mango Door Top +_Mango Door Top|meta|rot1|open +_Mango Door Top|meta|rot2|closed +_Mango Door Top|meta|rot2|open +_Mango Door Top|meta|rot3|closed +_Mango Door Top|meta|rot3|open +_Mango Door Top|meta|rot4|closed +_Mango Door Top|meta|rot4|open +Mango Trapdoor +Mango Trapdoor|meta|rot1|open +Mango Trapdoor|meta|rot2|closed +Mango Trapdoor|meta|rot2|open +Mango Trapdoor|meta|rot3|closed +Mango Trapdoor|meta|rot3|open +Mango Trapdoor|meta|rot4|closed +Mango Trapdoor|meta|rot4|open +Mango Sapling +Mango Log|TreeBase|Mango +Mango Leaves|TreeCanopy +Mango Slab +Mango Slab|meta|rot1|top +Mango Slab|meta|rot1|side +Light Gray Chalk Bricks Slab|meta|rot1|top +Light Gray Chalk Bricks Slab|meta|rot1|side +Light Gray Chalk Bricks Slab|meta|rot2|side +Light Gray Chalk Bricks Slab|meta|rot3|side +Light Gray Chalk Bricks Slab|meta|rot4|side +Light Blue Chalk Bricks Slab +Light Blue Chalk Bricks Slab|meta|rot1|top +Light Blue Chalk Bricks Slab|meta|rot1|side +Light Blue Chalk Bricks Slab|meta|rot2|side +Light Blue Chalk Bricks Slab|meta|rot3|side +Light Blue Chalk Bricks Slab|meta|rot4|side +Green Chalk Bricks Slab +Green Chalk Bricks Slab|meta|rot1|top +Green Chalk Bricks Slab|meta|rot1|side +Green Chalk Bricks Slab|meta|rot2|side +Green Chalk Bricks Slab|meta|rot3|side +Green Chalk Bricks Slab|meta|rot4|side +Gray Chalk Bricks Slab +Gray Chalk Bricks Slab|meta|rot1|top +Gray Chalk Bricks Slab|meta|rot1|side +Gray Chalk Bricks Slab|meta|rot2|side +Gray Chalk Bricks Slab|meta|rot3|side +Gray Chalk Bricks Slab|meta|rot4|side +Cyan Chalk Bricks Slab +Cyan Chalk Bricks Slab|meta|rot1|top +Cyan Chalk Bricks Slab|meta|rot1|side +Cyan Chalk Bricks Slab|meta|rot2|side +Cyan Chalk Bricks Slab|meta|rot3|side +Cyan Chalk Bricks Slab|meta|rot4|side +Brown Chalk Bricks Slab +Brown Chalk Bricks Slab|meta|rot1|top +Brown Chalk Bricks Slab|meta|rot1|side +Brown Chalk Bricks Slab|meta|rot2|side +Brown Chalk Bricks Slab|meta|rot3|side +Brown Chalk Bricks Slab|meta|rot4|side +Blue Chalk Bricks Slab +Blue Chalk Bricks Slab|meta|rot1|top +Blue Chalk Bricks Slab|meta|rot1|side +Blue Chalk Bricks Slab|meta|rot2|side +Blue Chalk Bricks Slab|meta|rot3|side +Blue Chalk Bricks Slab|meta|rot4|side +Black Chalk Bricks Slab +Black Chalk Bricks Slab|meta|rot1|top +Black Chalk Bricks Slab|meta|rot1|side +Black Chalk Bricks Slab|meta|rot2|side +Black Chalk Bricks Slab|meta|rot3|side +Black Chalk Bricks Slab|meta|rot4|side +Leaf Bed +Leaf Bed|meta|rot2 +Leaf Bed|meta|rot3 +Black Chalk Slab|meta|rot4|side +Yellow Chalk Bricks Slab +Yellow Chalk Bricks Slab|meta|rot1|top +Yellow Chalk Bricks Slab|meta|rot1|side +Yellow Chalk Bricks Slab|meta|rot2|side +Yellow Chalk Bricks Slab|meta|rot3|side +Yellow Chalk Bricks Slab|meta|rot4|side +White Chalk Bricks Slab +White Chalk Bricks Slab|meta|rot1|top +White Chalk Bricks Slab|meta|rot1|side +White Chalk Bricks Slab|meta|rot2|side +White Chalk Bricks Slab|meta|rot3|side +White Chalk Bricks Slab|meta|rot4|side +Red Chalk Bricks Slab +Red Chalk Bricks Slab|meta|rot1|top +Red Chalk Bricks Slab|meta|rot1|side +Red Chalk Bricks Slab|meta|rot2|side +Red Chalk Bricks Slab|meta|rot3|side +Red Chalk Bricks Slab|meta|rot4|side +Purple Chalk Bricks Slab +Purple Chalk Bricks Slab|meta|rot1|top +Purple Chalk Bricks Slab|meta|rot1|side +Purple Chalk Bricks Slab|meta|rot2|side +Purple Chalk Bricks Slab|meta|rot3|side +Purple Chalk Bricks Slab|meta|rot4|side +Pink Chalk Bricks Slab +Pink Chalk Bricks Slab|meta|rot1|top +Pink Chalk Bricks Slab|meta|rot1|side +Pink Chalk Bricks Slab|meta|rot2|side +Pink Chalk Bricks Slab|meta|rot3|side +Pink Chalk Bricks Slab|meta|rot4|side +Orange Chalk Bricks Slab +Orange Chalk Bricks Slab|meta|rot1|top +Orange Chalk Bricks Slab|meta|rot1|side +Orange Chalk Bricks Slab|meta|rot2|side +Orange Chalk Bricks Slab|meta|rot3|side +Orange Chalk Bricks Slab|meta|rot4|side +Magenta Chalk Bricks Slab +Magenta Chalk Bricks Slab|meta|rot1|top +Magenta Chalk Bricks Slab|meta|rot1|side +Magenta Chalk Bricks Slab|meta|rot2|side +Magenta Chalk Bricks Slab|meta|rot3|side +Magenta Chalk Bricks Slab|meta|rot4|side +Lime Chalk Bricks Slab +Lime Chalk Bricks Slab|meta|rot1|top +Lime Chalk Bricks Slab|meta|rot1|side +Lime Chalk Bricks Slab|meta|rot2|side +Lime Chalk Bricks Slab|meta|rot3|side +Lime Chalk Bricks Slab|meta|rot4|side +Light Gray Chalk Bricks Slab +Lime Chalk Slab|meta|rot2|side +Lime Chalk Slab|meta|rot3|side +Lime Chalk Slab|meta|rot4|side +Light Gray Chalk Slab +Light Gray Chalk Slab|meta|rot1|top +Light Gray Chalk Slab|meta|rot1|side +Light Gray Chalk Slab|meta|rot2|side +Light Gray Chalk Slab|meta|rot3|side +Light Gray Chalk Slab|meta|rot4|side +Light Blue Chalk Slab +Light Blue Chalk Slab|meta|rot1|top +Light Blue Chalk Slab|meta|rot1|side +Light Blue Chalk Slab|meta|rot2|side +Light Blue Chalk Slab|meta|rot3|side +Light Blue Chalk Slab|meta|rot4|side +Green Chalk Slab +Green Chalk Slab|meta|rot1|top +Green Chalk Slab|meta|rot1|side +Green Chalk Slab|meta|rot2|side +Green Chalk Slab|meta|rot3|side +Green Chalk Slab|meta|rot4|side +Gray Chalk Slab +Gray Chalk Slab|meta|rot1|top +Gray Chalk Slab|meta|rot1|side +Gray Chalk Slab|meta|rot2|side +Gray Chalk Slab|meta|rot3|side +Gray Chalk Slab|meta|rot4|side +Cyan Chalk Slab +Cyan Chalk Slab|meta|rot1|top +Cyan Chalk Slab|meta|rot1|side +Cyan Chalk Slab|meta|rot2|side +Cyan Chalk Slab|meta|rot3|side +Cyan Chalk Slab|meta|rot4|side +Brown Chalk Slab +Brown Chalk Slab|meta|rot1|top +Brown Chalk Slab|meta|rot1|side +Brown Chalk Slab|meta|rot2|side +Brown Chalk Slab|meta|rot3|side +Brown Chalk Slab|meta|rot4|side +Blue Chalk Slab +Blue Chalk Slab|meta|rot1|top +Blue Chalk Slab|meta|rot1|side +Blue Chalk Slab|meta|rot2|side +Blue Chalk Slab|meta|rot3|side +Blue Chalk Slab|meta|rot4|side +Black Chalk Slab +Black Chalk Slab|meta|rot1|top +Black Chalk Slab|meta|rot1|side +Black Chalk Slab|meta|rot2|side +Black Chalk Slab|meta|rot3|side +Gray Chalk Bricks +Cyan Chalk Bricks +Brown Chalk Bricks +Blue Chalk Bricks +Black Chalk Bricks +Yellow Chalk Slab +Yellow Chalk Slab|meta|rot1|top +Yellow Chalk Slab|meta|rot1|side +Yellow Chalk Slab|meta|rot2|side +Yellow Chalk Slab|meta|rot3|side +Yellow Chalk Slab|meta|rot4|side +White Chalk Slab +White Chalk Slab|meta|rot1|top +White Chalk Slab|meta|rot1|side +White Chalk Slab|meta|rot2|side +White Chalk Slab|meta|rot3|side +White Chalk Slab|meta|rot4|side +Red Chalk Slab +Red Chalk Slab|meta|rot1|top +Red Chalk Slab|meta|rot1|side +Red Chalk Slab|meta|rot2|side +Red Chalk Slab|meta|rot3|side +Red Chalk Slab|meta|rot4|side +Purple Chalk Slab +Purple Chalk Slab|meta|rot1|top +Purple Chalk Slab|meta|rot1|side +Purple Chalk Slab|meta|rot2|side +Purple Chalk Slab|meta|rot3|side +Purple Chalk Slab|meta|rot4|side +Pink Chalk Slab +Pink Chalk Slab|meta|rot1|top +Pink Chalk Slab|meta|rot1|side +Pink Chalk Slab|meta|rot2|side +Pink Chalk Slab|meta|rot3|side +Pink Chalk Slab|meta|rot4|side +Orange Chalk Slab +Orange Chalk Slab|meta|rot1|top +Orange Chalk Slab|meta|rot1|side +Orange Chalk Slab|meta|rot2|side +Orange Chalk Slab|meta|rot3|side +Orange Chalk Slab|meta|rot4|side +Magenta Chalk Slab +Magenta Chalk Slab|meta|rot1|top +Magenta Chalk Slab|meta|rot1|side +Magenta Chalk Slab|meta|rot2|side +Magenta Chalk Slab|meta|rot3|side +Magenta Chalk Slab|meta|rot4|side +Lime Chalk Slab +Lime Chalk Slab|meta|rot1|top +Lime Chalk Slab|meta|rot1|side +Pine Grass +Pine Fern +Fallen Pine Cone +Pine Cone Block +Wolf Spawner Block +Bear Spawner Block +Deer Spawner Block +Stag Spawner Block +Bone Antlers +Bone Antlers|meta|rot2 +Bone Antlers|meta|rot3 +Bone Antlers|meta|rot4 +Gold Antlers +Gold Antlers|meta|rot2 +Gold Antlers|meta|rot3 +Gold Antlers|meta|rot4 +Gold Watermelon Stag Spawner Block +Salvaging Table +Salvaging Table|meta|rot2 +Salvaging Table|meta|rot3 +Salvaging Table|meta|rot4 +Chalk +Yellow Chalk +White Chalk +Red Chalk +Purple Chalk +Pink Chalk +Orange Chalk +Magenta Chalk +Lime Chalk +Light Gray Chalk +Light Blue Chalk +Green Chalk +Gray Chalk +Cyan Chalk +Brown Chalk +Blue Chalk +Black Chalk +Yellow Chalk Bricks +White Chalk Bricks +Red Chalk Bricks +Purple Chalk Bricks +Pink Chalk Bricks +Pink Chalk Bricks +Orange Chalk Bricks +Magenta Chalk Bricks +Lime Chalk Bricks +Light Gray Chalk Bricks +Light Blue Chalk Bricks +Green Chalk Bricks +_Spectral Door Top|meta|rot4|closed +_Spectral Door Top|meta|rot4|open +Spectral Trapdoor +Spectral Trapdoor|meta|rot1|open +Spectral Trapdoor|meta|rot2|closed +Spectral Trapdoor|meta|rot2|open +Spectral Trapdoor|meta|rot3|closed +Spectral Trapdoor|meta|rot3|open +Spectral Trapdoor|meta|rot4|closed +Spectral Trapdoor|meta|rot4|open +Spectral Sapling +Spectral Log|TreeBase|Spectral +Spectral Leaves|TreeCanopy +Spectral Slab +Spectral Slab|meta|rot1|top +Spectral Slab|meta|rot1|side +Spectral Slab|meta|rot2|side +Spectral Slab|meta|rot3|side +Spectral Slab|meta|rot4|side +Spectral Ladder +Spectral Ladder|meta|rot2 +Spectral Ladder|meta|rot3 +Spectral Ladder|meta|rot4 +Wood Enchanting Table +Wood Enchanting Table|meta|rot2 +Wood Enchanting Table|meta|rot3 +Wood Enchanting Table|meta|rot4 +Stone Enchanting Table +Stone Enchanting Table|meta|rot2 +Stone Enchanting Table|meta|rot3 +Stone Enchanting Table|meta|rot4 +Iron Enchanting Table +Iron Enchanting Table|meta|rot2 +Iron Enchanting Table|meta|rot3 +Iron Enchanting Table|meta|rot4 +Gold Enchanting Table +Gold Enchanting Table|meta|rot2 +Gold Enchanting Table|meta|rot3 +Gold Enchanting Table|meta|rot4 +Diamond Enchanting Table +Diamond Enchanting Table|meta|rot2 +Diamond Enchanting Table|meta|rot3 +Diamond Enchanting Table|meta|rot4 +Pine Grass Block +Pine Grass Slab +Pine Grass Slab|meta|rot1|top +Pine Grass Slab|meta|rot1|side +Pine Grass Slab|meta|rot2|side +Pine Grass Slab|meta|rot3|side +Pine Grass Slab|meta|rot4|side +Generator Spawn Block (Moonstone) +Generator Spawn Block (Ore) +Goal Block (Red) +Goal Block (Blue) +Finish Block +Drop Location Block +Obby Death Block +Obby Absorb Block +Obby Absorb Death Block +Bone Block +Pig Spawner Block +Cow Spawner Block +Sheep Spawner Block +Cave Golem Spawner Block +Draugr Zombie Spawner Block +Draugr Skeleton Spawner Block +Empty Spawner Block +Frost Golem Spawner Block +Frost Zombie Spawner Block +Frost Skeleton Spawner Block +Snowy Messy Stone +Snowy Stone Slab +Snowy Stone Slab|meta|rot1|top +Snowy Stone Slab|meta|rot1|side +Snowy Stone Slab|meta|rot2|side +Snowy Stone Slab|meta|rot3|side +Snowy Stone Slab|meta|rot4|side +Draugr Knight Spawner Block +Packed Snow +Carved Messy Stone +Spectral Grass +Spectral Log +Barkless Spectral Log +Barkless Spectral Log|TreeBase|Spectral +Spectral Wood Planks +Spectral Leaves +Spectral Door +Spectral Door|meta|rot1|open +Spectral Door|meta|rot2|closed +Spectral Door|meta|rot2|open +Spectral Door|meta|rot3|closed +Spectral Door|meta|rot3|open +Spectral Door|meta|rot4|closed +Spectral Door|meta|rot4|open +_Spectral Door Top +_Spectral Door Top|meta|rot1|open +_Spectral Door Top|meta|rot2|closed +_Spectral Door Top|meta|rot2|open +_Spectral Door Top|meta|rot3|closed +_Spectral Door Top|meta|rot3|open +Spawn Block (Lime)|meta|rot3 +Spawn Block (Light Gray)|meta|rot3 +Spawn Block (Light Blue)|meta|rot3 +Spawn Block (Green)|meta|rot3 +Spawn Block (Gray)|meta|rot3 +Spawn Block (Cyan)|meta|rot3 +Spawn Block (Brown)|meta|rot3 +Spawn Block (Blue)|meta|rot3 +Spawn Block (Black)|meta|rot3 +Spawn Block (Yellow)|meta|rot4 +Spawn Block (White)|meta|rot4 +Spawn Block (Red)|meta|rot4 +Spawn Block (Purple)|meta|rot4 +Spawn Block (Pink)|meta|rot4 +Spawn Block (Orange)|meta|rot4 +Spawn Block (Magenta)|meta|rot4 +Spawn Block (Lime)|meta|rot4 +Spawn Block (Light Gray)|meta|rot4 +Spawn Block (Light Blue)|meta|rot4 +Spawn Block (Green)|meta|rot4 +Spawn Block (Gray)|meta|rot4 +Spawn Block (Cyan)|meta|rot4 +Spawn Block (Brown)|meta|rot4 +Spawn Block (Blue)|meta|rot4 +Spawn Block (Black)|meta|rot4 +Checkpoint Block +Checkpoint Block|meta|rot2 +Checkpoint Block|meta|rot3 +Checkpoint Block|meta|rot4 +Custom Lobby Block +Custom Lobby Block|meta|rot2 +Custom Lobby Block|meta|rot3 +Custom Lobby Block|meta|rot4 +Generator Spawn Block (Red) +Generator Spawn Block (Blue) +Generator Spawn Block (Lime) +Generator Spawn Block (Yellow) +Generator Spawn Block (Cyan) +Generator Spawn Block (White) +Generator Spawn Block (Pink) +Generator Spawn Block (Gray) +Trader Shop Spawn Block +Trader Shop Spawn Block|meta|rot2 +Trader Shop Spawn Block|meta|rot3 +Trader Shop Spawn Block|meta|rot4 +Wizard Shop Spawn Block +Wizard Shop Spawn Block|meta|rot2 +Wizard Shop Spawn Block|meta|rot3 +Wizard Shop Spawn Block|meta|rot4 +Generator Spawn Block (Diamond) +Chili Pepper Plant|FreshlyGrown +Chili Pepper Seeds|Lava +Chili Pepper Plant_stage1|Lava +Chili Pepper Plant_stage2|Lava +Chili Pepper Plant_stage3|Lava +Chili Pepper Plant_stage4|Lava +Chili Pepper Plant_stage5 +Chili Pepper Plant_stage5|Lava +Chili Pepper Plant|Lava|FreshlyGrown +Code Block +Toxin Ball Block +Spawn Block (Yellow) +Spawn Block (White) +Spawn Block (Red) +Spawn Block (Purple) +Spawn Block (Pink) +Spawn Block (Orange) +Spawn Block (Magenta) +Spawn Block (Lime) +Spawn Block (Light Gray) +Spawn Block (Light Blue) +Spawn Block (Green) +Spawn Block (Gray) +Spawn Block (Cyan) +Spawn Block (Brown) +Spawn Block (Blue) +Spawn Block (Black) +Spawn Block (Yellow)|meta|rot2 +Spawn Block (White)|meta|rot2 +Spawn Block (Red)|meta|rot2 +Spawn Block (Purple)|meta|rot2 +Spawn Block (Pink)|meta|rot2 +Spawn Block (Orange)|meta|rot2 +Spawn Block (Magenta)|meta|rot2 +Spawn Block (Lime)|meta|rot2 +Spawn Block (Light Gray)|meta|rot2 +Spawn Block (Light Blue)|meta|rot2 +Spawn Block (Green)|meta|rot2 +Spawn Block (Gray)|meta|rot2 +Spawn Block (Cyan)|meta|rot2 +Spawn Block (Brown)|meta|rot2 +Spawn Block (Blue)|meta|rot2 +Spawn Block (Black)|meta|rot2 +Spawn Block (Yellow)|meta|rot3 +Spawn Block (White)|meta|rot3 +Spawn Block (Red)|meta|rot3 +Spawn Block (Purple)|meta|rot3 +Spawn Block (Pink)|meta|rot3 +Spawn Block (Orange)|meta|rot3 +Spawn Block (Magenta)|meta|rot3 +Blue Strongbed|meta|rot3 +Blue Strongbed|meta|rot4 +_Blue Strongbed Head +_Blue Strongbed Head|meta|rot2 +_Blue Strongbed Head|meta|rot3 +_Blue Strongbed Head|meta|rot4 +Brown Strongbed +Brown Strongbed|meta|rot2 +Brown Strongbed|meta|rot3 +Brown Strongbed|meta|rot4 +_Brown Strongbed Head +_Brown Strongbed Head|meta|rot2 +_Brown Strongbed Head|meta|rot3 +_Brown Strongbed Head|meta|rot4 +Green Strongbed +Green Strongbed|meta|rot2 +Green Strongbed|meta|rot3 +Green Strongbed|meta|rot4 +_Green Strongbed Head +_Green Strongbed Head|meta|rot2 +_Green Strongbed Head|meta|rot3 +_Green Strongbed Head|meta|rot4 +Red Strongbed +Red Strongbed|meta|rot2 +Red Strongbed|meta|rot3 +Red Strongbed|meta|rot4 +_Red Strongbed Head +_Red Strongbed Head|meta|rot2 +_Red Strongbed Head|meta|rot3 +_Red Strongbed Head|meta|rot4 +Black Strongbed +Black Strongbed|meta|rot2 +Black Strongbed|meta|rot3 +Black Strongbed|meta|rot4 +_Black Strongbed Head +_Black Strongbed Head|meta|rot2 +_Black Strongbed Head|meta|rot3 +_Black Strongbed Head|meta|rot4 +Timed Spike Bomb Block +Timed Spike Bomb Block|Flashing +Lava +Fat Brown Mushroom +Fat Red Mushroom +Chili Pepper Block +Chili Pepper Seeds +Chili Pepper Plant_stage1 +Chili Pepper Plant_stage2 +Chili Pepper Plant_stage3 +Chili Pepper Plant_stage4 +Chili Pepper Plant +Lime Strongbed +Lime Strongbed|meta|rot2 +Lime Strongbed|meta|rot3 +Lime Strongbed|meta|rot4 +_Lime Strongbed Head +_Lime Strongbed Head|meta|rot2 +_Lime Strongbed Head|meta|rot3 +_Lime Strongbed Head|meta|rot4 +Pink Strongbed +Pink Strongbed|meta|rot2 +Pink Strongbed|meta|rot3 +Pink Strongbed|meta|rot4 +_Pink Strongbed Head +_Pink Strongbed Head|meta|rot2 +_Pink Strongbed Head|meta|rot3 +_Pink Strongbed Head|meta|rot4 +Gray Strongbed +Gray Strongbed|meta|rot2 +Gray Strongbed|meta|rot3 +Gray Strongbed|meta|rot4 +_Gray Strongbed Head +_Gray Strongbed Head|meta|rot2 +_Gray Strongbed Head|meta|rot3 +_Gray Strongbed Head|meta|rot4 +Light Gray Strongbed +Light Gray Strongbed|meta|rot2 +Light Gray Strongbed|meta|rot3 +Light Gray Strongbed|meta|rot4 +_Light Gray Strongbed Head +_Light Gray Strongbed Head|meta|rot2 +_Light Gray Strongbed Head|meta|rot3 +_Light Gray Strongbed Head|meta|rot4 +Cyan Strongbed +Cyan Strongbed|meta|rot2 +Cyan Strongbed|meta|rot3 +Cyan Strongbed|meta|rot4 +_Cyan Strongbed Head +_Cyan Strongbed Head|meta|rot2 +_Cyan Strongbed Head|meta|rot3 +_Cyan Strongbed Head|meta|rot4 +Purple Strongbed +Purple Strongbed|meta|rot2 +Purple Strongbed|meta|rot3 +Purple Strongbed|meta|rot4 +_Purple Strongbed Head +_Purple Strongbed Head|meta|rot2 +_Purple Strongbed Head|meta|rot3 +_Purple Strongbed Head|meta|rot4 +Blue Strongbed +Blue Strongbed|meta|rot2 +Magenta Sticky Paintball Explosive +Lime Sticky Paintball Explosive +Light Gray Sticky Paintball Explosive +Light Blue Sticky Paintball Explosive +Green Sticky Paintball Explosive +Gray Sticky Paintball Explosive +Cyan Sticky Paintball Explosive +Brown Sticky Paintball Explosive +Blue Sticky Paintball Explosive +Black Sticky Paintball Explosive +White Strongbed +White Strongbed|meta|rot2 +White Strongbed|meta|rot3 +White Strongbed|meta|rot4 +_White Strongbed Head +_White Strongbed Head|meta|rot2 +_White Strongbed Head|meta|rot3 +_White Strongbed Head|meta|rot4 +Orange Strongbed +Orange Strongbed|meta|rot2 +Orange Strongbed|meta|rot3 +Orange Strongbed|meta|rot4 +_Orange Strongbed Head +_Orange Strongbed Head|meta|rot2 +_Orange Strongbed Head|meta|rot3 +_Orange Strongbed Head|meta|rot4 +Magenta Strongbed +Magenta Strongbed|meta|rot2 +Magenta Strongbed|meta|rot3 +Magenta Strongbed|meta|rot4 +_Magenta Strongbed Head +_Magenta Strongbed Head|meta|rot2 +_Magenta Strongbed Head|meta|rot3 +_Magenta Strongbed Head|meta|rot4 +Light Blue Strongbed +Light Blue Strongbed|meta|rot2 +Light Blue Strongbed|meta|rot3 +Light Blue Strongbed|meta|rot4 +_Light Blue Strongbed Head +_Light Blue Strongbed Head|meta|rot2 +_Light Blue Strongbed Head|meta|rot3 +_Light Blue Strongbed Head|meta|rot4 +Yellow Strongbed +Yellow Strongbed|meta|rot2 +Yellow Strongbed|meta|rot3 +Yellow Strongbed|meta|rot4 +_Yellow Strongbed Head +_Yellow Strongbed Head|meta|rot2 +_Yellow Strongbed Head|meta|rot3 +_Yellow Strongbed Head|meta|rot4 +Pink Paintball Explosive +Orange Paintball Explosive +Magenta Paintball Explosive +Lime Paintball Explosive +Light Gray Paintball Explosive +Light Blue Paintball Explosive +Green Paintball Explosive +Gray Paintball Explosive +Cyan Paintball Explosive +Brown Paintball Explosive +Blue Paintball Explosive +Black Paintball Explosive +Yellow Quick Paintball Explosive +White Quick Paintball Explosive +Red Quick Paintball Explosive +Purple Quick Paintball Explosive +Pink Quick Paintball Explosive +Orange Quick Paintball Explosive +Magenta Quick Paintball Explosive +Lime Quick Paintball Explosive +Light Gray Quick Paintball Explosive +Light Blue Quick Paintball Explosive +Green Quick Paintball Explosive +Gray Quick Paintball Explosive +Cyan Quick Paintball Explosive +Brown Quick Paintball Explosive +Blue Quick Paintball Explosive +Black Quick Paintball Explosive +Yellow Seeking Paintball Explosive +White Seeking Paintball Explosive +Red Seeking Paintball Explosive +Purple Seeking Paintball Explosive +Pink Seeking Paintball Explosive +Orange Seeking Paintball Explosive +Magenta Seeking Paintball Explosive +Lime Seeking Paintball Explosive +Light Gray Seeking Paintball Explosive +Light Blue Seeking Paintball Explosive +Green Seeking Paintball Explosive +Gray Seeking Paintball Explosive +Cyan Seeking Paintball Explosive +Brown Seeking Paintball Explosive +Blue Seeking Paintball Explosive +Black Seeking Paintball Explosive +Yellow Sticky Paintball Explosive +White Sticky Paintball Explosive +Red Sticky Paintball Explosive +Purple Sticky Paintball Explosive +Pink Sticky Paintball Explosive +Orange Sticky Paintball Explosive +Cherry Trapdoor|meta|rot2|closed +Cherry Trapdoor|meta|rot2|open +Cherry Trapdoor|meta|rot3|closed +Cherry Trapdoor|meta|rot3|open +Cherry Trapdoor|meta|rot4|closed +Cherry Trapdoor|meta|rot4|open +Cherry Sapling +Cherry Log|TreeBase|Cherry +Cherry Leaves|TreeCanopy +Cherry Slab +Cherry Slab|meta|rot1|top +Cherry Slab|meta|rot1|side +Cherry Slab|meta|rot2|side +Cherry Slab|meta|rot3|side +Cherry Slab|meta|rot4|side +Cherry Ladder +Cherry Ladder|meta|rot2 +Cherry Ladder|meta|rot3 +Cherry Ladder|meta|rot4 +Cherry Block +Bouncy Bomb Block +Obby Rocket +Wood Spikes +Stone Spikes +Iron Spikes +Gold Spikes +Diamond Spikes +Kill Spikes +Corn Block +Corn Seeds +Corn Seeds_stage1 +Corn Seeds|FreshlyGrown +Corn Seeds|Growing +Corn Plant_stage1 +Corn Plant_stage2 +Corn Plant_stage3 +Corn Plant_stage4 +Corn Plant_stage5 +Corn Plant +Corn Plant|FreshlyGrown +Loot Chest +Loot Chest|meta|rot2 +Loot Chest|meta|rot3 +Loot Chest|meta|rot4 +Melting Ice +Melting Ice|Breaking +Yellow Paintball Explosive +White Paintball Explosive +Red Paintball Explosive +Purple Paintball Explosive +Cyan Concrete Slab|meta|rot3|side +Cyan Concrete Slab|meta|rot4|side +Brown Concrete Slab +Brown Concrete Slab|meta|rot1|top +Brown Concrete Slab|meta|rot1|side +Brown Concrete Slab|meta|rot2|side +Brown Concrete Slab|meta|rot3|side +Brown Concrete Slab|meta|rot4|side +Blue Concrete Slab +Blue Concrete Slab|meta|rot1|top +Blue Concrete Slab|meta|rot1|side +Blue Concrete Slab|meta|rot2|side +Blue Concrete Slab|meta|rot3|side +Blue Concrete Slab|meta|rot4|side +Black Concrete Slab +Black Concrete Slab|meta|rot1|top +Black Concrete Slab|meta|rot1|side +Black Concrete Slab|meta|rot2|side +Black Concrete Slab|meta|rot3|side +Black Concrete Slab|meta|rot4|side +Grenade +Cherry Log +Barkless Cherry Log +Barkless Cherry Log|TreeBase|Cherry +Cherry Wood Planks +Cherry Leaves +Fallen Cherry Leaves +Fallen Cherry Leaves|meta|rot1|top +Fallen Cherry Leaves|meta|rot1|side +Fallen Cherry Leaves|meta|rot2|side +Fallen Cherry Leaves|meta|rot3|side +Fallen Cherry Leaves|meta|rot4|side +Cherry Door +Cherry Door|meta|rot1|open +Cherry Door|meta|rot2|closed +Cherry Door|meta|rot2|open +Cherry Door|meta|rot3|closed +Cherry Door|meta|rot3|open +Cherry Door|meta|rot4|closed +Cherry Door|meta|rot4|open +_Cherry Door Top +_Cherry Door Top|meta|rot1|open +_Cherry Door Top|meta|rot2|closed +_Cherry Door Top|meta|rot2|open +_Cherry Door Top|meta|rot3|closed +_Cherry Door Top|meta|rot3|open +_Cherry Door Top|meta|rot4|closed +_Cherry Door Top|meta|rot4|open +Cherry Trapdoor +Cherry Trapdoor|meta|rot1|open +Pink Concrete Slab|meta|rot1|side +Pink Concrete Slab|meta|rot2|side +Pink Concrete Slab|meta|rot3|side +Pink Concrete Slab|meta|rot4|side +Orange Concrete Slab +Orange Concrete Slab|meta|rot1|top +Orange Concrete Slab|meta|rot1|side +Orange Concrete Slab|meta|rot2|side +Orange Concrete Slab|meta|rot3|side +Orange Concrete Slab|meta|rot4|side +Magenta Concrete Slab +Magenta Concrete Slab|meta|rot1|top +Magenta Concrete Slab|meta|rot1|side +Magenta Concrete Slab|meta|rot2|side +Magenta Concrete Slab|meta|rot3|side +Magenta Concrete Slab|meta|rot4|side +Lime Concrete Slab +Lime Concrete Slab|meta|rot1|top +Lime Concrete Slab|meta|rot1|side +Lime Concrete Slab|meta|rot2|side +Lime Concrete Slab|meta|rot3|side +Lime Concrete Slab|meta|rot4|side +Light Gray Concrete Slab +Light Gray Concrete Slab|meta|rot1|top +Light Gray Concrete Slab|meta|rot1|side +Light Gray Concrete Slab|meta|rot2|side +Light Gray Concrete Slab|meta|rot3|side +Light Gray Concrete Slab|meta|rot4|side +Light Blue Concrete Slab +Light Blue Concrete Slab|meta|rot1|top +Light Blue Concrete Slab|meta|rot1|side +Light Blue Concrete Slab|meta|rot2|side +Light Blue Concrete Slab|meta|rot3|side +Light Blue Concrete Slab|meta|rot4|side +Green Concrete Slab +Green Concrete Slab|meta|rot1|top +Green Concrete Slab|meta|rot1|side +Green Concrete Slab|meta|rot2|side +Green Concrete Slab|meta|rot3|side +Green Concrete Slab|meta|rot4|side +Gray Concrete Slab +Gray Concrete Slab|meta|rot1|top +Gray Concrete Slab|meta|rot1|side +Gray Concrete Slab|meta|rot2|side +Gray Concrete Slab|meta|rot3|side +Gray Concrete Slab|meta|rot4|side +Cyan Concrete Slab +Cyan Concrete Slab|meta|rot1|top +Cyan Concrete Slab|meta|rot1|side +Cyan Concrete Slab|meta|rot2|side +Cranberries_stage2 +Red Mushroom +Brown Mushroom +Cotton Seeds +Cotton_stage1 +Cotton_stage2 +Cotton_stage3 +Tribe Protector +Tall Grass +Tall Grass|Top +Faction Protector +Barkless Palm Log +Barkless Pear Log +Barkless Maple Log|TreeBase|Maple +Barkless Plum Log|TreeBase|Plum +Barkless Cedar Log|TreeBase|Cedar +Barkless Aspen Log|TreeBase|Aspen +Barkless Jungle Log|TreeBase|Jungle +Barkless Pine Log|TreeBase|Pine +Barkless Palm Log|TreeBase|Palm +Barkless Pear Log|TreeBase|Pear +Mystery Block +Rocket +Super Rocket +Yellow Concrete Slab +Yellow Concrete Slab|meta|rot1|top +Yellow Concrete Slab|meta|rot1|side +Yellow Concrete Slab|meta|rot2|side +Yellow Concrete Slab|meta|rot3|side +Yellow Concrete Slab|meta|rot4|side +White Concrete Slab +White Concrete Slab|meta|rot1|top +White Concrete Slab|meta|rot1|side +White Concrete Slab|meta|rot2|side +White Concrete Slab|meta|rot3|side +White Concrete Slab|meta|rot4|side +Red Concrete Slab +Red Concrete Slab|meta|rot1|top +Red Concrete Slab|meta|rot1|side +Red Concrete Slab|meta|rot2|side +Red Concrete Slab|meta|rot3|side +Red Concrete Slab|meta|rot4|side +Purple Concrete Slab +Purple Concrete Slab|meta|rot1|top +Purple Concrete Slab|meta|rot1|side +Purple Concrete Slab|meta|rot2|side +Purple Concrete Slab|meta|rot3|side +Purple Concrete Slab|meta|rot4|side +Pink Concrete Slab +Pink Concrete Slab|meta|rot1|top +Pink Carpet +Purple Carpet +Red Carpet +White Carpet +Yellow Carpet +Bookshelf +Bookshelf|meta|rot2|books6 +Bookshelf|meta|rot3|books6 +Bookshelf|meta|rot4|books6 +Empty Bookshelf +Empty Bookshelf|meta|rot2|books0 +Empty Bookshelf|meta|rot3|books0 +Empty Bookshelf|meta|rot4|books0 +Bookshelf|meta|rot1|books1 +Bookshelf|meta|rot2|books1 +Bookshelf|meta|rot3|books1 +Bookshelf|meta|rot4|books1 +Bookshelf|meta|rot1|books2 +Bookshelf|meta|rot2|books2 +Bookshelf|meta|rot3|books2 +Bookshelf|meta|rot4|books2 +Bookshelf|meta|rot1|books3 +Bookshelf|meta|rot2|books3 +Bookshelf|meta|rot3|books3 +Bookshelf|meta|rot4|books3 +Bookshelf|meta|rot1|books4 +Bookshelf|meta|rot2|books4 +Bookshelf|meta|rot3|books4 +Bookshelf|meta|rot4|books4 +Bookshelf|meta|rot1|books5 +Bookshelf|meta|rot2|books5 +Bookshelf|meta|rot3|books5 +Bookshelf|meta|rot4|books5 +Mailbox +Mailbox|meta|rot2|empty +Mailbox|meta|rot3|empty +Mailbox|meta|rot4|empty +Mailbox|meta|rot1|full +Mailbox|meta|rot2|full +Mailbox|meta|rot3|full +Mailbox|meta|rot4|full +Rice +Rice_stage1 +Rice_stage2 +Rice_stage3 +Rice_stage4 +Rice_stage5 +Rice|FreshlyGrown +Cranberries +Cranberries_stage1 +Patterned Magenta Glass +Patterned Orange Glass +Patterned Pink Glass +Patterned Purple Glass +Patterned Red Glass +Patterned White Glass +Patterned Yellow Glass +Potion Table +Potion Table|meta|rot2 +Potion Table|meta|rot3 +Potion Table|meta|rot4 +Pine Ladder +Pine Ladder|meta|rot2 +Pine Ladder|meta|rot3 +Pine Ladder|meta|rot4 +Plum Ladder +Plum Ladder|meta|rot2 +Plum Ladder|meta|rot3 +Plum Ladder|meta|rot4 +Cedar Ladder +Cedar Ladder|meta|rot2 +Cedar Ladder|meta|rot3 +Cedar Ladder|meta|rot4 +Aspen Ladder +Aspen Ladder|meta|rot2 +Aspen Ladder|meta|rot3 +Aspen Ladder|meta|rot4 +Jungle Ladder +Jungle Ladder|meta|rot2 +Jungle Ladder|meta|rot3 +Jungle Ladder|meta|rot4 +Palm Ladder +Palm Ladder|meta|rot2 +Palm Ladder|meta|rot3 +Palm Ladder|meta|rot4 +Pear Ladder +Pear Ladder|meta|rot2 +Pear Ladder|meta|rot3 +Pear Ladder|meta|rot4 +Black Carpet +Blue Carpet +Brown Carpet +Cyan Carpet +Gray Carpet +Light Gray Carpet +Green Carpet +Light Blue Carpet +Lime Carpet +Magenta Carpet +Orange Carpet +Mega Compressed Messy Stone +Board +Board|meta|rot2 +Board|meta|rot3 +Board|meta|rot4 +Net +Cobweb +Brown Mushroom Block +Red Mushroom Block +Mushroom Stem +Fireball Block +Iceball Block +Watermelon Seeds +Watermelon Seeds|Growing +Attached Watermelon Stem +Attached Watermelon Stem|meta|rot2 +Attached Watermelon Stem|meta|rot3 +Attached Watermelon Stem|meta|rot4 +Pumpkin Seeds +Pumpkin Seeds|Growing +Attached Pumpkin Stem +Attached Pumpkin Stem|meta|rot2 +Attached Pumpkin Stem|meta|rot3 +Attached Pumpkin Stem|meta|rot4 +Pumpkin +Carved Pumpkin +Carved Pumpkin|meta|rot2 +Carved Pumpkin|meta|rot3 +Carved Pumpkin|meta|rot4 +Jack o'Lantern +Jack o'Lantern|meta|rot2 +Jack o'Lantern|meta|rot3 +Jack o'Lantern|meta|rot4 +Melon Seeds +Melon Seeds|Growing +Attached Melon Stem +Attached Melon Stem|meta|rot2 +Attached Melon Stem|meta|rot3 +Attached Melon Stem|meta|rot4 +Melon +Iron Watermelon +Patterned Black Glass +Patterned Blue Glass +Patterned Brown Glass +Patterned Cyan Glass +Patterned Gray Glass +Patterned Light Gray Glass +Patterned Green Glass +Patterned Light Blue Glass +Patterned Lime Glass +Vines|meta|rot1|Growing +Vines|meta|rot2|Growing +Vines|meta|rot3|Growing +Vines|meta|rot4|Growing +Cactus|Growing +Fat Cactus|Growing +Plum Block +Coconut Block +Pear Log +Pear Wood Planks +Pear Leaves +Pear Door +Pear Door|meta|rot1|open +Pear Door|meta|rot2|closed +Pear Door|meta|rot2|open +Pear Door|meta|rot3|closed +Pear Door|meta|rot3|open +Pear Door|meta|rot4|closed +Pear Door|meta|rot4|open +_Pear Door Top +_Pear Door Top|meta|rot1|open +_Pear Door Top|meta|rot2|closed +_Pear Door Top|meta|rot2|open +_Pear Door Top|meta|rot3|closed +_Pear Door Top|meta|rot3|open +_Pear Door Top|meta|rot4|closed +_Pear Door Top|meta|rot4|open +Pear Trapdoor +Pear Trapdoor|meta|rot1|open +Pear Trapdoor|meta|rot2|closed +Pear Trapdoor|meta|rot2|open +Pear Trapdoor|meta|rot3|closed +Pear Trapdoor|meta|rot3|open +Pear Trapdoor|meta|rot4|closed +Pear Trapdoor|meta|rot4|open +Pear Sapling +Pear Log|TreeBase|Pear +Pear Leaves|TreeCanopy +Pear Slab +Pear Slab|meta|rot1|top +Pear Slab|meta|rot1|side +Pear Slab|meta|rot2|side +Pear Slab|meta|rot3|side +Pear Slab|meta|rot4|side +Pear Block +Compressed Messy Stone +Extra Compressed Messy Stone +Super Compressed Messy Stone +Hyper Compressed Messy Stone +Ultra Compressed Messy Stone +Marked Sandstone Slab|meta|rot3|side +Marked Sandstone Slab|meta|rot4|side +Sandstone Bricks Slab +Sandstone Bricks Slab|meta|rot1|top +Sandstone Bricks Slab|meta|rot1|side +Sandstone Bricks Slab|meta|rot2|side +Sandstone Bricks Slab|meta|rot3|side +Sandstone Bricks Slab|meta|rot4|side +Red Sandstone Slab +Red Sandstone Slab|meta|rot1|top +Red Sandstone Slab|meta|rot1|side +Red Sandstone Slab|meta|rot2|side +Red Sandstone Slab|meta|rot3|side +Red Sandstone Slab|meta|rot4|side +Smooth Red Sandstone Slab +Smooth Red Sandstone Slab|meta|rot1|top +Smooth Red Sandstone Slab|meta|rot1|side +Smooth Red Sandstone Slab|meta|rot2|side +Smooth Red Sandstone Slab|meta|rot3|side +Smooth Red Sandstone Slab|meta|rot4|side +Engraved Red Sandstone Slab +Engraved Red Sandstone Slab|meta|rot1|top +Engraved Red Sandstone Slab|meta|rot1|side +Engraved Red Sandstone Slab|meta|rot2|side +Engraved Red Sandstone Slab|meta|rot3|side +Engraved Red Sandstone Slab|meta|rot4|side +Marked Red Sandstone Slab +Marked Red Sandstone Slab|meta|rot1|top +Marked Red Sandstone Slab|meta|rot1|side +Marked Red Sandstone Slab|meta|rot2|side +Marked Red Sandstone Slab|meta|rot3|side +Marked Red Sandstone Slab|meta|rot4|side +Red Sandstone Bricks Slab +Red Sandstone Bricks Slab|meta|rot1|top +Red Sandstone Bricks Slab|meta|rot1|side +Red Sandstone Bricks Slab|meta|rot2|side +Red Sandstone Bricks Slab|meta|rot3|side +Red Sandstone Bricks Slab|meta|rot4|side +Bricks Slab +Bricks Slab|meta|rot1|top +Bricks Slab|meta|rot1|side +Bricks Slab|meta|rot2|side +Bricks Slab|meta|rot3|side +Bricks Slab|meta|rot4|side +Ice Bricks Slab +Ice Bricks Slab|meta|rot1|top +Ice Bricks Slab|meta|rot1|side +Ice Bricks Slab|meta|rot2|side +Ice Bricks Slab|meta|rot3|side +Ice Bricks Slab|meta|rot4|side +Diorite Bricks Slab|meta|rot1|side +Diorite Bricks Slab|meta|rot2|side +Diorite Bricks Slab|meta|rot3|side +Diorite Bricks Slab|meta|rot4|side +Granite Slab +Granite Slab|meta|rot1|top +Granite Slab|meta|rot1|side +Granite Slab|meta|rot2|side +Granite Slab|meta|rot3|side +Granite Slab|meta|rot4|side +Smooth Granite Slab +Smooth Granite Slab|meta|rot1|top +Smooth Granite Slab|meta|rot1|side +Smooth Granite Slab|meta|rot2|side +Smooth Granite Slab|meta|rot3|side +Smooth Granite Slab|meta|rot4|side +Engraved Granite Slab +Engraved Granite Slab|meta|rot1|top +Engraved Granite Slab|meta|rot1|side +Engraved Granite Slab|meta|rot2|side +Engraved Granite Slab|meta|rot3|side +Engraved Granite Slab|meta|rot4|side +Granite Bricks Slab +Granite Bricks Slab|meta|rot1|top +Granite Bricks Slab|meta|rot1|side +Granite Bricks Slab|meta|rot2|side +Granite Bricks Slab|meta|rot3|side +Granite Bricks Slab|meta|rot4|side +Sandstone Slab +Sandstone Slab|meta|rot1|top +Sandstone Slab|meta|rot1|side +Sandstone Slab|meta|rot2|side +Sandstone Slab|meta|rot3|side +Sandstone Slab|meta|rot4|side +Smooth Sandstone Slab +Smooth Sandstone Slab|meta|rot1|top +Smooth Sandstone Slab|meta|rot1|side +Smooth Sandstone Slab|meta|rot2|side +Smooth Sandstone Slab|meta|rot3|side +Smooth Sandstone Slab|meta|rot4|side +Engraved Sandstone Slab +Engraved Sandstone Slab|meta|rot1|top +Engraved Sandstone Slab|meta|rot1|side +Engraved Sandstone Slab|meta|rot2|side +Engraved Sandstone Slab|meta|rot3|side +Engraved Sandstone Slab|meta|rot4|side +Marked Sandstone Slab +Marked Sandstone Slab|meta|rot1|top +Marked Sandstone Slab|meta|rot1|side +Marked Sandstone Slab|meta|rot2|side +Mossy Stone Bricks Slab +Mossy Stone Bricks Slab|meta|rot1|top +Mossy Stone Bricks Slab|meta|rot1|side +Mossy Stone Bricks Slab|meta|rot2|side +Mossy Stone Bricks Slab|meta|rot3|side +Mossy Stone Bricks Slab|meta|rot4|side +Andesite Slab +Andesite Slab|meta|rot1|top +Andesite Slab|meta|rot1|side +Andesite Slab|meta|rot2|side +Andesite Slab|meta|rot3|side +Andesite Slab|meta|rot4|side +Smooth Andesite Slab +Smooth Andesite Slab|meta|rot1|top +Smooth Andesite Slab|meta|rot1|side +Smooth Andesite Slab|meta|rot2|side +Smooth Andesite Slab|meta|rot3|side +Smooth Andesite Slab|meta|rot4|side +Engraved Andesite Slab +Engraved Andesite Slab|meta|rot1|top +Engraved Andesite Slab|meta|rot1|side +Engraved Andesite Slab|meta|rot2|side +Engraved Andesite Slab|meta|rot3|side +Engraved Andesite Slab|meta|rot4|side +Andesite Bricks Slab +Andesite Bricks Slab|meta|rot1|top +Andesite Bricks Slab|meta|rot1|side +Andesite Bricks Slab|meta|rot2|side +Andesite Bricks Slab|meta|rot3|side +Andesite Bricks Slab|meta|rot4|side +Diorite Slab +Diorite Slab|meta|rot1|top +Diorite Slab|meta|rot1|side +Diorite Slab|meta|rot2|side +Diorite Slab|meta|rot3|side +Diorite Slab|meta|rot4|side +Smooth Diorite Slab +Smooth Diorite Slab|meta|rot1|top +Smooth Diorite Slab|meta|rot1|side +Smooth Diorite Slab|meta|rot2|side +Smooth Diorite Slab|meta|rot3|side +Smooth Diorite Slab|meta|rot4|side +Engraved Diorite Slab +Engraved Diorite Slab|meta|rot1|top +Engraved Diorite Slab|meta|rot1|side +Engraved Diorite Slab|meta|rot2|side +Engraved Diorite Slab|meta|rot3|side +Engraved Diorite Slab|meta|rot4|side +Diorite Bricks Slab +Diorite Bricks Slab|meta|rot1|top +Palm Slab|meta|rot3|side +Palm Slab|meta|rot4|side +Dirt Slab +Dirt Slab|meta|rot1|top +Dirt Slab|meta|rot1|side +Dirt Slab|meta|rot2|side +Dirt Slab|meta|rot3|side +Dirt Slab|meta|rot4|side +Grass Slab +Grass Slab|meta|rot1|top +Grass Slab|meta|rot1|side +Grass Slab|meta|rot2|side +Grass Slab|meta|rot3|side +Grass Slab|meta|rot4|side +Messy Stone Slab +Messy Stone Slab|meta|rot1|top +Messy Stone Slab|meta|rot1|side +Messy Stone Slab|meta|rot2|side +Messy Stone Slab|meta|rot3|side +Messy Stone Slab|meta|rot4|side +Stone Slab +Stone Slab|meta|rot1|top +Stone Slab|meta|rot1|side +Stone Slab|meta|rot2|side +Stone Slab|meta|rot3|side +Stone Slab|meta|rot4|side +Smooth Stone Slab +Smooth Stone Slab|meta|rot1|top +Smooth Stone Slab|meta|rot1|side +Smooth Stone Slab|meta|rot2|side +Smooth Stone Slab|meta|rot3|side +Smooth Stone Slab|meta|rot4|side +Engraved Stone Slab +Engraved Stone Slab|meta|rot1|top +Engraved Stone Slab|meta|rot1|side +Engraved Stone Slab|meta|rot2|side +Engraved Stone Slab|meta|rot3|side +Engraved Stone Slab|meta|rot4|side +Stone Bricks Slab +Stone Bricks Slab|meta|rot1|top +Stone Bricks Slab|meta|rot1|side +Stone Bricks Slab|meta|rot2|side +Stone Bricks Slab|meta|rot3|side +Stone Bricks Slab|meta|rot4|side +Mossy Stone Slab +Mossy Stone Slab|meta|rot1|top +Mossy Stone Slab|meta|rot1|side +Mossy Stone Slab|meta|rot2|side +Mossy Stone Slab|meta|rot3|side +Mossy Stone Slab|meta|rot4|side +Red Sandstone Bricks +Rocky Dirt +Autumn Maple Leaves +Autumn Maple Leaves|TreeCanopy +Fallen Maple Leaves +Fallen Maple Leaves|meta|rot1|top +Fallen Maple Leaves|meta|rot1|side +Fallen Maple Leaves|meta|rot2|side +Fallen Maple Leaves|meta|rot3|side +Fallen Maple Leaves|meta|rot4|side +Maple Slab +Maple Slab|meta|rot1|top +Maple Slab|meta|rot1|side +Maple Slab|meta|rot2|side +Maple Slab|meta|rot3|side +Maple Slab|meta|rot4|side +Pine Slab +Pine Slab|meta|rot1|top +Pine Slab|meta|rot1|side +Pine Slab|meta|rot2|side +Pine Slab|meta|rot3|side +Pine Slab|meta|rot4|side +Plum Slab +Plum Slab|meta|rot1|top +Plum Slab|meta|rot1|side +Plum Slab|meta|rot2|side +Plum Slab|meta|rot3|side +Plum Slab|meta|rot4|side +Cedar Slab +Cedar Slab|meta|rot1|top +Cedar Slab|meta|rot1|side +Cedar Slab|meta|rot2|side +Cedar Slab|meta|rot3|side +Cedar Slab|meta|rot4|side +Aspen Slab +Aspen Slab|meta|rot1|top +Aspen Slab|meta|rot1|side +Aspen Slab|meta|rot2|side +Aspen Slab|meta|rot3|side +Aspen Slab|meta|rot4|side +Jungle Slab +Jungle Slab|meta|rot1|top +Jungle Slab|meta|rot1|side +Jungle Slab|meta|rot2|side +Jungle Slab|meta|rot3|side +Jungle Slab|meta|rot4|side +Palm Slab +Palm Slab|meta|rot1|top +Palm Slab|meta|rot1|side +Palm Slab|meta|rot2|side +_Palm Door Top|meta|rot4|open +Pine Trapdoor +Pine Trapdoor|meta|rot1|open +Pine Trapdoor|meta|rot2|closed +Pine Trapdoor|meta|rot2|open +Pine Trapdoor|meta|rot3|closed +Pine Trapdoor|meta|rot3|open +Pine Trapdoor|meta|rot4|closed +Pine Trapdoor|meta|rot4|open +Plum Trapdoor +Plum Trapdoor|meta|rot1|open +Plum Trapdoor|meta|rot2|closed +Plum Trapdoor|meta|rot2|open +Plum Trapdoor|meta|rot3|closed +Plum Trapdoor|meta|rot3|open +Plum Trapdoor|meta|rot4|closed +Plum Trapdoor|meta|rot4|open +Cedar Trapdoor +Cedar Trapdoor|meta|rot1|open +Cedar Trapdoor|meta|rot2|closed +Cedar Trapdoor|meta|rot2|open +Cedar Trapdoor|meta|rot3|closed +Cedar Trapdoor|meta|rot3|open +Cedar Trapdoor|meta|rot4|closed +Cedar Trapdoor|meta|rot4|open +Aspen Trapdoor +Aspen Trapdoor|meta|rot1|open +Aspen Trapdoor|meta|rot2|closed +Aspen Trapdoor|meta|rot2|open +Aspen Trapdoor|meta|rot3|closed +Aspen Trapdoor|meta|rot3|open +Aspen Trapdoor|meta|rot4|closed +Aspen Trapdoor|meta|rot4|open +Jungle Trapdoor +Jungle Trapdoor|meta|rot1|open +Jungle Trapdoor|meta|rot2|closed +Jungle Trapdoor|meta|rot2|open +Jungle Trapdoor|meta|rot3|closed +Jungle Trapdoor|meta|rot3|open +Jungle Trapdoor|meta|rot4|closed +Jungle Trapdoor|meta|rot4|open +Palm Trapdoor +Palm Trapdoor|meta|rot1|open +Palm Trapdoor|meta|rot2|closed +Palm Trapdoor|meta|rot2|open +Palm Trapdoor|meta|rot3|closed +Palm Trapdoor|meta|rot3|open +Palm Trapdoor|meta|rot4|closed +Palm Trapdoor|meta|rot4|open +Red Sand +_Cedar Door Top|meta|rot3|open +_Cedar Door Top|meta|rot4|closed +_Cedar Door Top|meta|rot4|open +Aspen Door +Aspen Door|meta|rot1|open +Aspen Door|meta|rot2|closed +Aspen Door|meta|rot2|open +Aspen Door|meta|rot3|closed +Aspen Door|meta|rot3|open +Aspen Door|meta|rot4|closed +Aspen Door|meta|rot4|open +_Aspen Door Top +_Aspen Door Top|meta|rot1|open +_Aspen Door Top|meta|rot2|closed +_Aspen Door Top|meta|rot2|open +_Aspen Door Top|meta|rot3|closed +_Aspen Door Top|meta|rot3|open +_Aspen Door Top|meta|rot4|closed +_Aspen Door Top|meta|rot4|open +Jungle Door +Jungle Door|meta|rot1|open +Jungle Door|meta|rot2|closed +Jungle Door|meta|rot2|open +Jungle Door|meta|rot3|closed +Jungle Door|meta|rot3|open +Jungle Door|meta|rot4|closed +Jungle Door|meta|rot4|open +_Jungle Door Top +_Jungle Door Top|meta|rot1|open +_Jungle Door Top|meta|rot2|closed +_Jungle Door Top|meta|rot2|open +_Jungle Door Top|meta|rot3|closed +_Jungle Door Top|meta|rot3|open +_Jungle Door Top|meta|rot4|closed +_Jungle Door Top|meta|rot4|open +Palm Door +Palm Door|meta|rot1|open +Palm Door|meta|rot2|closed +Palm Door|meta|rot2|open +Palm Door|meta|rot3|closed +Palm Door|meta|rot3|open +Palm Door|meta|rot4|closed +Palm Door|meta|rot4|open +_Palm Door Top +_Palm Door Top|meta|rot1|open +_Palm Door Top|meta|rot2|closed +_Palm Door Top|meta|rot2|open +_Palm Door Top|meta|rot3|closed +_Palm Door Top|meta|rot3|open +_Palm Door Top|meta|rot4|closed +Jungle Log|TreeBase|Jungle +Palm Log +Palm Log|TreeBase|Palm +Palm Wood Planks +Palm Sapling +Pine Door +Pine Door|meta|rot1|open +Pine Door|meta|rot2|closed +Pine Door|meta|rot2|open +Pine Door|meta|rot3|closed +Pine Door|meta|rot3|open +Pine Door|meta|rot4|closed +Pine Door|meta|rot4|open +_Pine Door Top +_Pine Door Top|meta|rot1|open +_Pine Door Top|meta|rot2|closed +_Pine Door Top|meta|rot2|open +_Pine Door Top|meta|rot3|closed +_Pine Door Top|meta|rot3|open +_Pine Door Top|meta|rot4|closed +_Pine Door Top|meta|rot4|open +Plum Door +Plum Door|meta|rot1|open +Plum Door|meta|rot2|closed +Plum Door|meta|rot2|open +Plum Door|meta|rot3|closed +Plum Door|meta|rot3|open +Plum Door|meta|rot4|closed +Plum Door|meta|rot4|open +_Plum Door Top +_Plum Door Top|meta|rot1|open +_Plum Door Top|meta|rot2|closed +_Plum Door Top|meta|rot2|open +_Plum Door Top|meta|rot3|closed +_Plum Door Top|meta|rot3|open +_Plum Door Top|meta|rot4|closed +_Plum Door Top|meta|rot4|open +Cedar Door +Cedar Door|meta|rot1|open +Cedar Door|meta|rot2|closed +Cedar Door|meta|rot2|open +Cedar Door|meta|rot3|closed +Cedar Door|meta|rot3|open +Cedar Door|meta|rot4|closed +Cedar Door|meta|rot4|open +_Cedar Door Top +_Cedar Door Top|meta|rot1|open +_Cedar Door Top|meta|rot2|closed +_Cedar Door Top|meta|rot2|open +_Cedar Door Top|meta|rot3|closed +_Red Bed Head +_Red Bed Head|meta|rot2 +_Red Bed Head|meta|rot3 +_Red Bed Head|meta|rot4 +Black Bed +Black Bed|meta|rot2 +Black Bed|meta|rot3 +Black Bed|meta|rot4 +_Black Bed Head +_Black Bed Head|meta|rot2 +_Black Bed Head|meta|rot3 +_Black Bed Head|meta|rot4 +Apple Block +Moonstone Ore +Moonstone Chest +Moonstone Chest|meta|rot2 +Moonstone Chest|meta|rot3 +Moonstone Chest|meta|rot4 +Block of Moonstone +Magma +Useless Soil +Marked Sandstone +Red Sandstone +Smooth Red Sandstone +Engraved Red Sandstone +Marked Red Sandstone +Green Stone +Green Bricks +Dark Green Bricks +Sandstone Bricks +Engraved Diorite +Diorite Bricks +Engraved Andesite +Andesite Bricks +Engraved Granite +Granite Bricks +Ice Bricks +Placeholder Packed Ice +Placeholder Blue Ice +Plum Leaves +Cedar Leaves +Palm Leaves +Plum Leaves|TreeCanopy +Cedar Leaves|TreeCanopy +Palm Leaves|TreeCanopy +Pine Log|TreeBase|Pine +Plum Log|TreeBase|Plum +Plum Log|TreeBase|Plum +Cedar Log|TreeBase|Cedar +Aspen Log|TreeBase|Aspen +Light Gray Bed|meta|rot3 +Light Gray Bed|meta|rot4 +_Light Gray Bed Head +_Light Gray Bed Head|meta|rot2 +_Light Gray Bed Head|meta|rot3 +_Light Gray Bed Head|meta|rot4 +Cyan Bed +Cyan Bed|meta|rot2 +Cyan Bed|meta|rot3 +Cyan Bed|meta|rot4 +_Cyan Bed Head +_Cyan Bed Head|meta|rot2 +_Cyan Bed Head|meta|rot3 +_Cyan Bed Head|meta|rot4 +Purple Bed +Purple Bed|meta|rot2 +Purple Bed|meta|rot3 +Purple Bed|meta|rot4 +_Purple Bed Head +_Purple Bed Head|meta|rot2 +_Purple Bed Head|meta|rot3 +_Purple Bed Head|meta|rot4 +Blue Bed +Blue Bed|meta|rot2 +Blue Bed|meta|rot3 +Blue Bed|meta|rot4 +_Blue Bed Head +_Blue Bed Head|meta|rot2 +_Blue Bed Head|meta|rot3 +_Blue Bed Head|meta|rot4 +Brown Bed +Brown Bed|meta|rot2 +Brown Bed|meta|rot3 +Brown Bed|meta|rot4 +_Brown Bed Head +_Brown Bed Head|meta|rot2 +_Brown Bed Head|meta|rot3 +_Brown Bed Head|meta|rot4 +Green Bed +Green Bed|meta|rot2 +Green Bed|meta|rot3 +Green Bed|meta|rot4 +_Green Bed Head +_Green Bed Head|meta|rot2 +_Green Bed Head|meta|rot3 +_Green Bed Head|meta|rot4 +Red Bed +Red Bed|meta|rot2 +Red Bed|meta|rot3 +Red Bed|meta|rot4 +Magenta Bed +Magenta Bed|meta|rot2 +Magenta Bed|meta|rot3 +Magenta Bed|meta|rot4 +_Magenta Bed Head +_Magenta Bed Head|meta|rot2 +_Magenta Bed Head|meta|rot3 +_Magenta Bed Head|meta|rot4 +Light Blue Bed +Light Blue Bed|meta|rot2 +Light Blue Bed|meta|rot3 +Light Blue Bed|meta|rot4 +_Light Blue Bed Head +_Light Blue Bed Head|meta|rot2 +_Light Blue Bed Head|meta|rot3 +_Light Blue Bed Head|meta|rot4 +Yellow Bed +Yellow Bed|meta|rot2 +Yellow Bed|meta|rot3 +Yellow Bed|meta|rot4 +_Yellow Bed Head +_Yellow Bed Head|meta|rot2 +_Yellow Bed Head|meta|rot3 +_Yellow Bed Head|meta|rot4 +Lime Bed +Lime Bed|meta|rot2 +Lime Bed|meta|rot3 +Lime Bed|meta|rot4 +_Lime Bed Head +_Lime Bed Head|meta|rot2 +_Lime Bed Head|meta|rot3 +_Lime Bed Head|meta|rot4 +Pink Bed +Pink Bed|meta|rot2 +Pink Bed|meta|rot3 +Pink Bed|meta|rot4 +_Pink Bed Head +_Pink Bed Head|meta|rot2 +_Pink Bed Head|meta|rot3 +_Pink Bed Head|meta|rot4 +Gray Bed +Gray Bed|meta|rot2 +Gray Bed|meta|rot3 +Gray Bed|meta|rot4 +_Gray Bed Head +_Gray Bed Head|meta|rot2 +_Gray Bed Head|meta|rot3 +_Gray Bed Head|meta|rot4 +Light Gray Bed +Light Gray Bed|meta|rot2 +Red Ceramic|meta|rot2 +Red Ceramic|meta|rot3 +Red Ceramic|meta|rot4 +Black Ceramic +Black Ceramic|meta|rot2 +Black Ceramic|meta|rot3 +Black Ceramic|meta|rot4 +Wheat Seeds +Wheat_stage1 +Wheat_stage2 +Wheat_stage3 +Wheat_stage4 +Wheat_stage5 +Wheat +Wheat|FreshlyGrown +Tilled Soil +Bread Block +ReservedBread BlockRotation1 +ReservedBread BlockRotation2 +ReservedBread BlockRotation3 +Mossy Messy Stone +Dandelion|Roots +Poppy|Roots +Red Tulip|Roots +Pink Tulip|Roots +White Tulip|Roots +Orange Tulip|Roots +Daisy|Roots +Bluebell|Roots +Forget-me-not|Roots +Allium|Roots +Azure Bluet|Roots +Lily of the Valley|Roots +Shadow Rose|Roots +White Bed +White Bed|meta|rot2 +White Bed|meta|rot3 +White Bed|meta|rot4 +_White Bed Head +_White Bed Head|meta|rot2 +_White Bed Head|meta|rot3 +_White Bed Head|meta|rot4 +Orange Bed +Orange Bed|meta|rot2 +Orange Bed|meta|rot3 +Orange Bed|meta|rot4 +_Orange Bed Head +_Orange Bed Head|meta|rot2 +_Orange Bed Head|meta|rot3 +_Orange Bed Head|meta|rot4 +Orange Ceramic|meta|rot4 +Magenta Ceramic +Magenta Ceramic|meta|rot2 +Magenta Ceramic|meta|rot3 +Magenta Ceramic|meta|rot4 +Light Blue Ceramic +Light Blue Ceramic|meta|rot2 +Light Blue Ceramic|meta|rot3 +Light Blue Ceramic|meta|rot4 +Yellow Ceramic +Yellow Ceramic|meta|rot2 +Yellow Ceramic|meta|rot3 +Yellow Ceramic|meta|rot4 +Lime Ceramic +Lime Ceramic|meta|rot2 +Lime Ceramic|meta|rot3 +Lime Ceramic|meta|rot4 +Pink Ceramic +Pink Ceramic|meta|rot2 +Pink Ceramic|meta|rot3 +Pink Ceramic|meta|rot4 +Gray Ceramic +Gray Ceramic|meta|rot2 +Gray Ceramic|meta|rot3 +Gray Ceramic|meta|rot4 +Light Gray Ceramic +Light Gray Ceramic|meta|rot2 +Light Gray Ceramic|meta|rot3 +Light Gray Ceramic|meta|rot4 +Cyan Ceramic +Cyan Ceramic|meta|rot2 +Cyan Ceramic|meta|rot3 +Cyan Ceramic|meta|rot4 +Purple Ceramic +Purple Ceramic|meta|rot2 +Purple Ceramic|meta|rot3 +Purple Ceramic|meta|rot4 +Blue Ceramic +Blue Ceramic|meta|rot2 +Blue Ceramic|meta|rot3 +Blue Ceramic|meta|rot4 +Brown Ceramic +Brown Ceramic|meta|rot2 +Brown Ceramic|meta|rot3 +Brown Ceramic|meta|rot4 +Green Ceramic +Green Ceramic|meta|rot2 +Green Ceramic|meta|rot3 +Green Ceramic|meta|rot4 +Red Ceramic +Cedar Sapling +Maple Log|TreeBase|Maple +Chest +Chest|meta|rot2 +Chest|meta|rot3 +Chest|meta|rot4 +Pine Leaves|TreeCanopy +Aspen Leaves|TreeCanopy +Maple Leaves|TreeCanopy +Jungle Leaves|TreeCanopy +Protector +Fat Cactus +Dry Fat Cactus +Maple Ladder +Maple Ladder|meta|rot2 +Maple Ladder|meta|rot3 +Maple Ladder|meta|rot4 +Vines +Vines|meta|rot2 +Vines|meta|rot3 +Vines|meta|rot4 +Dirt|GrassRoots +Iron Ladder +Iron Ladder|meta|rot2 +Iron Ladder|meta|rot3 +Iron Ladder|meta|rot4 +White Planks +Orange Planks +Magenta Planks +Light Blue Planks +Yellow Planks +Lime Planks +Pink Planks +Gray Planks +Light Gray Planks +Cyan Planks +Purple Planks +Blue Planks +Brown Planks +Green Planks +Red Planks +Black Planks +Artisan Bench +White Ceramic +White Ceramic|meta|rot2 +White Ceramic|meta|rot3 +White Ceramic|meta|rot4 +Orange Ceramic +Orange Ceramic|meta|rot2 +Orange Ceramic|meta|rot3 +Poppy +Red Tulip +Pink Tulip +White Tulip +Orange Tulip +Daisy +Bluebell +Forget-me-not +Allium +Azure Bluet +Lily of the Valley +Shadow Rose +Furnace +Furnace|meta|rot2 +Furnace|meta|rot3 +Furnace|meta|rot4 +Workbench +Workbench|meta|rot2 +Workbench|meta|rot3 +Workbench|meta|rot4 +Block of Diamond +Maple Door +Maple Door|meta|rot1|open +Maple Door|meta|rot2|closed +Maple Door|meta|rot2|open +Maple Door|meta|rot3|closed +Maple Door|meta|rot3|open +Maple Door|meta|rot4|closed +Maple Door|meta|rot4|open +_Maple Door Top +_Maple Door Top|meta|rot1|open +_Maple Door Top|meta|rot2|closed +_Maple Door Top|meta|rot2|open +_Maple Door Top|meta|rot3|closed +_Maple Door Top|meta|rot3|open +_Maple Door Top|meta|rot4|closed +_Maple Door Top|meta|rot4|open +Maple Trapdoor +Maple Trapdoor|meta|rot1|open +Maple Trapdoor|meta|rot2|closed +Maple Trapdoor|meta|rot2|open +Maple Trapdoor|meta|rot3|closed +Maple Trapdoor|meta|rot3|open +Maple Trapdoor|meta|rot4|closed +Maple Trapdoor|meta|rot4|open +Aspen Sapling +Maple Sapling +Jungle Sapling +Plum Sapling +Pine Sapling +Maple Leaves +Jungle Leaves +Pumpkin_placeholder +Watermelon +Glass +Black Glass +Blue Glass +Brown Glass +Cyan Glass +Gray Glass +Light Gray Glass +Green Glass +Light Blue Glass +Lime Glass +Magenta Glass +Orange Glass +Pink Glass +Purple Glass +Red Glass +White Glass +Yellow Glass +UNUSED BLOCK TYPE +Dim Lamp On +Dim Lamp Off +Water +Invisible Solid +Bricks +Stone Bricks +Dark Red Brick +Dark Red Stone +Block of Quartz +Chiseled Block of Quartz +Engraved Stone +Mossy Stone Bricks +Cracked Stone Bricks +Smooth Sandstone +Engraved Sandstone +Ice +Obsidian +Hay Bale +Sponge +Beacon +temp +Golden Decoration +Moonstone Explosive +Bedrock +Smooth Double Stone Slab +Cactus +Grass +Dandelion +Orange Wool +Magenta Wool +Light Blue Wool +Yellow Wool +Lime Wool +Pink Wool +Gray Wool +Light Gray Wool +Cyan Wool +Purple Wool +Blue Wool +Brown Wool +Green Wool +Red Wool +Black Wool +Baked Clay +White Baked Clay +Orange Baked Clay +Magenta Baked Clay +Light Blue Baked Clay +Yellow Baked Clay +Lime Baked Clay +Pink Baked Clay +Gray Baked Clay +Light Gray Baked Clay +Cyan Baked Clay +Purple Baked Clay +Blue Baked Clay +Brown Baked Clay +Green Baked Clay +Red Baked Clay +Black Baked Clay +Gray Concrete +Light Gray Concrete +Black Concrete +Blue Concrete +Brown Concrete +Cyan Concrete +Light Blue Concrete +Lime Concrete +Magenta Concrete +Orange Concrete +Pink Concrete +Purple Concrete +Red Concrete +White Concrete +Green Concrete +Yellow Concrete +Pine Leaves +Aspen Leaves +Dirt +Messy Dirt +Grass Block +Sand +Clay +Gravel +Snow +Maple Log +Pine Log +Plum Log +Cedar Log +Aspen Log +Jungle Log +Maple Wood Planks +Aspen Wood Planks +Plum Wood Planks +Jungle Wood Planks +Pine Wood Planks +Cedar Wood Planks +Barkless Maple Log +Barkless Aspen Log +Barkless Plum Log +Barkless Jungle Log +Barkless Pine Log +Barkless Cedar Log +free_placeholder2 +Stone +Messy Stone +free_placeholder +Smooth Stone +Diorite +Smooth Diorite +Andesite +Smooth Andesite +Granite +Smooth Granite +Sandstone +Yellowstone +Coal Ore +Iron Ore +Gold Ore +Lapis Lazuli Ore +Emerald Ore +Diamond Ore +Block of Coal +Block of Iron +Block of Gold +Block of Lapis Lazuli +Block of Emerald +White Wool +``` diff --git a/MOB_SETTINGS.md b/Mob Settings.md similarity index 50% rename from MOB_SETTINGS.md rename to Mob Settings.md index 252e615..a5c7f4c 100644 --- a/MOB_SETTINGS.md +++ b/Mob Settings.md @@ -1,6 +1,8 @@ # Mob Settings These impact the behaviour of mobs, what they look like, and how they sound. These can either be set on a per-mob basis or the default can be set for all mobs of a particular type. + +## API Methods to Get/Set Mob Settings These API methods allow you to modify mob settings: ```js @@ -12,7 +14,9 @@ These API methods allow you to modify mob settings: * @returns {MobSettings[TMobSetting]} */ getDefaultMobSetting(mobType, setting) +``` +```js /** * Set the default value for a mob setting. * @param {TMobType} mobType @@ -21,7 +25,9 @@ getDefaultMobSetting(mobType, setting) * @returns {void} */ setDefaultMobSetting(mobType, setting, value) +``` +```js /** * Get the current value of a mob setting for a specific mob. * @param {MobId} mobId @@ -29,7 +35,9 @@ setDefaultMobSetting(mobType, setting, value) * @returns {MobSettings[TMobSetting]} */ getMobSetting(mobId, setting) +``` +```js /** * Set the current value of a mob setting for a specific mob. * @param {MobId} mobId @@ -40,6 +48,7 @@ getMobSetting(mobId, setting) setMobSetting(mobId, setting, value) ``` +### Settings and Values for them Here is the full list of available mob settings: ```js @@ -47,42 +56,58 @@ Here is the full list of available mob settings: * @type {"default"} */ variation = "default" +``` +```js /** * @type {string} */ name = "" +``` +```js /** * @type {number} */ maxHealth = 75 +``` +```js /** * @type {number} */ initialHealth = 75 +``` +```js /** * @type {string} */ idleSound = "pigOink" +``` +```js /** * @type {string} */ attackSound = null +``` +```js /** * @type {string} */ secondaryAttackSound = null +``` +```js /** * @type {string} */ hurtSound = "pigHurt" +``` +```js /** * @type { { itemName: string; probabilityOfDrop: number; dropMinAmount: number; dropMaxAmount: number; applyBurstImpulseToDrop?: boolean; }[] } */ @@ -94,169 +119,354 @@ onDeathItemDrops = [ dropMaxAmount: 3, }, ] +``` +```js /** * @type {string} */ onDeathParticleTexture = "critical_hit" +``` +```js /** * @type {number} */ onDeathAura = 20 +``` +```js /** * @type {number} */ baseWalkingSpeed = 3.5 +``` +```js /** * @type {number} */ -baseRunningSpeed = 4.55 +baseRunningSpeed = 4.55 * 0.85 +``` +```js /** * @type {number} */ walkingSpeedMultiplier = 1 +``` +```js /** * @type {number} */ runningSpeedMultiplier = 1 +``` +```js /** * @type {number} */ jumpCount = 0 +``` +```js /** * @type {number} */ baseJumpImpulseXZ = 0 +``` +```js /** * @type {number} */ baseJumpImpulseY = 0 +``` +```js /** * @type {number} */ jumpMultiplier = 1 +``` +```js /** * @type {number} */ runAwayRadius = 0 +``` +```js /** * @type {number} */ chaseRadius = 0 +``` +```js /** * @type {number} */ territoryRadius = 0 +``` +```js /** * @type {number} */ hostilityRadius = 0 +``` +```js /** * @type {number} */ stoppingRadius = 0.5 +``` +```js /** * @type {number} */ attackInterval = 0 +``` +```js /** * @type {number} */ attackRadius = 0 +``` +```js /** * @type {number} */ secondaryAttackRadius = 0 +``` +```js /** * @type {number} */ attackDamage = 0 +``` +```js /** * @type {number} */ secondaryAttackDamage = 0 +``` +```js /** * @type {number} */ attackImpulse = 0 +``` +```js /** * @type {number} */ secondaryAttackImpulse = 0 +``` +```js /** * @type {string} */ heldItemName = null +``` +```js /** * @type {string} */ attackItemName = null +``` +```js /** * @type {string} */ secondaryAttackItemName = null +``` +```js /** * @type {string} */ attackEffectName = null +``` +```js /** * @type {number} */ attackEffectDuration = 0 +``` +```js /** - * @type {Readonly} - */ -tameInfo = null + * @type {MobTameInfo} + */ +tameInfo = { + tameItemName: [ + "Raw Porkchop", + "Raw Beef", + "Raw Mutton", + "Raw Venison", + "Cooked Porkchop", + "Steak", + "Cooked Mutton", + "Cooked Venison" + ], + probabilityOfTame: 0.32, + isSaddleable: false, + foodItemNames: [ + "Raw Porkchop", + "Raw Beef", + "Raw Mutton", + "Raw Venison", + "Cooked Porkchop", + "Steak", + "Cooked Mutton", + "Cooked Venison", + "Rotten Flesh" + ], + foodItemsWithEffects: [ + { + itemName: "Catnip", + effects: [ + { + name: "Speed", + duration: 30000, + level: 1 + }, + { + name: "Damage", + duration: 30000, + level: 1 + } + ] + } + ] +} +``` +```js /** * @type {number} */ onTamedHealthMultiplier = 4.0 +``` +```js /** * @type {string} */ ownerDbId = null +``` +```js /** * @type {number} */ minFollowingRadius = 3 +``` +```js /** * @type {number} */ maxFollowingRadius = 12 +``` +```js +/** + * @type {boolean} + */ +isRideable = false +``` + +```js /** * @type {string} */ metaInfo = "" ``` + +## Mob Types and Variations +> [!NOTE] +> This is not from the offical documentation, this was put together by NlGBOB + +```json +{ + "Sheep": ["default"], + "Stag": ["default"], + "Wildcat": [ + "default", + "tabby", + "grey", + "black", + "calico", + "siamese", + "leopard" + ], + "Wolf": [ + "default", + "white", + "brown", + "grey", + "spectral" + ], + "Bear": ["default"], + "Cave Golem": ["default", "iron"], + "Cow": ["default", "cream"], + "Deer": ["default"], + "Draugr Huntress": ["default", "chainmail"], + "Draugr Knight": ["default"], + "Draugr Skeleton": ["default"], + "Draugr Zombie": ["default", "longHairChestplate", "longHairClothed", "shortHairClothed"], + "Frost Golem": ["default"], + "Frost Skeleton": ["default"], + "Frost Zombie": ["default", "longHairChestplate", "shortHairClothed"], + "Gold Watermelon Stag": ["default"], + "Gorilla": ["default"], + "Horse": ["default", "black", "brown", "cream"], + "Iron Golem": ["default"], + "Magma Golem": ["default"], + "Pig": ["default"] +} +``` +> [!NOTE] +> From the offical documentation: + +Some mob types support variations other than just `"default"`: + +```js +Pig: "default" +Cow: "default", "cream" +Sheep: "default" +Horse: "default", "black", "brown", "cream" +Cave Golem: "default", "iron" +Draugr Zombie: "default", "longHairChestplate", "longHairClothed", "shortHairClothed" +Draugr Skeleton: "default" +Frost Golem: "default" +Frost Zombie: "default", "longHairChestplate", "shortHairClothed" +Frost Skeleton: "default" +Draugr Knight: "default" +Wolf: "default", "white", "brown", "grey", "spectral" +Bear: "default" +Deer: "default" +Stag: "default" +Gold Watermelon Stag: "default" +Gorilla: "default" +Wildcat: "default", "tabby", "grey", "black", "calico", "siamese", "leopard" +Magma Golem: "default" +Draugr Huntress: "default", "chainmail" +``` diff --git a/PARTICLES.md b/Particles.md similarity index 97% rename from PARTICLES.md rename to Particles.md index 8506661..c2c435a 100644 --- a/PARTICLES.md +++ b/Particles.md @@ -10,6 +10,8 @@ These are the strings you can give to functions that take a particle effect `tex `glint` `soul_0` `square_particle` +`heart` +`z-particle` Here's the code for an example particle effect: diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..1b9c258 --- /dev/null +++ b/Readme.md @@ -0,0 +1,66 @@ +# Readme +> [!NOTE] +> This is not the official documentation and is not edited or run by any of Bloxd.io's Devs, this is ment to be an additional resource to the official documentation. + +> [!WARNING] +> This repository may contain out-of-date or incorrect information at times, but the maintaners will try to keep this as up-to-date and correct as they can. + +> [!TIP] +> Find information that you think should be added or changed? Create a pull request! + +You can run JavaScript when right clicking code blocks and press to code boards. +This is only available to owners of worlds lobbies. +The JavaScript can interact with the Bloxd.io game api. + +Please use [Bloxd.io's official discord server](https://discord.gg/vwMp5y25RX) to report any issues you come across or features you'd like to see added. +Please create a pull request if you notice incorrect, or missing information in this version of the documenation. + +## Code Blocks + +- World owners can find these by searching in the creative menu +- No need to add `press to code`, this text is only needed for code boards, and will automatically be removed +- If you want to run code without opening the code editor, you can trigger the code block by right clicking an adjacent `press to code` board instead +- Code Blocks can not use `callbacks` cause Code Blocks only run when pressed + +## World Code + +- World owners can access the World code editor by pressing F8 or by clicking the World Code button in the Code Block editor +- Like Code Blocks there is no need to add `press to code` +- Unlike Code Blocks, World Code can contain `callbacks` and will run the code inside of a callback when the callback is triggered +- There is no way to trigger a Code Block or sign from World Code + +## Boards + +- You can begin a board with `press to code` to run javascript when you right click it. +- Normally you can't edit a code board after placing it, but you can currently work around this by putting a space before `press to code`. +- Boards only allow for a small amount of text, we recommend you use Code Blocks instead, or you can work around this by using multiple boards + +## Notes + +- Global variable `myId` stores the player ID of who is running the code, it can not be used in World code. +- Global variable `thisPos` stores the position of the currently executing code block or press to code board, it can not be used in World code. +- You can use `api.log` or `console.log` for printing and debugging (they do the same thing). +- You can use `Date.now()` instead of `api.now()` if you prefer, both return the time in milliseconds. +- Comments like `/* comment */` and `// comment` work. +- World Code and Code Blocks are limited to 16,000 charecters including spaces and returns. The code editor is 80 charecters wide. +- The JavaScript `var` variable can be called from World Code, Code Blocks, and Boards, regardless of which ones it is defined in. (Note though that if it is placed in a Code Block or Board that it must be executed before the variable can be used.) + +> [!NOTE] +> The official documentation will say that `// comments` will not work, but that is incorrect as they now work. + +## About this repository +This was created because the original documentation was not well explained or organized and lacked information that many people agreed would be helpful. So here it is, it's not perfect, but it contains more information then the original documentation. There may from time to time be errors in the documenation and it may lack newer information. That's why it's highly recomended that if you notice that there's missing information or that there's an error somewhere that you create a pull request. Also if you think that you have information that may be helpful to new coder that you create a pull request to add it here under the `Information` header. You will find that most of the files here are not formated the same as the original documentation, this is on purpose so that it's easier to search through for the information you want. + +## Information +> [!NOTE] +> This section needs information, please create a pull request if you have information for this section. + +## FAQ +**Q:** What is the `playerId` in functions and callbacks? +**A:** It is field that contains the Id of a player. In `Code Blocks` and `Press to Code` signs it can contain the varible `myId` which will return the Id of the player that activated the code. In `World Code` though `myId` doesn't work cause code gets activated by callbacks. So instead in the `playerId` field in the callback we can place somthing like `pId` and that will define `pId` as the playerId of the player that triggered that callback. So we would can then place `pId` in to the `playerId` field in functions in that callback. + +**Q:** Where can I use callbacks? +**A:** You can only use callbacks in `World Code` cause `Code Blocks` and `Press to Code` signs only get activated when a player presses them. + +**Q:** What is the difference between `World Code` and `Code Blocks`? +**A:** `World Code` runs all the time and when a callback in `World Code` get triggered it runs the code in that callback. `Code Blocks` though only get triggered when a player presses them or a sign next to them gets triggered. But `World Code` is limited to 16,000 characters (including spaces) and you can only have one `World Code` for each world. But even though `Code Blocks` are also limited to 16,000 characters as well, you can have an unlimited amount of them. diff --git a/Skins and Poses.md b/Skins and Poses.md new file mode 100644 index 0000000..6071605 --- /dev/null +++ b/Skins and Poses.md @@ -0,0 +1,34 @@ +# Skins +> [!NOTE] +> Thank you to the_ccccc for sharing these! + +`TraderOne` +`TraderTwo` +`TraderThree` +`IronMelon` +`FireWizard` +`Wizard` +`Zombie` + +## Function +```js +api.changePlayerIntoSkin(myId, 'body', ''Wizard') +``` + +# Poses +`standing` +`sitting` +`sleeping` +`gliding` +`driving` +`zombie` + +## Function +```js +api.setPlayerPose(myId, 'standing') +``` + +# Parts +`head` +`body` +`legs` diff --git a/Songs.md b/Songs.md new file mode 100644 index 0000000..bddceab --- /dev/null +++ b/Songs.md @@ -0,0 +1,57 @@ +# Music +> [!NOTE] +> This list may not be complete, if you have any other song names feel free to make a pull request to get them added. + +> [!TIP] +> Use `api.setClientOption(myId, 'music', '/* Name of song you want to play */')` to play music from a code block +``` +Awkward Comedy Quirky +battle-ship-111902 +cdk-Silence-Await +corsairs-studiokolomna-main-version-23542-02-33 +ghost-Reverie-small-theme +happy +Heroic-Demise-New +I-am-the-Sea-The-Room-4 +progress +raise-the-sails-152124 +ramblinglibrarian-I-Have-Often-T +Slow-Motion-Bensound +snowflake-Ethereal-Space +the-epic-adventure-131399 +The Suspense Ambient +TownTheme +LonePeakMusic-Highway-1 +``` +## Adigold +``` +Adigold - A Place To Be Free +Adigold - Butterfly Effect +Adigold - Dreamless Sleep +Adigold - Frozen Pulse +Adigold - Frozen Skies +Adigold - Healing Thoughts +Adigold - Here Forever +Adigold - Just a Little Hope +Adigold - Just Like Heaven +Adigold - Memories Remain +Adigold - Place To Be +Adigold - The Riverside +Adigold - The Wonder +Adigold - Vetrar (Cut B) +``` +## Jugani Jukala +``` +Juhani Junkala [Retro Game Music Pack] Ending +Juhani Junkala [Retro Game Music Pack] Level 1 +Juhani Junkala [Retro Game Music Pack] Level 2 +Juhani Junkala [Retro Game Music Pack] Level 3 +Juhani Junkala [Retro Game Music Pack] Title Screen +``` +## Mojo Productions +``` +Mojo Productions - Pirates +Mojo Productions - Sneaky Jazz +Mojo Productions - The Sneaky +Mojo Productions - The Sneaky Jazz +``` \ No newline at end of file diff --git a/SOUND_NAMES.md b/Sound Names.md similarity index 53% rename from SOUND_NAMES.md rename to Sound Names.md index c58ef88..be5386e 100644 --- a/SOUND_NAMES.md +++ b/Sound Names.md @@ -1,121 +1,207 @@ # Sound Names +## Functions to play sounds +```js +/** + * @param {PlayerId} playerId - hears the sound + * @param {string} soundName - Can also be a prefix. If so, a random sound with that prefix will be played + * @param {number} volume - 0-1. If it's too quiet and volume is 1, normalise your sound in audacity + * @param {number} rate - The speed of playback. Also affects pitch. 0.5-4. Lower playback = lower pitch + * @param { { + * playerIdOrPos: PlayerId | number[] + * maxHearDist?: number + * refDistance?: number + * } } [posSettings] + * @returns {void} + */ +playSound(playerId, soundName, volume, rate, posSettings) +``` + +```js +/** + * See documentation for api.playSound + * @param {string} soundName + * @param {number} volume + * @param {number} rate + * @param { { + * playerIdOrPos: PlayerId | number[] + * maxHearDist?: number + * refDistance?: number + * } } [posSettings] + * @param {PlayerId} [exceptPlayerId] + * @returns {void} + */ +broadcastSound(soundName, volume, rate, posSettings, exceptPlayerId) +``` + +```js +/** + * See documentation for api.playSound + * @param {string} soundName + * @param {number} volume + * @param {number} rate + * @param { { + * playerIdOrPos: PlayerId | number[] + * maxHearDist?: number + * refDistance?: number + * } } [posSettings] + * @param {PlayerId} [predictedBy] + * @returns {void} + */ +playClientPredictedSound(soundName, volume, rate, posSettings, predictedBy) +``` + +## Sounds - These are the strings you can give to functions that take a `soundName` as input - If you want a random similar sound then you can remove the number from the sound name of your choice - If a sound isn't working then there might be an error in your console explaining why `beep` `bow` +`burp` +`cashRegister` +`chestClose` +`chestOpen` +`drink` +`eat1` +`equip_leather1` +`fallsmall` +`pickUp` +`levelup` +`successfulBowHit` +`sweep6` +`trapdoorOpen` + +### Firecracker +`firecracker1` +`firecracker2` +`firecracker3` +`firecracker4` + +### Game Sounds +`game_start_countdown_01` +`game_start_countdow +_02` `game_start_countdown_03` +`game_start_countdown_final` + +### Bucket sounds + `bucketEmpty1` `bucketEmpty2` `bucketEmpty3` `bucketFill1` `bucketFill2` `bucketFill3` + +### Bullet/Gun/Cannon sounds + `bullet_shell_bounce_general_07` `bullet_shell_bounce_general_08` -`burp` + +#### Cannon + `cannonFire1` `cannonFire2` `cannonFire3` -`cashRegister` -`caveGolem1` -`caveGolem2` -`caveGolem3` -`caveGolem4` -`chestClose` -`chestOpen` -`cloth1` -`cloth2` -`cloth3` -`cloth4` -`cowMoo1` -`cowMoo2` -`cowMoo3` -`doorClose` -`doorClose2` -`doorOpen-bloxd1` -`doorOpen-bloxd2` -`drink` -`eat1` -`equip_leather1` -`exp_collect` -`exp_levelup` -`fallsmall` -`glass1` -`glass2` -`glass3` -`grass1` -`grass2` -`grass3` -`grass4` -`gravel1` -`gravel2` -`gravel3` -`gravel4` + +#### Headshot + `headshot_04` `headshot_06` `headshot_08` `headshot_11` + +#### Hit + `hit1` `hit2` `hit3` -`hoeTill1` -`hoeTill2` -`hoeTill3` -`hoeTill4` -`pickUp` -`pigOink1` -`pigOink2` -`pigOink3` -`pigOink4` -`pigOink5` + +#### Pistol +##### Cock + `pistol_cock_01` `pistol_cock_02` `pistol_cock_03` `pistol_cock_06` + +##### Magazine + +###### Load + `pistol_magazine_load_01` `pistol_magazine_load_02` `pistol_magazine_load_03` + +###### Unload + `pistol_magazine_unload_01` `pistol_magazine_unload_02` `pistol_magazine_unload_03` + +##### Shot + `pistol_shot_01` `pistol_shot_02` `pistol_shot_03` `pistol_shot_04` `pistol_shot_05` + +#### Rifle +##### Cock + `rifle_cock_01` `rifle_cock_02` + +##### Magazine +###### Load + `rifle_magazine_load_01` `rifle_magazine_load_02` `rifle_magazine_load_03` + +###### Unload + `rifle_magazine_unload_01` `rifle_magazine_unload_02` `rifle_magazine_unload_04` + +##### Shot + `rifle_shot_01` `rifle_shot_02` `rifle_shot_03` `rifle_shot_04` -`sand1` -`sand2` -`sand3` -`sand4` + +#### SemiAuto + +##### Cock + `semiAuto_cock_01` `semiAuto_cock_02` `semiAuto_cock_03` `semiAuto_cock_04` `semiAuto_cock_05` -`semiAuto_first_shot_01` + +##### Magazine +###### Load + `semiAuto_magazine_load_01` `semiAuto_magazine_load_02` `semiAuto_magazine_load_03` `semiAuto_magazine_load_04` `semiAuto_magazine_load_05` + +###### Unload + `semiAuto_magazine_unload_01` `semiAuto_magazine_unload_02` `semiAuto_magazine_unload_03` `semiAuto_magazine_unload_04` + +##### Shot + +`semiAuto_first_shot_01` `semiAuto_shot_01` `semiAuto_shot_02` `semiAuto_shot_03` @@ -125,15 +211,18 @@ `semiAuto_shot_07` `semiAuto_shot_08` `semiAuto_tail_only_shot_01` -`sheepBaa1` -`sheepBaa2` -`sheepBaa3` -`sheepBaa4` + +#### Shotgun +##### Cock + `shotgun_cock_01` `shotgun_cock_02` `shotgun_cock_03` `shotgun_cock_04` `shotgun_cock_05` + +##### Load + `shotgun_load_bullet_01` `shotgun_load_bullet_02` `shotgun_load_bullet_03` @@ -142,92 +231,316 @@ `shotgun_load_bullet_06` `shotgun_load_bullet_07` `shotgun_load_bullet_08` + +##### Shot + `shotgun_shot_01` `shotgun_shot_02` `shotgun_shot_03` `shotgun_shot_04` + + +#### Submachine +##### Cock + +`submachine_cock_01` +`submachine_cock_02` +`submachine_cock_03` +`submachine_cock_04` + +##### Magazine +###### Load + +`submachine_magazine_load_01` +`submachine_magazine_load_02` +`submachine_magazine_load_03` +`submachine_magazine_load_04` + + +###### Unload + +`submachine_magazine_unload_01` +`submachine_magazine_unload_02` +`submachine_magazine_unload_03` + +##### Shot + +`submachine_first_shot_01` +`submachine_shot_01` +`submachine_shot_02` +`submachine_shot_03` +`submachine_shot_04` +`submachine_shot_05` +`submachine_shot_06` +`submachine_shot_07` +`submachine_shot_08` +`submachine_shot_09` +`submachine_tail_only_shot_01` + +### Mob Sounds +#### Golem +`golemGrunt1` +`golemGrunt2` + +##### CaveGolem +`caveGolem1` +`caveGolem2` +`caveGolem3` +`caveGolem4` + +#### Cow +`cowMoo1` +`cowMoo2` +`cowMoo3` +`cowHurt1` + +#### Pig +##### Oink +`pigOink1` +`pigOink2` +`pigOink3` +`pigOink4` +`pigOink5` + +##### Hurt +`pigHurt1` +`pigHurt2` +`pigHurt3` + +#### Sheep + +`sheepBaa1` +`sheepBaa2` +`sheepBaa3` +`sheepBaa4` +`sheepHurt1` + +#### Dear +`deerGrunt1` +`deerHurt1` + +#### Stag +`stagGrunt1` +`stagHurt1` + +#### Bear +`bearRoar1` +`bearRoar2` +`bearRoar3` +`bearRoar4` +`bearRoar5` + +#### Gorilla +`gorillaIdle1` +`gorillaIdle2` +`gorillaIdle3` +`gorillaIdle4` +`gorillaRoar1` + +#### Dog +##### Bark +`dogBark1` +`dogBark2` +`dogBark3` + +##### Growl +`dogGrowl1` +`dogGrowl2` +`dogGrowl3` + +##### Hurt +`dogHurt1` +`dogHurt2` + +#### Cat +##### Hiss +`catHiss1` +`catHiss2` +`catHiss3` +`catHiss4` + +##### Hurt +`catHurt1` +`catHurt2` +`catHurt3` + +##### Meow +`catMeow1` +`catMeow2` +`catMeow3` +`catMeow4` +`catMeow5` + +#### Horse +`horseHurt1` +`horseHurt2` +`horseIdle1` +`horseIdle2` +`horseIdle3` + +#### Zombie +##### Grunt + +`ZombieGrunt1` +`ZombieGrunt2` +`ZombieGrunt3` + +##### Hurt + +`ZombieHurt1` +`ZombieHurt2` +`ZombieHurt3` +`ZombieHurt4` + +#### Knight +`knightGrunt1` +`knightGrunt2` +`knightGrunt3` + +#### Skeletion +`skeletonRattle1` +`skeletonRattle2` +`skeletonRattle3` +`skeletonRattle4` + +### Door Sounds + +`doorClose` +`doorClose2` +`doorOpen-bloxd1` +`doorOpen-bloxd2` + +### XP Sounds + +`exp_collect` +`exp_levelup` + +### Glass Sounds + +`glass1` +`glass2` +`glass3` + +### Cloth + +`cloth1` +`cloth2` +`cloth3` +`cloth4` + +### Grass Sounds + +`grass1` +`grass2` +`grass3` +`grass4` + +### Gravel Sounds + +`gravel1` +`gravel2` +`gravel3` +`gravel4` + +### Hoe Sounds + +`hoeTill1` +`hoeTill2` +`hoeTill3` +`hoeTill4` + +### Sand + +`sand1` +`sand2` +`sand3` +`sand4` + +### Snow + `snow1` `snow2` `snow3` `snow4` `splash1` + +### Step +#### Cloth + `step_cloth1` `step_cloth2` `step_cloth3` `step_cloth4` + +#### Grass + `step_grass1` `step_grass2` `step_grass3` `step_grass4` `step_grass5` + +#### Gravel + `step_gravel1` `step_gravel2` `step_gravel3` `step_gravel4` + +#### Sand + `step_sand2` `step_sand3` `step_sand4` `step_sand5` + +#### Snow + `step_snow1` `step_snow2` `step_snow3` `step_snow4` + +#### Stone + `step_stone1` `step_stone2` `step_stone3` `step_stone4` `step_stone5` `step_stone6` + +#### Wood + `step_wood1` `step_wood2` `step_wood3` `step_wood4` `step_wood5` `step_wood6` + +### Stone + `stone1` `stone2` `stone3` `stone4` -`submachine_cock_01` -`submachine_cock_02` -`submachine_cock_03` -`submachine_cock_04` -`submachine_first_shot_01` -`submachine_magazine_load_01` -`submachine_magazine_load_02` -`submachine_magazine_load_03` -`submachine_magazine_load_04` -`submachine_magazine_unload_01` -`submachine_magazine_unload_02` -`submachine_magazine_unload_03` -`submachine_shot_01` -`submachine_shot_02` -`submachine_shot_03` -`submachine_shot_04` -`submachine_shot_05` -`submachine_shot_06` -`submachine_shot_07` -`submachine_shot_08` -`submachine_shot_09` -`submachine_tail_only_shot_01` -`successfulBowHit` -`sweep6` -`trapdoorOpen` + +### Wood + `wood1` `wood2` `wood3` `wood4` -`ZombieGrunt1` -`ZombieGrunt2` -`ZombieGrunt3` -`ZombieHurt1` -`ZombieHurt2` -`ZombieHurt3` -`ZombieHurt4` + +### Bass + `bass` `bassattack` + +### Misc + `bd` `harp_pling` `hat` -`levelup` `snare` diff --git a/blockMetadata.json b/blockMetadata.json new file mode 100644 index 0000000..b345236 --- /dev/null +++ b/blockMetadata.json @@ -0,0 +1,139654 @@ +{ + "1": { + "ttb": 100, + "textureInfo": "unloaded", + "harvestType": "granule", + "id": 1, + "name": "Unloaded", + "stackable": true, + "meta": { + "rootName": "Unloaded", + "rootId": 1, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 76 + }, + "2": { + "displayName": { + "translationKey": "item:dirt" + }, + "ttb": 600, + "textureInfo": "dirt", + "harvestType": "granule", + "id": 2, + "name": "Dirt", + "stackable": true, + "meta": { + "rootName": "Dirt", + "rootId": 2, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 77 + }, + "3": { + "displayName": { + "translationKey": "item:messyDirt" + }, + "ttb": 600, + "textureInfo": "coarse_dirt", + "harvestType": "granule", + "id": 3, + "name": "Messy Dirt", + "stackable": true, + "meta": { + "rootName": "Messy Dirt", + "rootId": 3, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 78 + }, + "4": { + "displayName": { + "translationKey": "item:grassBlock" + }, + "ttb": 720, + "textureInfo": "grass_top", + "harvestType": "granule", + "soundType": { + "break": "grass", + "place": "grass" + }, + "id": 4, + "name": "Grass Block", + "stackable": true, + "meta": { + "rootName": "Grass Block", + "rootId": 4, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 79 + }, + "5": { + "displayName": { + "translationKey": "item:sand" + }, + "ttb": 600, + "textureInfo": "sand", + "harvestType": "granule", + "soundType": { + "break": "sand", + "place": "sand" + }, + "id": 5, + "name": "Sand", + "stackable": true, + "meta": { + "rootName": "Sand", + "rootId": 5, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 80 + }, + "6": { + "displayName": { + "translationKey": "item:clay" + }, + "ttb": 720, + "textureInfo": "clay", + "harvestType": "granule", + "id": 6, + "name": "Clay", + "stackable": true, + "meta": { + "rootName": "Clay", + "rootId": 6, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 81 + }, + "7": { + "displayName": { + "translationKey": "item:gravel" + }, + "ttb": 720, + "textureInfo": "gravel", + "harvestType": "granule", + "id": 7, + "name": "Gravel", + "stackable": true, + "meta": { + "rootName": "Gravel", + "rootId": 7, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 82 + }, + "8": { + "displayName": { + "translationKey": "item:snow" + }, + "ttb": 600, + "textureInfo": "snow", + "harvestType": "granule", + "soundType": { + "break": "snow", + "place": "snow" + }, + "id": 8, + "name": "Snow", + "stackable": true, + "meta": { + "rootName": "Snow", + "rootId": 8, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 83 + }, + "9": { + "displayName": { + "translationKey": "item:mapleLog" + }, + "ttb": 2400, + "textureInfo": "log_maple", + "harvestType": "wood", + "id": 9, + "name": "Maple Log", + "stackable": true, + "meta": { + "rootName": "Maple Log", + "rootId": 9, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 84 + }, + "10": { + "displayName": { + "translationKey": "item:pineLog" + }, + "ttb": 2400, + "textureInfo": "log_pine", + "harvestType": "wood", + "id": 10, + "name": "Pine Log", + "stackable": true, + "meta": { + "rootName": "Pine Log", + "rootId": 10, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 85 + }, + "11": { + "displayName": { + "translationKey": "item:plumLog" + }, + "ttb": 2400, + "textureInfo": "log_plum", + "harvestType": "wood", + "id": 11, + "name": "Plum Log", + "stackable": true, + "meta": { + "rootName": "Plum Log", + "rootId": 11, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 86 + }, + "12": { + "displayName": { + "translationKey": "item:cedarLog" + }, + "ttb": 2400, + "textureInfo": "log_cedar", + "harvestType": "wood", + "id": 12, + "name": "Cedar Log", + "stackable": true, + "meta": { + "rootName": "Cedar Log", + "rootId": 12, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 87 + }, + "13": { + "displayName": { + "translationKey": "item:aspenLog" + }, + "ttb": 2400, + "textureInfo": "log_aspen", + "harvestType": "wood", + "id": 13, + "name": "Aspen Log", + "stackable": true, + "meta": { + "rootName": "Aspen Log", + "rootId": 13, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 88 + }, + "14": { + "displayName": { + "translationKey": "item:jungleLog" + }, + "ttb": 2400, + "textureInfo": "log_jungle", + "harvestType": "wood", + "id": 14, + "name": "Jungle Log", + "stackable": true, + "meta": { + "rootName": "Jungle Log", + "rootId": 14, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 89 + }, + "15": { + "displayName": { + "translationKey": "item:mapleWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_maple", + "harvestType": "wood", + "id": 15, + "name": "Maple Wood Planks", + "stackable": true, + "meta": { + "rootName": "Maple Wood Planks", + "rootId": 15, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 90 + }, + "16": { + "displayName": { + "translationKey": "item:aspenWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_aspen", + "harvestType": "wood", + "id": 16, + "name": "Aspen Wood Planks", + "stackable": true, + "meta": { + "rootName": "Aspen Wood Planks", + "rootId": 16, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 91 + }, + "17": { + "displayName": { + "translationKey": "item:plumWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_plum", + "harvestType": "wood", + "id": 17, + "name": "Plum Wood Planks", + "stackable": true, + "meta": { + "rootName": "Plum Wood Planks", + "rootId": 17, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 92 + }, + "18": { + "displayName": { + "translationKey": "item:jungleWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_jungle", + "harvestType": "wood", + "id": 18, + "name": "Jungle Wood Planks", + "stackable": true, + "meta": { + "rootName": "Jungle Wood Planks", + "rootId": 18, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 93 + }, + "19": { + "displayName": { + "translationKey": "item:pineWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_pine", + "harvestType": "wood", + "id": 19, + "name": "Pine Wood Planks", + "stackable": true, + "meta": { + "rootName": "Pine Wood Planks", + "rootId": 19, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 94 + }, + "20": { + "displayName": { + "translationKey": "item:cedarWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_cedar", + "harvestType": "wood", + "id": 20, + "name": "Cedar Wood Planks", + "stackable": true, + "meta": { + "rootName": "Cedar Wood Planks", + "rootId": 20, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 95 + }, + "21": { + "displayName": { + "translationKey": "item:barklessMapleLog" + }, + "ttb": 2000, + "textureInfo": "stripped_maple_log", + "harvestType": "wood", + "id": 21, + "name": "Barkless Maple Log", + "stackable": true, + "meta": { + "rootName": "Barkless Maple Log", + "rootId": 21, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 96 + }, + "22": { + "displayName": { + "translationKey": "item:barklessAspenLog" + }, + "ttb": 2000, + "textureInfo": "stripped_aspen_log", + "harvestType": "wood", + "id": 22, + "name": "Barkless Aspen Log", + "stackable": true, + "meta": { + "rootName": "Barkless Aspen Log", + "rootId": 22, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 97 + }, + "23": { + "displayName": { + "translationKey": "item:barklessPlumLog" + }, + "ttb": 2000, + "textureInfo": "stripped_plum_log", + "harvestType": "wood", + "id": 23, + "name": "Barkless Plum Log", + "stackable": true, + "meta": { + "rootName": "Barkless Plum Log", + "rootId": 23, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 98 + }, + "24": { + "displayName": { + "translationKey": "item:barklessJungleLog" + }, + "ttb": 2000, + "textureInfo": "stripped_jungle_log", + "harvestType": "wood", + "id": 24, + "name": "Barkless Jungle Log", + "stackable": true, + "meta": { + "rootName": "Barkless Jungle Log", + "rootId": 24, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 99 + }, + "25": { + "displayName": { + "translationKey": "item:barklessPineLog" + }, + "ttb": 2000, + "textureInfo": "stripped_pine_log", + "harvestType": "wood", + "id": 25, + "name": "Barkless Pine Log", + "stackable": true, + "meta": { + "rootName": "Barkless Pine Log", + "rootId": 25, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 100 + }, + "26": { + "displayName": { + "translationKey": "item:barklessCedarLog" + }, + "ttb": 2000, + "textureInfo": "stripped_cedar_log", + "harvestType": "wood", + "id": 26, + "name": "Barkless Cedar Log", + "stackable": true, + "meta": { + "rootName": "Barkless Cedar Log", + "rootId": 26, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 101 + }, + "27": { + "ttb": 1800, + "textureInfo": "messy_stone", + "harvestType": "rock", + "id": 27, + "name": "free_placeholder2", + "stackable": true, + "meta": { + "rootName": "free_placeholder2", + "rootId": 27, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 102 + }, + "28": { + "displayName": { + "translationKey": "item:stone" + }, + "ttb": 1800, + "textureInfo": "stone", + "harvestType": "rock", + "drops": "Messy Stone", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Stone" + }, + "id": 28, + "name": "Stone", + "stackable": true, + "meta": { + "rootName": "Stone", + "rootId": 28, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 103 + }, + "29": { + "displayName": { + "translationKey": "item:messyStone" + }, + "ttb": 1800, + "textureInfo": "messy_stone", + "harvestType": "rock", + "id": 29, + "name": "Messy Stone", + "stackable": true, + "meta": { + "rootName": "Messy Stone", + "rootId": 29, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 102 + }, + "30": { + "ttb": 1800, + "textureInfo": "messy_stone", + "harvestType": "rock", + "id": 30, + "name": "free_placeholder", + "stackable": true, + "meta": { + "rootName": "free_placeholder", + "rootId": 30, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 102 + }, + "31": { + "displayName": { + "translationKey": "item:smoothStone" + }, + "ttb": 1800, + "textureInfo": "smooth_stone", + "harvestType": "rock", + "id": 31, + "name": "Smooth Stone", + "stackable": true, + "meta": { + "rootName": "Smooth Stone", + "rootId": 31, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 104 + }, + "32": { + "displayName": { + "translationKey": "item:diorite" + }, + "ttb": 1800, + "textureInfo": "stone_diorite", + "harvestType": "rock", + "id": 32, + "name": "Diorite", + "stackable": true, + "meta": { + "rootName": "Diorite", + "rootId": 32, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 105 + }, + "33": { + "displayName": { + "translationKey": "item:smoothDiorite" + }, + "ttb": 1800, + "textureInfo": "stone_diorite_smooth", + "harvestType": "rock", + "id": 33, + "name": "Smooth Diorite", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite", + "rootId": 33, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 106 + }, + "34": { + "displayName": { + "translationKey": "item:andesite" + }, + "ttb": 1800, + "textureInfo": "stone_andesite", + "harvestType": "rock", + "id": 34, + "name": "Andesite", + "stackable": true, + "meta": { + "rootName": "Andesite", + "rootId": 34, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 107 + }, + "35": { + "displayName": { + "translationKey": "item:smoothAndesite" + }, + "ttb": 1800, + "textureInfo": "stone_andesite_smooth", + "harvestType": "rock", + "id": 35, + "name": "Smooth Andesite", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite", + "rootId": 35, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 108 + }, + "36": { + "displayName": { + "translationKey": "item:granite" + }, + "ttb": 1800, + "textureInfo": "stone_granite", + "harvestType": "rock", + "id": 36, + "name": "Granite", + "stackable": true, + "meta": { + "rootName": "Granite", + "rootId": 36, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 109 + }, + "37": { + "displayName": { + "translationKey": "item:smoothGranite" + }, + "ttb": 1800, + "textureInfo": "stone_granite_smooth", + "harvestType": "rock", + "id": 37, + "name": "Smooth Granite", + "stackable": true, + "meta": { + "rootName": "Smooth Granite", + "rootId": 37, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 110 + }, + "38": { + "displayName": { + "translationKey": "item:sandstone" + }, + "ttb": 960, + "textureInfo": "sandstone_normal", + "harvestType": "rock", + "id": 38, + "name": "Sandstone", + "stackable": true, + "meta": { + "rootName": "Sandstone", + "rootId": 38, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 111 + }, + "39": { + "displayName": { + "translationKey": "item:yellowstone" + }, + "ttb": 3600, + "textureInfo": "end_stone", + "harvestType": "rock", + "id": 39, + "name": "Yellowstone", + "stackable": true, + "meta": { + "rootName": "Yellowstone", + "rootId": 39, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 112 + }, + "40": { + "displayName": { + "translationKey": "item:coalOre" + }, + "ttb": 3000, + "textureInfo": "coal_ore", + "harvestType": "rock", + "drops": "Coal", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Coal Ore" + }, + "specialToolBonusDrops": { + "Golem Pickaxe": [ + { + "bonusDrop": "Iron Fragment", + "probabilityOfDrop": 0.3333333333333333 + }, + { + "bonusDrop": "Gold Fragment", + "probabilityOfDrop": 0.25 + }, + { + "bonusDrop": "Diamond Fragment", + "probabilityOfDrop": 0.2 + }, + { + "bonusDrop": "Moonstone Fragment", + "probabilityOfDrop": 0.16666666666666666 + }, + { + "bonusDrop": "Coal", + "probabilityOfDrop": 0.14285714285714285 + } + ] + }, + "description": { + "translationKey": "item:coalOreDescription" + }, + "onMinedAura": 5, + "id": 40, + "name": "Coal Ore", + "stackable": true, + "meta": { + "rootName": "Coal Ore", + "rootId": 40, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 113 + }, + "41": { + "displayName": { + "translationKey": "item:ironOre" + }, + "ttb": 3600, + "textureInfo": "iron_ore", + "harvestType": "rock", + "drops": "Raw Iron", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Iron Ore" + }, + "specialToolBonusDrops": { + "Golem Pickaxe": [ + { + "bonusDrop": "Iron Fragment", + "probabilityOfDrop": 0.3333333333333333 + }, + { + "bonusDrop": "Gold Fragment", + "probabilityOfDrop": 0.25 + }, + { + "bonusDrop": "Diamond Fragment", + "probabilityOfDrop": 0.2 + }, + { + "bonusDrop": "Moonstone Fragment", + "probabilityOfDrop": 0.16666666666666666 + }, + { + "bonusDrop": "Coal", + "probabilityOfDrop": 0.14285714285714285 + } + ] + }, + "harvestLevel": 2, + "onMinedAura": 15, + "id": 41, + "name": "Iron Ore", + "stackable": true, + "meta": { + "rootName": "Iron Ore", + "rootId": 41, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 114 + }, + "42": { + "displayName": { + "translationKey": "item:goldOre" + }, + "ttb": 4200, + "textureInfo": "gold_ore", + "harvestType": "rock", + "drops": "Raw Gold", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Gold Ore" + }, + "specialToolBonusDrops": { + "Golem Pickaxe": [ + { + "bonusDrop": "Iron Fragment", + "probabilityOfDrop": 0.3333333333333333 + }, + { + "bonusDrop": "Gold Fragment", + "probabilityOfDrop": 0.25 + }, + { + "bonusDrop": "Diamond Fragment", + "probabilityOfDrop": 0.2 + }, + { + "bonusDrop": "Moonstone Fragment", + "probabilityOfDrop": 0.16666666666666666 + }, + { + "bonusDrop": "Coal", + "probabilityOfDrop": 0.14285714285714285 + } + ] + }, + "harvestLevel": 3, + "onMinedAura": 30, + "id": 42, + "name": "Gold Ore", + "stackable": true, + "meta": { + "rootName": "Gold Ore", + "rootId": 42, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 115 + }, + "43": { + "displayName": { + "translationKey": "item:lapisLazuliOre" + }, + "ttb": 4200, + "textureInfo": "lapis_ore", + "harvestType": "rock", + "harvestLevel": 3, + "id": 43, + "name": "Lapis Lazuli Ore", + "stackable": true, + "meta": { + "rootName": "Lapis Lazuli Ore", + "rootId": 43, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 116 + }, + "44": { + "displayName": { + "translationKey": "item:emeraldOre" + }, + "ttb": 4500, + "textureInfo": "emerald_ore", + "harvestType": "rock", + "harvestLevel": 3, + "id": 44, + "name": "Emerald Ore", + "stackable": true, + "meta": { + "rootName": "Emerald Ore", + "rootId": 44, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 117 + }, + "45": { + "displayName": { + "translationKey": "item:diamondOre" + }, + "ttb": 5000, + "textureInfo": "diamond_ore", + "harvestType": "rock", + "harvestLevel": 3, + "drops": "Diamond", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Diamond Ore" + }, + "specialToolBonusDrops": { + "Golem Pickaxe": [ + { + "bonusDrop": "Iron Fragment", + "probabilityOfDrop": 0.3333333333333333 + }, + { + "bonusDrop": "Gold Fragment", + "probabilityOfDrop": 0.25 + }, + { + "bonusDrop": "Diamond Fragment", + "probabilityOfDrop": 0.2 + }, + { + "bonusDrop": "Moonstone Fragment", + "probabilityOfDrop": 0.16666666666666666 + }, + { + "bonusDrop": "Coal", + "probabilityOfDrop": 0.14285714285714285 + } + ] + }, + "description": { + "translationKey": "item:diamondOreDescription" + }, + "onMinedAura": 40, + "id": 45, + "name": "Diamond Ore", + "stackable": true, + "meta": { + "rootName": "Diamond Ore", + "rootId": 45, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 118 + }, + "46": { + "displayName": { + "translationKey": "item:blockOfCoal" + }, + "ttb": 4500, + "textureInfo": "coal_block", + "harvestType": "rock", + "id": 46, + "name": "Block of Coal", + "stackable": true, + "meta": { + "rootName": "Block of Coal", + "rootId": 46, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 119 + }, + "47": { + "displayName": { + "translationKey": "item:blockOfIron" + }, + "ttb": 5400, + "textureInfo": "iron_block", + "harvestType": "rock", + "id": 47, + "name": "Block of Iron", + "stackable": true, + "meta": { + "rootName": "Block of Iron", + "rootId": 47, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 120 + }, + "48": { + "displayName": { + "translationKey": "item:blockOfGold" + }, + "ttb": 6300, + "textureInfo": "gold_block", + "harvestType": "rock", + "id": 48, + "name": "Block of Gold", + "stackable": true, + "meta": { + "rootName": "Block of Gold", + "rootId": 48, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 121 + }, + "49": { + "displayName": { + "translationKey": "item:blockOfLapisLazuli" + }, + "ttb": 6300, + "textureInfo": "lapis_block", + "harvestType": "rock", + "id": 49, + "name": "Block of Lapis Lazuli", + "stackable": true, + "meta": { + "rootName": "Block of Lapis Lazuli", + "rootId": 49, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 122 + }, + "50": { + "displayName": { + "translationKey": "item:blockOfEmerald" + }, + "ttb": 6750, + "textureInfo": "emerald_block", + "harvestType": "rock", + "id": 50, + "name": "Block of Emerald", + "stackable": true, + "meta": { + "rootName": "Block of Emerald", + "rootId": 50, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 123 + }, + "51": { + "displayName": { + "translationKey": "item:whiteWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_white", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 51, + "name": "White Wool", + "stackable": true, + "meta": { + "rootName": "White Wool", + "rootId": 51, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 124 + }, + "52": { + "displayName": { + "translationKey": "item:orangeWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_orange", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 52, + "name": "Orange Wool", + "stackable": true, + "meta": { + "rootName": "Orange Wool", + "rootId": 52, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 125 + }, + "53": { + "displayName": { + "translationKey": "item:magentaWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_magenta", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 53, + "name": "Magenta Wool", + "stackable": true, + "meta": { + "rootName": "Magenta Wool", + "rootId": 53, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 126 + }, + "54": { + "displayName": { + "translationKey": "item:lightBlueWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_light_blue", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 54, + "name": "Light Blue Wool", + "stackable": true, + "meta": { + "rootName": "Light Blue Wool", + "rootId": 54, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 127 + }, + "55": { + "displayName": { + "translationKey": "item:yellowWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_yellow", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 55, + "name": "Yellow Wool", + "stackable": true, + "meta": { + "rootName": "Yellow Wool", + "rootId": 55, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 128 + }, + "56": { + "displayName": { + "translationKey": "item:limeWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_lime", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 56, + "name": "Lime Wool", + "stackable": true, + "meta": { + "rootName": "Lime Wool", + "rootId": 56, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 129 + }, + "57": { + "displayName": { + "translationKey": "item:pinkWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_pink", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 57, + "name": "Pink Wool", + "stackable": true, + "meta": { + "rootName": "Pink Wool", + "rootId": 57, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 130 + }, + "58": { + "displayName": { + "translationKey": "item:grayWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_gray", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 58, + "name": "Gray Wool", + "stackable": true, + "meta": { + "rootName": "Gray Wool", + "rootId": 58, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 131 + }, + "59": { + "displayName": { + "translationKey": "item:lightGrayWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_light_grey", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 59, + "name": "Light Gray Wool", + "stackable": true, + "meta": { + "rootName": "Light Gray Wool", + "rootId": 59, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 132 + }, + "60": { + "displayName": { + "translationKey": "item:cyanWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_cyan", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 60, + "name": "Cyan Wool", + "stackable": true, + "meta": { + "rootName": "Cyan Wool", + "rootId": 60, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 133 + }, + "61": { + "displayName": { + "translationKey": "item:purpleWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_purple", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 61, + "name": "Purple Wool", + "stackable": true, + "meta": { + "rootName": "Purple Wool", + "rootId": 61, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 134 + }, + "62": { + "displayName": { + "translationKey": "item:blueWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_blue", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 62, + "name": "Blue Wool", + "stackable": true, + "meta": { + "rootName": "Blue Wool", + "rootId": 62, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 135 + }, + "63": { + "displayName": { + "translationKey": "item:brownWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_brown", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 63, + "name": "Brown Wool", + "stackable": true, + "meta": { + "rootName": "Brown Wool", + "rootId": 63, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 136 + }, + "64": { + "displayName": { + "translationKey": "item:greenWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_green", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 64, + "name": "Green Wool", + "stackable": true, + "meta": { + "rootName": "Green Wool", + "rootId": 64, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 137 + }, + "65": { + "displayName": { + "translationKey": "item:redWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_red", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 65, + "name": "Red Wool", + "stackable": true, + "meta": { + "rootName": "Red Wool", + "rootId": 65, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 138 + }, + "66": { + "displayName": { + "translationKey": "item:blackWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_black", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 66, + "name": "Black Wool", + "stackable": true, + "meta": { + "rootName": "Black Wool", + "rootId": 66, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 139 + }, + "67": { + "displayName": { + "translationKey": "item:bakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay", + "harvestType": "rock", + "id": 67, + "name": "Baked Clay", + "stackable": true, + "meta": { + "rootName": "Baked Clay", + "rootId": 67, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 140 + }, + "68": { + "displayName": { + "translationKey": "item:whiteBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_white", + "harvestType": "rock", + "id": 68, + "name": "White Baked Clay", + "stackable": true, + "meta": { + "rootName": "White Baked Clay", + "rootId": 68, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 141 + }, + "69": { + "displayName": { + "translationKey": "item:orangeBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_orange", + "harvestType": "rock", + "id": 69, + "name": "Orange Baked Clay", + "stackable": true, + "meta": { + "rootName": "Orange Baked Clay", + "rootId": 69, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 142 + }, + "70": { + "displayName": { + "translationKey": "item:magentaBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_magenta", + "harvestType": "rock", + "id": 70, + "name": "Magenta Baked Clay", + "stackable": true, + "meta": { + "rootName": "Magenta Baked Clay", + "rootId": 70, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 143 + }, + "71": { + "displayName": { + "translationKey": "item:lightBlueBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_light_blue", + "harvestType": "rock", + "id": 71, + "name": "Light Blue Baked Clay", + "stackable": true, + "meta": { + "rootName": "Light Blue Baked Clay", + "rootId": 71, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 144 + }, + "72": { + "displayName": { + "translationKey": "item:yellowBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_yellow", + "harvestType": "rock", + "id": 72, + "name": "Yellow Baked Clay", + "stackable": true, + "meta": { + "rootName": "Yellow Baked Clay", + "rootId": 72, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 145 + }, + "73": { + "displayName": { + "translationKey": "item:limeBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_lime", + "harvestType": "rock", + "id": 73, + "name": "Lime Baked Clay", + "stackable": true, + "meta": { + "rootName": "Lime Baked Clay", + "rootId": 73, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 146 + }, + "74": { + "displayName": { + "translationKey": "item:pinkBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_pink", + "harvestType": "rock", + "id": 74, + "name": "Pink Baked Clay", + "stackable": true, + "meta": { + "rootName": "Pink Baked Clay", + "rootId": 74, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 147 + }, + "75": { + "displayName": { + "translationKey": "item:grayBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_gray", + "harvestType": "rock", + "id": 75, + "name": "Gray Baked Clay", + "stackable": true, + "meta": { + "rootName": "Gray Baked Clay", + "rootId": 75, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 148 + }, + "76": { + "displayName": { + "translationKey": "item:lightGrayBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_silver", + "harvestType": "rock", + "id": 76, + "name": "Light Gray Baked Clay", + "stackable": true, + "meta": { + "rootName": "Light Gray Baked Clay", + "rootId": 76, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 149 + }, + "77": { + "displayName": { + "translationKey": "item:cyanBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_cyan", + "harvestType": "rock", + "id": 77, + "name": "Cyan Baked Clay", + "stackable": true, + "meta": { + "rootName": "Cyan Baked Clay", + "rootId": 77, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 150 + }, + "78": { + "displayName": { + "translationKey": "item:purpleBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_purple", + "harvestType": "rock", + "id": 78, + "name": "Purple Baked Clay", + "stackable": true, + "meta": { + "rootName": "Purple Baked Clay", + "rootId": 78, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 151 + }, + "79": { + "displayName": { + "translationKey": "item:blueBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_blue", + "harvestType": "rock", + "id": 79, + "name": "Blue Baked Clay", + "stackable": true, + "meta": { + "rootName": "Blue Baked Clay", + "rootId": 79, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 152 + }, + "80": { + "displayName": { + "translationKey": "item:brownBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_brown", + "harvestType": "rock", + "id": 80, + "name": "Brown Baked Clay", + "stackable": true, + "meta": { + "rootName": "Brown Baked Clay", + "rootId": 80, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 153 + }, + "81": { + "displayName": { + "translationKey": "item:greenBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_green", + "harvestType": "rock", + "id": 81, + "name": "Green Baked Clay", + "stackable": true, + "meta": { + "rootName": "Green Baked Clay", + "rootId": 81, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 154 + }, + "82": { + "displayName": { + "translationKey": "item:redBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_red", + "harvestType": "rock", + "id": 82, + "name": "Red Baked Clay", + "stackable": true, + "meta": { + "rootName": "Red Baked Clay", + "rootId": 82, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 155 + }, + "83": { + "displayName": { + "translationKey": "item:blackBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_black", + "harvestType": "rock", + "id": 83, + "name": "Black Baked Clay", + "stackable": true, + "meta": { + "rootName": "Black Baked Clay", + "rootId": 83, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 156 + }, + "84": { + "displayName": { + "translationKey": "item:grayConcrete" + }, + "ttb": 2160, + "textureInfo": "gray_concrete", + "harvestType": "rock", + "id": 84, + "name": "Gray Concrete", + "stackable": true, + "meta": { + "rootName": "Gray Concrete", + "rootId": 84, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "85": { + "displayName": { + "translationKey": "item:lightGrayConcrete" + }, + "ttb": 2160, + "textureInfo": "light_gray_concrete", + "harvestType": "rock", + "id": 85, + "name": "Light Gray Concrete", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete", + "rootId": 85, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "86": { + "displayName": { + "translationKey": "item:blackConcrete" + }, + "ttb": 2160, + "textureInfo": "black_concrete", + "harvestType": "rock", + "id": 86, + "name": "Black Concrete", + "stackable": true, + "meta": { + "rootName": "Black Concrete", + "rootId": 86, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "87": { + "displayName": { + "translationKey": "item:blueConcrete" + }, + "ttb": 2160, + "textureInfo": "blue_concrete", + "harvestType": "rock", + "id": 87, + "name": "Blue Concrete", + "stackable": true, + "meta": { + "rootName": "Blue Concrete", + "rootId": 87, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "88": { + "displayName": { + "translationKey": "item:brownConcrete" + }, + "ttb": 2160, + "textureInfo": "brown_concrete", + "harvestType": "rock", + "id": 88, + "name": "Brown Concrete", + "stackable": true, + "meta": { + "rootName": "Brown Concrete", + "rootId": 88, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "89": { + "displayName": { + "translationKey": "item:cyanConcrete" + }, + "ttb": 2160, + "textureInfo": "cyan_concrete", + "harvestType": "rock", + "id": 89, + "name": "Cyan Concrete", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete", + "rootId": 89, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "90": { + "displayName": { + "translationKey": "item:lightBlueConcrete" + }, + "ttb": 2160, + "textureInfo": "light_blue_concrete", + "harvestType": "rock", + "id": 90, + "name": "Light Blue Concrete", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete", + "rootId": 90, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "91": { + "displayName": { + "translationKey": "item:limeConcrete" + }, + "ttb": 2160, + "textureInfo": "lime_concrete", + "harvestType": "rock", + "id": 91, + "name": "Lime Concrete", + "stackable": true, + "meta": { + "rootName": "Lime Concrete", + "rootId": 91, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "92": { + "displayName": { + "translationKey": "item:magentaConcrete" + }, + "ttb": 2160, + "textureInfo": "magenta_concrete", + "harvestType": "rock", + "id": 92, + "name": "Magenta Concrete", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete", + "rootId": 92, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "93": { + "displayName": { + "translationKey": "item:orangeConcrete" + }, + "ttb": 2160, + "textureInfo": "orange_concrete", + "harvestType": "rock", + "id": 93, + "name": "Orange Concrete", + "stackable": true, + "meta": { + "rootName": "Orange Concrete", + "rootId": 93, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "94": { + "displayName": { + "translationKey": "item:pinkConcrete" + }, + "ttb": 2160, + "textureInfo": "pink_concrete", + "harvestType": "rock", + "id": 94, + "name": "Pink Concrete", + "stackable": true, + "meta": { + "rootName": "Pink Concrete", + "rootId": 94, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "95": { + "displayName": { + "translationKey": "item:purpleConcrete" + }, + "ttb": 2160, + "textureInfo": "purple_concrete", + "harvestType": "rock", + "id": 95, + "name": "Purple Concrete", + "stackable": true, + "meta": { + "rootName": "Purple Concrete", + "rootId": 95, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "96": { + "displayName": { + "translationKey": "item:redConcrete" + }, + "ttb": 2160, + "textureInfo": "red_concrete", + "harvestType": "rock", + "id": 96, + "name": "Red Concrete", + "stackable": true, + "meta": { + "rootName": "Red Concrete", + "rootId": 96, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "97": { + "displayName": { + "translationKey": "item:whiteConcrete" + }, + "ttb": 2160, + "textureInfo": "white_concrete", + "harvestType": "rock", + "id": 97, + "name": "White Concrete", + "stackable": true, + "meta": { + "rootName": "White Concrete", + "rootId": 97, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "98": { + "displayName": { + "translationKey": "item:greenConcrete" + }, + "ttb": 2160, + "textureInfo": "green_concrete", + "harvestType": "rock", + "id": 98, + "name": "Green Concrete", + "stackable": true, + "meta": { + "rootName": "Green Concrete", + "rootId": 98, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "99": { + "displayName": { + "translationKey": "item:yellowConcrete" + }, + "ttb": 2160, + "textureInfo": "yellow_concrete", + "harvestType": "rock", + "id": 99, + "name": "Yellow Concrete", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete", + "rootId": 99, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "100": { + "displayName": { + "translationKey": "item:pineLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_pine", + "harvestType": "cuttable", + "id": 100, + "name": "Pine Leaves", + "stackable": true, + "meta": { + "rootName": "Pine Leaves", + "rootId": 100, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 173 + }, + "101": { + "displayName": { + "translationKey": "item:aspenLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_aspen", + "harvestType": "cuttable", + "id": 101, + "name": "Aspen Leaves", + "stackable": true, + "meta": { + "rootName": "Aspen Leaves", + "rootId": 101, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 174 + }, + "102": { + "displayName": { + "translationKey": "item:mapleLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_maple", + "harvestType": "cuttable", + "id": 102, + "name": "Maple Leaves", + "stackable": true, + "meta": { + "rootName": "Maple Leaves", + "rootId": 102, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 175 + }, + "103": { + "displayName": { + "translationKey": "item:jungleLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_jungle", + "harvestType": "cuttable", + "id": 103, + "name": "Jungle Leaves", + "stackable": true, + "meta": { + "rootName": "Jungle Leaves", + "rootId": 103, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 176 + }, + "104": { + "ttb": 1200, + "textureInfo": "pumpkin_face_on", + "harvestType": "wood", + "id": 104, + "name": "Pumpkin_placeholder", + "stackable": true, + "meta": { + "rootName": "Pumpkin_placeholder", + "rootId": 104, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 177 + }, + "105": { + "displayName": { + "translationKey": "item:watermelon" + }, + "ttb": 1200, + "textureInfo": [ + "watermelon_side", + "watermelon_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "id": 105, + "name": "Watermelon", + "stackable": true, + "meta": { + "rootName": "Watermelon", + "rootId": 105, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 178, + 179 + ] + }, + "106": { + "displayName": { + "translationKey": "item:glass" + }, + "ttb": 450, + "textureInfo": "glass", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 106, + "name": "Glass", + "stackable": true, + "meta": { + "rootName": "Glass", + "rootId": 106, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 180 + }, + "107": { + "displayName": { + "translationKey": "item:blackGlass" + }, + "ttb": 450, + "textureInfo": "glass_black", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 107, + "name": "Black Glass", + "stackable": true, + "meta": { + "rootName": "Black Glass", + "rootId": 107, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 181 + }, + "108": { + "displayName": { + "translationKey": "item:blueGlass" + }, + "ttb": 450, + "textureInfo": "glass_blue", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 108, + "name": "Blue Glass", + "stackable": true, + "meta": { + "rootName": "Blue Glass", + "rootId": 108, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 182 + }, + "109": { + "displayName": { + "translationKey": "item:brownGlass" + }, + "ttb": 450, + "textureInfo": "glass_brown", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 109, + "name": "Brown Glass", + "stackable": true, + "meta": { + "rootName": "Brown Glass", + "rootId": 109, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 183 + }, + "110": { + "displayName": { + "translationKey": "item:cyanGlass" + }, + "ttb": 450, + "textureInfo": "glass_cyan", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 110, + "name": "Cyan Glass", + "stackable": true, + "meta": { + "rootName": "Cyan Glass", + "rootId": 110, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 184 + }, + "111": { + "displayName": { + "translationKey": "item:grayGlass" + }, + "ttb": 450, + "textureInfo": "glass_gray", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 111, + "name": "Gray Glass", + "stackable": true, + "meta": { + "rootName": "Gray Glass", + "rootId": 111, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 185 + }, + "112": { + "displayName": { + "translationKey": "item:lightGrayGlass" + }, + "ttb": 450, + "textureInfo": "glass_light_gray", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 112, + "name": "Light Gray Glass", + "stackable": true, + "meta": { + "rootName": "Light Gray Glass", + "rootId": 112, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 186 + }, + "113": { + "displayName": { + "translationKey": "item:greenGlass" + }, + "ttb": 450, + "textureInfo": "glass_green", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 113, + "name": "Green Glass", + "stackable": true, + "meta": { + "rootName": "Green Glass", + "rootId": 113, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 187 + }, + "114": { + "displayName": { + "translationKey": "item:lightBlueGlass" + }, + "ttb": 450, + "textureInfo": "glass_light_blue", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 114, + "name": "Light Blue Glass", + "stackable": true, + "meta": { + "rootName": "Light Blue Glass", + "rootId": 114, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 188 + }, + "115": { + "displayName": { + "translationKey": "item:limeGlass" + }, + "ttb": 450, + "textureInfo": "glass_lime", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 115, + "name": "Lime Glass", + "stackable": true, + "meta": { + "rootName": "Lime Glass", + "rootId": 115, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 189 + }, + "116": { + "displayName": { + "translationKey": "item:magentaGlass" + }, + "ttb": 450, + "textureInfo": "glass_magenta", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 116, + "name": "Magenta Glass", + "stackable": true, + "meta": { + "rootName": "Magenta Glass", + "rootId": 116, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 190 + }, + "117": { + "displayName": { + "translationKey": "item:orangeGlass" + }, + "ttb": 450, + "textureInfo": "glass_orange", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 117, + "name": "Orange Glass", + "stackable": true, + "meta": { + "rootName": "Orange Glass", + "rootId": 117, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 191 + }, + "118": { + "displayName": { + "translationKey": "item:pinkGlass" + }, + "ttb": 450, + "textureInfo": "glass_pink", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 118, + "name": "Pink Glass", + "stackable": true, + "meta": { + "rootName": "Pink Glass", + "rootId": 118, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 192 + }, + "119": { + "displayName": { + "translationKey": "item:purpleGlass" + }, + "ttb": 450, + "textureInfo": "glass_purple", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 119, + "name": "Purple Glass", + "stackable": true, + "meta": { + "rootName": "Purple Glass", + "rootId": 119, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 193 + }, + "120": { + "displayName": { + "translationKey": "item:redGlass" + }, + "ttb": 450, + "textureInfo": "glass_red", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 120, + "name": "Red Glass", + "stackable": true, + "meta": { + "rootName": "Red Glass", + "rootId": 120, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 194 + }, + "121": { + "displayName": { + "translationKey": "item:whiteGlass" + }, + "ttb": 450, + "textureInfo": "glass_white", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 121, + "name": "White Glass", + "stackable": true, + "meta": { + "rootName": "White Glass", + "rootId": 121, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 195 + }, + "122": { + "displayName": { + "translationKey": "item:yellowGlass" + }, + "ttb": 450, + "textureInfo": "glass_yellow", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 122, + "name": "Yellow Glass", + "stackable": true, + "meta": { + "rootName": "Yellow Glass", + "rootId": 122, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 196 + }, + "123": { + "ttb": 450, + "textureInfo": "glass_silver", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 123, + "name": "UNUSED BLOCK TYPE", + "stackable": true, + "meta": { + "rootName": "UNUSED BLOCK TYPE", + "rootId": 123, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 197 + }, + "124": { + "ttb": 450, + "textureInfo": "redstone_lamp_on", + "harvestType": "rock", + "id": 124, + "name": "Dim Lamp On", + "stackable": true, + "meta": { + "rootName": "Dim Lamp On", + "rootId": 124, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 198 + }, + "125": { + "ttb": 450, + "textureInfo": "redstone_lamp_off", + "harvestType": "rock", + "id": 125, + "name": "Dim Lamp Off", + "stackable": true, + "meta": { + "rootName": "Dim Lamp Off", + "rootId": 125, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 199 + }, + "126": { + "displayName": { + "translationKey": "item:water" + }, + "textureInfo": [ + 0.5, + 0.5, + 0.8, + 0.9 + ], + "xn": true, + "drops": null, + "harvestType": "rock", + "id": 126, + "name": "Water", + "stackable": true, + "meta": { + "rootName": "Water", + "rootId": 126, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "127": { + "ttb": 3000, + "textureInfo": "invisible_solid", + "transTex": true, + "harvestType": "rock", + "id": 127, + "name": "Invisible Solid", + "stackable": true, + "meta": { + "rootName": "Invisible Solid", + "rootId": 127, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 200 + }, + "128": { + "displayName": { + "translationKey": "item:bricks" + }, + "ttb": 2400, + "textureInfo": "brick", + "harvestType": "rock", + "id": 128, + "name": "Bricks", + "stackable": true, + "meta": { + "rootName": "Bricks", + "rootId": 128, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 201 + }, + "129": { + "displayName": { + "translationKey": "item:stoneBricks" + }, + "ttb": 1800, + "textureInfo": "stonebrick", + "harvestType": "rock", + "id": 129, + "name": "Stone Bricks", + "stackable": true, + "meta": { + "rootName": "Stone Bricks", + "rootId": 129, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 202 + }, + "130": { + "displayName": { + "translationKey": "item:darkRedBrick" + }, + "ttb": 2400, + "textureInfo": "nether_brick", + "harvestType": "rock", + "id": 130, + "name": "Dark Red Brick", + "stackable": true, + "meta": { + "rootName": "Dark Red Brick", + "rootId": 130, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 203 + }, + "131": { + "displayName": { + "translationKey": "item:darkRedStone" + }, + "ttb": 1200, + "textureInfo": "netherrack", + "harvestType": "rock", + "id": 131, + "name": "Dark Red Stone", + "stackable": true, + "meta": { + "rootName": "Dark Red Stone", + "rootId": 131, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 204 + }, + "132": { + "displayName": { + "translationKey": "item:blockOfQuartz" + }, + "ttb": 960, + "textureInfo": "quartz_block_side", + "harvestType": "rock", + "id": 132, + "name": "Block of Quartz", + "stackable": true, + "meta": { + "rootName": "Block of Quartz", + "rootId": 132, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 205 + }, + "133": { + "displayName": { + "translationKey": "item:chiseledBlockOfQuartz" + }, + "ttb": 960, + "textureInfo": "quartz_block_chiseled", + "harvestType": "rock", + "id": 133, + "name": "Chiseled Block of Quartz", + "stackable": true, + "meta": { + "rootName": "Chiseled Block of Quartz", + "rootId": 133, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 206 + }, + "134": { + "displayName": { + "translationKey": "item:engravedStone" + }, + "ttb": 1800, + "textureInfo": "stonebrick_carved", + "harvestType": "rock", + "id": 134, + "name": "Engraved Stone", + "stackable": true, + "meta": { + "rootName": "Engraved Stone", + "rootId": 134, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 207 + }, + "135": { + "displayName": { + "translationKey": "item:mossyStoneBricks" + }, + "ttb": 1800, + "textureInfo": "stonebrick_mossy", + "harvestType": "rock", + "id": 135, + "name": "Mossy Stone Bricks", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks", + "rootId": 135, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 208 + }, + "136": { + "displayName": { + "translationKey": "item:crackedStoneBricks" + }, + "ttb": 1800, + "textureInfo": "stonebrick_cracked", + "harvestType": "rock", + "id": 136, + "name": "Cracked Stone Bricks", + "stackable": true, + "meta": { + "rootName": "Cracked Stone Bricks", + "rootId": 136, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 209 + }, + "137": { + "displayName": { + "translationKey": "item:smoothSandstone" + }, + "ttb": 960, + "textureInfo": "sandstone_top", + "harvestType": "rock", + "id": 137, + "name": "Smooth Sandstone", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone", + "rootId": 137, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "138": { + "displayName": { + "translationKey": "item:engravedSandstone" + }, + "ttb": 960, + "textureInfo": "chiseled_sandstone", + "harvestType": "rock", + "id": 138, + "name": "Engraved Sandstone", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone", + "rootId": 138, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 211 + }, + "139": { + "displayName": { + "translationKey": "item:ice" + }, + "ttb": 1200, + "textureInfo": "ice", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 139, + "name": "Ice", + "stackable": true, + "meta": { + "rootName": "Ice", + "rootId": 139, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 212 + }, + "140": { + "displayName": { + "translationKey": "item:obsidian" + }, + "ttb": 40000, + "textureInfo": "obsidian", + "harvestType": "rock", + "harvestLevel": 5, + "id": 140, + "name": "Obsidian", + "stackable": true, + "meta": { + "rootName": "Obsidian", + "rootId": 140, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 213 + }, + "141": { + "displayName": { + "translationKey": "item:hayBale" + }, + "ttb": 600, + "textureInfo": "hay_block_side", + "harvestType": "cuttable", + "id": 141, + "name": "Hay Bale", + "stackable": true, + "meta": { + "rootName": "Hay Bale", + "rootId": 141, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 214 + }, + "142": { + "displayName": { + "translationKey": "item:sponge" + }, + "ttb": 720, + "textureInfo": "sponge", + "harvestType": "granule", + "id": 142, + "name": "Sponge", + "stackable": true, + "meta": { + "rootName": "Sponge", + "rootId": 142, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 215 + }, + "143": { + "displayName": { + "translationKey": "item:beacon" + }, + "ttb": 3600, + "textureInfo": "beacon", + "harvestType": "rock", + "id": 143, + "name": "Beacon", + "stackable": true, + "meta": { + "rootName": "Beacon", + "rootId": 143, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 216 + }, + "144": { + "ttb": 1000, + "harvestType": "rock", + "id": 144, + "name": "temp", + "stackable": true, + "meta": { + "rootName": "temp", + "rootId": 144, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "145": { + "displayName": { + "translationKey": "item:goldenDecoration" + }, + "ttb": 1000, + "textureInfo": "glowstone", + "harvestType": "rock", + "id": 145, + "name": "Golden Decoration", + "stackable": true, + "meta": { + "rootName": "Golden Decoration", + "rootId": 145, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 217 + }, + "146": { + "displayName": { + "translationKey": "item:moonstoneExplosive" + }, + "ttb": 50, + "textureInfo": [ + "moonstone_explosive_side", + "moonstone_explosive_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "description": { + "translationKey": "item:moonstoneExplosiveDescription" + }, + "id": 146, + "name": "Moonstone Explosive", + "stackable": true, + "meta": { + "rootName": "Moonstone Explosive", + "rootId": 146, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 218, + 219 + ] + }, + "147": { + "displayName": { + "translationKey": "item:bedrock" + }, + "ttb": 500000000000, + "textureInfo": "bedrock", + "soundType": { + "break": "stone", + "place": "stone" + }, + "id": 147, + "name": "Bedrock", + "stackable": true, + "meta": { + "rootName": "Bedrock", + "rootId": 147, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 220 + }, + "148": { + "displayName": { + "translationKey": "item:smoothDoubleStoneSlab" + }, + "ttb": 2400, + "textureInfo": "smooth_stone", + "harvestType": "rock", + "id": 148, + "name": "Smooth Double Stone Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Double Stone Slab", + "rootId": 148, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 104 + }, + "149": { + "displayName": { + "translationKey": "item:cactus" + }, + "ttb": 300, + "textureInfo": "small_cactus", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "id": 149, + "name": "Cactus", + "stackable": true, + "meta": { + "rootName": "Cactus", + "rootId": 149, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "150": { + "displayName": { + "translationKey": "item:grass" + }, + "ttb": 1, + "textureInfo": "tallgrass", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "drops": null, + "harvestType": "cuttable", + "specialToolDrop": { + "tool": "Shears", + "drops": "Grass" + }, + "canBePlacedOver": true, + "id": 150, + "name": "Grass", + "stackable": true, + "meta": { + "rootName": "Grass", + "rootId": 150, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "151": { + "displayName": { + "translationKey": "item:dandelion" + }, + "ttb": 300, + "textureInfo": "dandelion", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "dandelion", + "id": 151, + "name": "Dandelion", + "stackable": true, + "meta": { + "rootName": "Dandelion", + "rootId": 151, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "152": { + "displayName": { + "translationKey": "item:poppy" + }, + "ttb": 300, + "textureInfo": "poppy", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "poppy", + "id": 152, + "name": "Poppy", + "stackable": true, + "meta": { + "rootName": "Poppy", + "rootId": 152, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "153": { + "displayName": { + "translationKey": "item:redTulip" + }, + "ttb": 300, + "textureInfo": "red_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "red_tulip", + "id": 153, + "name": "Red Tulip", + "stackable": true, + "meta": { + "rootName": "Red Tulip", + "rootId": 153, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "154": { + "displayName": { + "translationKey": "item:pinkTulip" + }, + "ttb": 300, + "textureInfo": "pink_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "pink_tulip", + "id": 154, + "name": "Pink Tulip", + "stackable": true, + "meta": { + "rootName": "Pink Tulip", + "rootId": 154, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "155": { + "displayName": { + "translationKey": "item:whiteTulip" + }, + "ttb": 300, + "textureInfo": "white_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "white_tulip", + "id": 155, + "name": "White Tulip", + "stackable": true, + "meta": { + "rootName": "White Tulip", + "rootId": 155, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "156": { + "displayName": { + "translationKey": "item:orangeTulip" + }, + "ttb": 300, + "textureInfo": "orange_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "orange_tulip", + "id": 156, + "name": "Orange Tulip", + "stackable": true, + "meta": { + "rootName": "Orange Tulip", + "rootId": 156, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "157": { + "displayName": { + "translationKey": "item:daisy" + }, + "ttb": 300, + "textureInfo": "oxeye_daisy", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "oxeye_daisy", + "id": 157, + "name": "Daisy", + "stackable": true, + "meta": { + "rootName": "Daisy", + "rootId": 157, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "158": { + "displayName": { + "translationKey": "item:bluebell" + }, + "ttb": 300, + "textureInfo": "blue_orchid", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "blue_orchid", + "id": 158, + "name": "Bluebell", + "stackable": true, + "meta": { + "rootName": "Bluebell", + "rootId": 158, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "159": { + "displayName": { + "translationKey": "item:forget-Me-Not" + }, + "ttb": 300, + "textureInfo": "cornflower", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cornflower", + "id": 159, + "name": "Forget-me-not", + "stackable": true, + "meta": { + "rootName": "Forget-me-not", + "rootId": 159, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "160": { + "displayName": { + "translationKey": "item:allium" + }, + "ttb": 300, + "textureInfo": "allium", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "allium", + "id": 160, + "name": "Allium", + "stackable": true, + "meta": { + "rootName": "Allium", + "rootId": 160, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "161": { + "displayName": { + "translationKey": "item:azureBluet" + }, + "ttb": 300, + "textureInfo": "azure_bluet", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "azure_bluet", + "id": 161, + "name": "Azure Bluet", + "stackable": true, + "meta": { + "rootName": "Azure Bluet", + "rootId": 161, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "162": { + "displayName": { + "translationKey": "item:lillyOfTheValley" + }, + "ttb": 300, + "textureInfo": "lily_of_the_valley", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "lily_of_the_valley", + "id": 162, + "name": "Lily of the Valley", + "stackable": true, + "meta": { + "rootName": "Lily of the Valley", + "rootId": 162, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "163": { + "displayName": { + "translationKey": "item:shadowRose" + }, + "ttb": 300, + "textureInfo": "shadow_rose", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "shadow_rose", + "id": 163, + "name": "Shadow Rose", + "stackable": true, + "meta": { + "rootName": "Shadow Rose", + "rootId": 163, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "164": { + "displayName": { + "translationKey": "item:furnace" + }, + "ttb": 4200, + "textureInfo": [ + "furnace_front", + "furnace_side", + "furnace_top" + ], + "harvestType": "rock", + "rootMetaDesc": "Furnace|meta|rot1", + "description": { + "translationKey": "item:furnaceDescription" + }, + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 164, + "name": "Furnace", + "stackable": true, + "meta": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 221, + 222, + 223 + ] + }, + "165": { + "displayName": { + "translationKey": "item:furnace" + }, + "ttb": 4200, + "textureInfo": [ + "furnace_front", + "furnace_side", + "furnace_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:furnaceDescription" + }, + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 165, + "name": "Furnace|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 221, + 222, + 223 + ] + }, + "166": { + "displayName": { + "translationKey": "item:furnace" + }, + "ttb": 4200, + "textureInfo": [ + "furnace_front", + "furnace_side", + "furnace_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:furnaceDescription" + }, + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 166, + "name": "Furnace|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 221, + 222, + 223 + ] + }, + "167": { + "displayName": { + "translationKey": "item:furnace" + }, + "ttb": 4200, + "textureInfo": [ + "furnace_front", + "furnace_side", + "furnace_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:furnaceDescription" + }, + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 167, + "name": "Furnace|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 221, + 222, + 223 + ] + }, + "168": { + "displayName": { + "translationKey": "item:workbench" + }, + "ttb": 3000, + "textureInfo": [ + "crafting_table_side", + "crafting_table_top" + ], + "harvestType": "wood", + "rootMetaDesc": "Workbench|meta|rot1", + "description": { + "translationKey": "item:workbenchDescription" + }, + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "id": 168, + "name": "Workbench", + "stackable": true, + "meta": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 224, + 225 + ] + }, + "169": { + "displayName": { + "translationKey": "item:workbench" + }, + "ttb": 3000, + "textureInfo": [ + "crafting_table_side", + "crafting_table_top" + ], + "harvestType": "wood", + "description": { + "translationKey": "item:workbenchDescription" + }, + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "id": 169, + "name": "Workbench|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 224, + 225 + ] + }, + "170": { + "displayName": { + "translationKey": "item:workbench" + }, + "ttb": 3000, + "textureInfo": [ + "crafting_table_side", + "crafting_table_top" + ], + "harvestType": "wood", + "description": { + "translationKey": "item:workbenchDescription" + }, + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "id": 170, + "name": "Workbench|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 224, + 225 + ] + }, + "171": { + "displayName": { + "translationKey": "item:workbench" + }, + "ttb": 3000, + "textureInfo": [ + "crafting_table_side", + "crafting_table_top" + ], + "harvestType": "wood", + "description": { + "translationKey": "item:workbenchDescription" + }, + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "id": 171, + "name": "Workbench|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 224, + 225 + ] + }, + "172": { + "displayName": { + "translationKey": "item:blockOfDiamond" + }, + "ttb": 6750, + "textureInfo": "diamond_block", + "harvestType": "rock", + "id": 172, + "name": "Block of Diamond", + "stackable": true, + "meta": { + "rootName": "Block of Diamond", + "rootId": 172, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 226 + }, + "173": { + "displayName": { + "translationKey": "item:mapleDoor" + }, + "ttb": 3600, + "itemTexture": "maple_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Maple Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Maple Door", + "id": 173, + "name": "Maple Door", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "174": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 174, + "name": "Maple Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "175": { + "ttb": 3600, + "harvestType": "wood", + "id": 175, + "name": "Maple Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "176": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 176, + "name": "Maple Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "177": { + "ttb": 3600, + "harvestType": "wood", + "id": 177, + "name": "Maple Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "178": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 178, + "name": "Maple Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "179": { + "ttb": 3600, + "harvestType": "wood", + "id": 179, + "name": "Maple Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "180": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 180, + "name": "Maple Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "181": { + "ttb": 3600, + "itemTexture": "maple_door", + "harvestType": "wood", + "model": "door", + "drops": "Maple Door", + "rootMetaDesc": "_Maple Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Maple Door Top", + "id": 181, + "name": "_Maple Door Top", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "182": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "TB": false, + "id": 182, + "name": "_Maple Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "183": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "id": 183, + "name": "_Maple Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "184": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "TB": false, + "id": 184, + "name": "_Maple Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "185": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "id": 185, + "name": "_Maple Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "186": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "TB": false, + "id": 186, + "name": "_Maple Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "187": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "id": 187, + "name": "_Maple Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "188": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "TB": false, + "id": 188, + "name": "_Maple Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "189": { + "displayName": { + "translationKey": "item:mapleTrapdoor" + }, + "ttb": 2800, + "itemTexture": "maple_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Maple Trapdoor|meta|rot1|closed", + "blockModel": "Maple Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 189, + "name": "Maple Trapdoor", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "190": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 190, + "name": "Maple Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "191": { + "ttb": 2800, + "harvestType": "wood", + "id": 191, + "name": "Maple Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "192": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 192, + "name": "Maple Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "193": { + "ttb": 2800, + "harvestType": "wood", + "id": 193, + "name": "Maple Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "194": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 194, + "name": "Maple Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "195": { + "ttb": 2800, + "harvestType": "wood", + "id": 195, + "name": "Maple Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "196": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 196, + "name": "Maple Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "197": { + "displayName": { + "translationKey": "item:aspenSapling" + }, + "ttb": 1, + "textureInfo": "aspen_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "aspen_sapling", + "id": 197, + "name": "Aspen Sapling", + "stackable": true, + "meta": { + "rootName": "Aspen Sapling", + "rootId": 197, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "198": { + "displayName": { + "translationKey": "item:mapleSapling" + }, + "ttb": 1, + "textureInfo": "maple_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "maple_sapling", + "id": 198, + "name": "Maple Sapling", + "stackable": true, + "meta": { + "rootName": "Maple Sapling", + "rootId": 198, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "199": { + "displayName": { + "translationKey": "item:jungleSapling" + }, + "ttb": 1, + "textureInfo": "jungle_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "jungle_sapling", + "id": 199, + "name": "Jungle Sapling", + "stackable": true, + "meta": { + "rootName": "Jungle Sapling", + "rootId": 199, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "200": { + "displayName": { + "translationKey": "item:plumSapling" + }, + "ttb": 1, + "textureInfo": "plum_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "plum_sapling", + "id": 200, + "name": "Plum Sapling", + "stackable": true, + "meta": { + "rootName": "Plum Sapling", + "rootId": 200, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "201": { + "displayName": { + "translationKey": "item:pineSapling" + }, + "ttb": 1, + "textureInfo": "pine_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "pine_sapling", + "id": 201, + "name": "Pine Sapling", + "stackable": true, + "meta": { + "rootName": "Pine Sapling", + "rootId": 201, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "202": { + "displayName": { + "translationKey": "item:cedarSapling" + }, + "ttb": 1, + "textureInfo": "cedar_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cedar_sapling", + "id": 202, + "name": "Cedar Sapling", + "stackable": true, + "meta": { + "rootName": "Cedar Sapling", + "rootId": 202, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "203": { + "ttb": 2400, + "textureInfo": "log_maple", + "harvestType": "wood", + "drops": "Maple Log", + "id": 203, + "name": "Maple Log|TreeBase|Maple", + "stackable": true, + "meta": { + "rootName": "Maple Log", + "rootId": 9, + "metaStr": "TreeBase|Maple", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Maple", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 84 + }, + "204": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "rootMetaDesc": "Chest|meta|rot1", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 204, + "name": "Chest", + "stackable": true, + "meta": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "205": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 205, + "name": "Chest|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "206": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 206, + "name": "Chest|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "207": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 207, + "name": "Chest|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "208": { + "ttb": 350, + "textureInfo": "leaves_pine", + "harvestType": "cuttable", + "drops": "Pine Leaves", + "id": 208, + "name": "Pine Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Pine Leaves", + "rootId": 100, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 173 + }, + "209": { + "ttb": 350, + "textureInfo": "leaves_aspen", + "harvestType": "cuttable", + "drops": "Aspen Leaves", + "id": 209, + "name": "Aspen Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Aspen Leaves", + "rootId": 101, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 174 + }, + "210": { + "ttb": 350, + "textureInfo": "leaves_maple", + "harvestType": "cuttable", + "drops": "Maple Leaves", + "id": 210, + "name": "Maple Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Maple Leaves", + "rootId": 102, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 175 + }, + "211": { + "ttb": 350, + "textureInfo": "leaves_jungle", + "harvestType": "cuttable", + "drops": "Jungle Leaves", + "id": 211, + "name": "Jungle Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Jungle Leaves", + "rootId": 103, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 176 + }, + "212": { + "displayName": { + "translationKey": "item:protector" + }, + "ttb": 5000, + "textureInfo": "protector", + "harvestType": "rock", + "description": { + "translationKey": "item:protectorDescription" + }, + "id": 212, + "name": "Protector", + "stackable": true, + "meta": { + "rootName": "Protector", + "rootId": 212, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 230 + }, + "213": { + "displayName": { + "translationKey": "item:fatCactus" + }, + "ttb": 400, + "textureInfo": "cactus_top", + "harvestType": "cuttable", + "damage": 22, + "id": 213, + "name": "Fat Cactus", + "stackable": true, + "meta": { + "rootName": "Fat Cactus", + "rootId": 213, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 231 + }, + "214": { + "displayName": { + "translationKey": "item:dryFatCactus" + }, + "ttb": 400, + "textureInfo": "cactus_dry", + "harvestType": "cuttable", + "damage": 27, + "id": 214, + "name": "Dry Fat Cactus", + "stackable": true, + "meta": { + "rootName": "Dry Fat Cactus", + "rootId": 214, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 232 + }, + "215": { + "displayName": { + "translationKey": "item:ladder" + }, + "ttb": 1000, + "itemTexture": "ladder_maple", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Maple Ladder|meta|rot1", + "TB": false, + "blockModel": "Maple Ladder", + "blockModelItem": true, + "id": 215, + "name": "Maple Ladder", + "stackable": true, + "meta": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "216": { + "displayName": { + "translationKey": "item:ladder" + }, + "ttb": 1000, + "itemTexture": "ladder_maple", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "blockModel": "Maple Ladder", + "blockModelItem": true, + "id": 216, + "name": "Maple Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "217": { + "displayName": { + "translationKey": "item:ladder" + }, + "ttb": 1000, + "itemTexture": "ladder_maple", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "blockModel": "Maple Ladder", + "blockModelItem": true, + "id": 217, + "name": "Maple Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "218": { + "displayName": { + "translationKey": "item:ladder" + }, + "ttb": 1000, + "itemTexture": "ladder_maple", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "blockModel": "Maple Ladder", + "blockModelItem": true, + "id": 218, + "name": "Maple Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "219": { + "displayName": { + "translationKey": "item:vines" + }, + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "rootMetaDesc": "Vines|meta|rot1", + "blockModel": "Vines", + "modelScale": 10, + "heldItemScale": 10, + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 219, + "name": "Vines", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "220": { + "displayName": { + "translationKey": "item:vines" + }, + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "blockModel": "Vines", + "modelScale": 10, + "heldItemScale": 10, + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 220, + "name": "Vines|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "221": { + "displayName": { + "translationKey": "item:vines" + }, + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "blockModel": "Vines", + "modelScale": 10, + "heldItemScale": 10, + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 221, + "name": "Vines|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "222": { + "displayName": { + "translationKey": "item:vines" + }, + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "blockModel": "Vines", + "modelScale": 10, + "heldItemScale": 10, + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 222, + "name": "Vines|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "223": { + "ttb": 600, + "textureInfo": "dirt", + "harvestType": "granule", + "id": 223, + "name": "Dirt|GrassRoots", + "stackable": true, + "meta": { + "rootName": "Dirt", + "rootId": 2, + "metaStr": "GrassRoots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 77 + }, + "224": { + "displayName": { + "translationKey": "item:ironLadder" + }, + "ttb": 1800, + "itemTexture": "iron_ladder", + "model": "rotatableOffset", + "harvestType": "rock", + "rootMetaDesc": "Iron Ladder|meta|rot1", + "TB": false, + "blockModel": "Iron Ladder", + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 224, + "name": "Iron Ladder", + "stackable": true, + "meta": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "225": { + "displayName": { + "translationKey": "item:ironLadder" + }, + "ttb": 1800, + "itemTexture": "iron_ladder", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "Iron Ladder", + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 225, + "name": "Iron Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "226": { + "displayName": { + "translationKey": "item:ironLadder" + }, + "ttb": 1800, + "itemTexture": "iron_ladder", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "Iron Ladder", + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 226, + "name": "Iron Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "227": { + "displayName": { + "translationKey": "item:ironLadder" + }, + "ttb": 1800, + "itemTexture": "iron_ladder", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "Iron Ladder", + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 227, + "name": "Iron Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "228": { + "displayName": { + "translationKey": "item:whitePlanks" + }, + "ttb": 1800, + "textureInfo": "white_planks", + "harvestType": "wood", + "id": 228, + "name": "White Planks", + "stackable": true, + "meta": { + "rootName": "White Planks", + "rootId": 228, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 233 + }, + "229": { + "displayName": { + "translationKey": "item:orangePlanks" + }, + "ttb": 1800, + "textureInfo": "orange_planks", + "harvestType": "wood", + "id": 229, + "name": "Orange Planks", + "stackable": true, + "meta": { + "rootName": "Orange Planks", + "rootId": 229, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 234 + }, + "230": { + "displayName": { + "translationKey": "item:magentaPlanks" + }, + "ttb": 1800, + "textureInfo": "magenta_planks", + "harvestType": "wood", + "id": 230, + "name": "Magenta Planks", + "stackable": true, + "meta": { + "rootName": "Magenta Planks", + "rootId": 230, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 235 + }, + "231": { + "displayName": { + "translationKey": "item:lightBluePlanks" + }, + "ttb": 1800, + "textureInfo": "light_blue_planks", + "harvestType": "wood", + "id": 231, + "name": "Light Blue Planks", + "stackable": true, + "meta": { + "rootName": "Light Blue Planks", + "rootId": 231, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 236 + }, + "232": { + "displayName": { + "translationKey": "item:yellowPlanks" + }, + "ttb": 1800, + "textureInfo": "yellow_planks", + "harvestType": "wood", + "id": 232, + "name": "Yellow Planks", + "stackable": true, + "meta": { + "rootName": "Yellow Planks", + "rootId": 232, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 237 + }, + "233": { + "displayName": { + "translationKey": "item:limePlanks" + }, + "ttb": 1800, + "textureInfo": "lime_planks", + "harvestType": "wood", + "id": 233, + "name": "Lime Planks", + "stackable": true, + "meta": { + "rootName": "Lime Planks", + "rootId": 233, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 238 + }, + "234": { + "displayName": { + "translationKey": "item:pinkPlanks" + }, + "ttb": 1800, + "textureInfo": "pink_planks", + "harvestType": "wood", + "id": 234, + "name": "Pink Planks", + "stackable": true, + "meta": { + "rootName": "Pink Planks", + "rootId": 234, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 239 + }, + "235": { + "displayName": { + "translationKey": "item:grayPlanks" + }, + "ttb": 1800, + "textureInfo": "gray_planks", + "harvestType": "wood", + "id": 235, + "name": "Gray Planks", + "stackable": true, + "meta": { + "rootName": "Gray Planks", + "rootId": 235, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 240 + }, + "236": { + "displayName": { + "translationKey": "item:lightGrayPlanks" + }, + "ttb": 1800, + "textureInfo": "light_gray_planks", + "harvestType": "wood", + "id": 236, + "name": "Light Gray Planks", + "stackable": true, + "meta": { + "rootName": "Light Gray Planks", + "rootId": 236, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 241 + }, + "237": { + "displayName": { + "translationKey": "item:cyanPlanks" + }, + "ttb": 1800, + "textureInfo": "cyan_planks", + "harvestType": "wood", + "id": 237, + "name": "Cyan Planks", + "stackable": true, + "meta": { + "rootName": "Cyan Planks", + "rootId": 237, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 242 + }, + "238": { + "displayName": { + "translationKey": "item:purplePlanks" + }, + "ttb": 1800, + "textureInfo": "purple_planks", + "harvestType": "wood", + "id": 238, + "name": "Purple Planks", + "stackable": true, + "meta": { + "rootName": "Purple Planks", + "rootId": 238, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 243 + }, + "239": { + "displayName": { + "translationKey": "item:bluePlanks" + }, + "ttb": 1800, + "textureInfo": "blue_planks", + "harvestType": "wood", + "id": 239, + "name": "Blue Planks", + "stackable": true, + "meta": { + "rootName": "Blue Planks", + "rootId": 239, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 244 + }, + "240": { + "displayName": { + "translationKey": "item:brownPlanks" + }, + "ttb": 1800, + "textureInfo": "brown_planks", + "harvestType": "wood", + "id": 240, + "name": "Brown Planks", + "stackable": true, + "meta": { + "rootName": "Brown Planks", + "rootId": 240, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 245 + }, + "241": { + "displayName": { + "translationKey": "item:greenPlanks" + }, + "ttb": 1800, + "textureInfo": "green_planks", + "harvestType": "wood", + "id": 241, + "name": "Green Planks", + "stackable": true, + "meta": { + "rootName": "Green Planks", + "rootId": 241, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 246 + }, + "242": { + "displayName": { + "translationKey": "item:redPlanks" + }, + "ttb": 1800, + "textureInfo": "red_planks", + "harvestType": "wood", + "id": 242, + "name": "Red Planks", + "stackable": true, + "meta": { + "rootName": "Red Planks", + "rootId": 242, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 247 + }, + "243": { + "displayName": { + "translationKey": "item:blackPlanks" + }, + "ttb": 1800, + "textureInfo": "black_planks", + "harvestType": "wood", + "id": 243, + "name": "Black Planks", + "stackable": true, + "meta": { + "rootName": "Black Planks", + "rootId": 243, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 248 + }, + "244": { + "displayName": { + "translationKey": "item:artisanBench" + }, + "ttb": 3000, + "textureInfo": [ + "artisan_table_side", + "artisan_table_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:artisanBenchDescription" + }, + "id": 244, + "name": "Artisan Bench", + "stackable": true, + "meta": { + "rootName": "Artisan Bench", + "rootId": 244, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 249, + 250 + ] + }, + "245": { + "displayName": { + "translationKey": "item:whiteCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "white_glazed_terracotta[rot[1", + "white_glazed_terracotta[rot[2", + "white_glazed_terracotta[rot[3", + "white_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "White Ceramic|meta|rot1", + "id": 245, + "name": "White Ceramic", + "stackable": true, + "meta": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 251, + 252, + 253, + 254 + ] + }, + "246": { + "ttb": 1500, + "textureInfo": [ + "white_glazed_terracotta[rot[1", + "white_glazed_terracotta[rot[2", + "white_glazed_terracotta[rot[3", + "white_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 246, + "name": "White Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 251, + 252, + 253, + 254 + ] + }, + "247": { + "ttb": 1500, + "textureInfo": [ + "white_glazed_terracotta[rot[1", + "white_glazed_terracotta[rot[2", + "white_glazed_terracotta[rot[3", + "white_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 247, + "name": "White Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 251, + 252, + 253, + 254 + ] + }, + "248": { + "ttb": 1500, + "textureInfo": [ + "white_glazed_terracotta[rot[1", + "white_glazed_terracotta[rot[2", + "white_glazed_terracotta[rot[3", + "white_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 248, + "name": "White Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 251, + 252, + 253, + 254 + ] + }, + "249": { + "displayName": { + "translationKey": "item:orangeCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "orange_glazed_terracotta[rot[1", + "orange_glazed_terracotta[rot[2", + "orange_glazed_terracotta[rot[3", + "orange_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Orange Ceramic|meta|rot1", + "id": 249, + "name": "Orange Ceramic", + "stackable": true, + "meta": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 255, + 256, + 257, + 258 + ] + }, + "250": { + "ttb": 1500, + "textureInfo": [ + "orange_glazed_terracotta[rot[1", + "orange_glazed_terracotta[rot[2", + "orange_glazed_terracotta[rot[3", + "orange_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 250, + "name": "Orange Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 255, + 256, + 257, + 258 + ] + }, + "251": { + "ttb": 1500, + "textureInfo": [ + "orange_glazed_terracotta[rot[1", + "orange_glazed_terracotta[rot[2", + "orange_glazed_terracotta[rot[3", + "orange_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 251, + "name": "Orange Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 255, + 256, + 257, + 258 + ] + }, + "252": { + "ttb": 1500, + "textureInfo": [ + "orange_glazed_terracotta[rot[1", + "orange_glazed_terracotta[rot[2", + "orange_glazed_terracotta[rot[3", + "orange_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 252, + "name": "Orange Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 255, + 256, + 257, + 258 + ] + }, + "253": { + "displayName": { + "translationKey": "item:magentaCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "magenta_glazed_terracotta[rot[1", + "magenta_glazed_terracotta[rot[2", + "magenta_glazed_terracotta[rot[3", + "magenta_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Magenta Ceramic|meta|rot1", + "id": 253, + "name": "Magenta Ceramic", + "stackable": true, + "meta": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 259, + 260, + 261, + 262 + ] + }, + "254": { + "ttb": 1500, + "textureInfo": [ + "magenta_glazed_terracotta[rot[1", + "magenta_glazed_terracotta[rot[2", + "magenta_glazed_terracotta[rot[3", + "magenta_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 254, + "name": "Magenta Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 259, + 260, + 261, + 262 + ] + }, + "255": { + "ttb": 1500, + "textureInfo": [ + "magenta_glazed_terracotta[rot[1", + "magenta_glazed_terracotta[rot[2", + "magenta_glazed_terracotta[rot[3", + "magenta_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 255, + "name": "Magenta Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 259, + 260, + 261, + 262 + ] + }, + "256": { + "ttb": 1500, + "textureInfo": [ + "magenta_glazed_terracotta[rot[1", + "magenta_glazed_terracotta[rot[2", + "magenta_glazed_terracotta[rot[3", + "magenta_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 256, + "name": "Magenta Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 259, + 260, + 261, + 262 + ] + }, + "257": { + "displayName": { + "translationKey": "item:lightBlueCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "light_blue_glazed_terracotta[rot[1", + "light_blue_glazed_terracotta[rot[2", + "light_blue_glazed_terracotta[rot[3", + "light_blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Light Blue Ceramic|meta|rot1", + "id": 257, + "name": "Light Blue Ceramic", + "stackable": true, + "meta": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 263, + 264, + 265, + 266 + ] + }, + "258": { + "ttb": 1500, + "textureInfo": [ + "light_blue_glazed_terracotta[rot[1", + "light_blue_glazed_terracotta[rot[2", + "light_blue_glazed_terracotta[rot[3", + "light_blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 258, + "name": "Light Blue Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 263, + 264, + 265, + 266 + ] + }, + "259": { + "ttb": 1500, + "textureInfo": [ + "light_blue_glazed_terracotta[rot[1", + "light_blue_glazed_terracotta[rot[2", + "light_blue_glazed_terracotta[rot[3", + "light_blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 259, + "name": "Light Blue Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 263, + 264, + 265, + 266 + ] + }, + "260": { + "ttb": 1500, + "textureInfo": [ + "light_blue_glazed_terracotta[rot[1", + "light_blue_glazed_terracotta[rot[2", + "light_blue_glazed_terracotta[rot[3", + "light_blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 260, + "name": "Light Blue Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 263, + 264, + 265, + 266 + ] + }, + "261": { + "displayName": { + "translationKey": "item:yellowCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "yellow_glazed_terracotta[rot[1", + "yellow_glazed_terracotta[rot[2", + "yellow_glazed_terracotta[rot[3", + "yellow_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Yellow Ceramic|meta|rot1", + "id": 261, + "name": "Yellow Ceramic", + "stackable": true, + "meta": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 267, + 268, + 269, + 270 + ] + }, + "262": { + "ttb": 1500, + "textureInfo": [ + "yellow_glazed_terracotta[rot[1", + "yellow_glazed_terracotta[rot[2", + "yellow_glazed_terracotta[rot[3", + "yellow_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 262, + "name": "Yellow Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 267, + 268, + 269, + 270 + ] + }, + "263": { + "ttb": 1500, + "textureInfo": [ + "yellow_glazed_terracotta[rot[1", + "yellow_glazed_terracotta[rot[2", + "yellow_glazed_terracotta[rot[3", + "yellow_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 263, + "name": "Yellow Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 267, + 268, + 269, + 270 + ] + }, + "264": { + "ttb": 1500, + "textureInfo": [ + "yellow_glazed_terracotta[rot[1", + "yellow_glazed_terracotta[rot[2", + "yellow_glazed_terracotta[rot[3", + "yellow_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 264, + "name": "Yellow Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 267, + 268, + 269, + 270 + ] + }, + "265": { + "displayName": { + "translationKey": "item:limeCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "lime_glazed_terracotta[rot[1", + "lime_glazed_terracotta[rot[2", + "lime_glazed_terracotta[rot[3", + "lime_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Lime Ceramic|meta|rot1", + "id": 265, + "name": "Lime Ceramic", + "stackable": true, + "meta": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 271, + 272, + 273, + 274 + ] + }, + "266": { + "ttb": 1500, + "textureInfo": [ + "lime_glazed_terracotta[rot[1", + "lime_glazed_terracotta[rot[2", + "lime_glazed_terracotta[rot[3", + "lime_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 266, + "name": "Lime Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 271, + 272, + 273, + 274 + ] + }, + "267": { + "ttb": 1500, + "textureInfo": [ + "lime_glazed_terracotta[rot[1", + "lime_glazed_terracotta[rot[2", + "lime_glazed_terracotta[rot[3", + "lime_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 267, + "name": "Lime Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 271, + 272, + 273, + 274 + ] + }, + "268": { + "ttb": 1500, + "textureInfo": [ + "lime_glazed_terracotta[rot[1", + "lime_glazed_terracotta[rot[2", + "lime_glazed_terracotta[rot[3", + "lime_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 268, + "name": "Lime Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 271, + 272, + 273, + 274 + ] + }, + "269": { + "displayName": { + "translationKey": "item:pinkCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "pink_glazed_terracotta[rot[1", + "pink_glazed_terracotta[rot[2", + "pink_glazed_terracotta[rot[3", + "pink_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Pink Ceramic|meta|rot1", + "id": 269, + "name": "Pink Ceramic", + "stackable": true, + "meta": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 275, + 276, + 277, + 278 + ] + }, + "270": { + "ttb": 1500, + "textureInfo": [ + "pink_glazed_terracotta[rot[1", + "pink_glazed_terracotta[rot[2", + "pink_glazed_terracotta[rot[3", + "pink_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 270, + "name": "Pink Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 275, + 276, + 277, + 278 + ] + }, + "271": { + "ttb": 1500, + "textureInfo": [ + "pink_glazed_terracotta[rot[1", + "pink_glazed_terracotta[rot[2", + "pink_glazed_terracotta[rot[3", + "pink_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 271, + "name": "Pink Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 275, + 276, + 277, + 278 + ] + }, + "272": { + "ttb": 1500, + "textureInfo": [ + "pink_glazed_terracotta[rot[1", + "pink_glazed_terracotta[rot[2", + "pink_glazed_terracotta[rot[3", + "pink_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 272, + "name": "Pink Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 275, + 276, + 277, + 278 + ] + }, + "273": { + "displayName": { + "translationKey": "item:grayCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "gray_glazed_terracotta[rot[1", + "gray_glazed_terracotta[rot[2", + "gray_glazed_terracotta[rot[3", + "gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Gray Ceramic|meta|rot1", + "id": 273, + "name": "Gray Ceramic", + "stackable": true, + "meta": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 279, + 280, + 281, + 282 + ] + }, + "274": { + "ttb": 1500, + "textureInfo": [ + "gray_glazed_terracotta[rot[1", + "gray_glazed_terracotta[rot[2", + "gray_glazed_terracotta[rot[3", + "gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 274, + "name": "Gray Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 279, + 280, + 281, + 282 + ] + }, + "275": { + "ttb": 1500, + "textureInfo": [ + "gray_glazed_terracotta[rot[1", + "gray_glazed_terracotta[rot[2", + "gray_glazed_terracotta[rot[3", + "gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 275, + "name": "Gray Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 279, + 280, + 281, + 282 + ] + }, + "276": { + "ttb": 1500, + "textureInfo": [ + "gray_glazed_terracotta[rot[1", + "gray_glazed_terracotta[rot[2", + "gray_glazed_terracotta[rot[3", + "gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 276, + "name": "Gray Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 279, + 280, + 281, + 282 + ] + }, + "277": { + "displayName": { + "translationKey": "item:lightGrayCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "light_gray_glazed_terracotta[rot[1", + "light_gray_glazed_terracotta[rot[2", + "light_gray_glazed_terracotta[rot[3", + "light_gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Light Gray Ceramic|meta|rot1", + "id": 277, + "name": "Light Gray Ceramic", + "stackable": true, + "meta": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 283, + 284, + 285, + 286 + ] + }, + "278": { + "ttb": 1500, + "textureInfo": [ + "light_gray_glazed_terracotta[rot[1", + "light_gray_glazed_terracotta[rot[2", + "light_gray_glazed_terracotta[rot[3", + "light_gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 278, + "name": "Light Gray Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 283, + 284, + 285, + 286 + ] + }, + "279": { + "ttb": 1500, + "textureInfo": [ + "light_gray_glazed_terracotta[rot[1", + "light_gray_glazed_terracotta[rot[2", + "light_gray_glazed_terracotta[rot[3", + "light_gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 279, + "name": "Light Gray Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 283, + 284, + 285, + 286 + ] + }, + "280": { + "ttb": 1500, + "textureInfo": [ + "light_gray_glazed_terracotta[rot[1", + "light_gray_glazed_terracotta[rot[2", + "light_gray_glazed_terracotta[rot[3", + "light_gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 280, + "name": "Light Gray Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 283, + 284, + 285, + 286 + ] + }, + "281": { + "displayName": { + "translationKey": "item:cyanCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "cyan_glazed_terracotta[rot[1", + "cyan_glazed_terracotta[rot[2", + "cyan_glazed_terracotta[rot[3", + "cyan_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Cyan Ceramic|meta|rot1", + "id": 281, + "name": "Cyan Ceramic", + "stackable": true, + "meta": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 287, + 288, + 289, + 290 + ] + }, + "282": { + "ttb": 1500, + "textureInfo": [ + "cyan_glazed_terracotta[rot[1", + "cyan_glazed_terracotta[rot[2", + "cyan_glazed_terracotta[rot[3", + "cyan_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 282, + "name": "Cyan Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 287, + 288, + 289, + 290 + ] + }, + "283": { + "ttb": 1500, + "textureInfo": [ + "cyan_glazed_terracotta[rot[1", + "cyan_glazed_terracotta[rot[2", + "cyan_glazed_terracotta[rot[3", + "cyan_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 283, + "name": "Cyan Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 287, + 288, + 289, + 290 + ] + }, + "284": { + "ttb": 1500, + "textureInfo": [ + "cyan_glazed_terracotta[rot[1", + "cyan_glazed_terracotta[rot[2", + "cyan_glazed_terracotta[rot[3", + "cyan_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 284, + "name": "Cyan Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 287, + 288, + 289, + 290 + ] + }, + "285": { + "displayName": { + "translationKey": "item:purpleCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "purple_glazed_terracotta[rot[1", + "purple_glazed_terracotta[rot[2", + "purple_glazed_terracotta[rot[3", + "purple_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Purple Ceramic|meta|rot1", + "id": 285, + "name": "Purple Ceramic", + "stackable": true, + "meta": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 291, + 292, + 293, + 294 + ] + }, + "286": { + "ttb": 1500, + "textureInfo": [ + "purple_glazed_terracotta[rot[1", + "purple_glazed_terracotta[rot[2", + "purple_glazed_terracotta[rot[3", + "purple_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 286, + "name": "Purple Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 291, + 292, + 293, + 294 + ] + }, + "287": { + "ttb": 1500, + "textureInfo": [ + "purple_glazed_terracotta[rot[1", + "purple_glazed_terracotta[rot[2", + "purple_glazed_terracotta[rot[3", + "purple_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 287, + "name": "Purple Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 291, + 292, + 293, + 294 + ] + }, + "288": { + "ttb": 1500, + "textureInfo": [ + "purple_glazed_terracotta[rot[1", + "purple_glazed_terracotta[rot[2", + "purple_glazed_terracotta[rot[3", + "purple_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 288, + "name": "Purple Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 291, + 292, + 293, + 294 + ] + }, + "289": { + "displayName": { + "translationKey": "item:blueCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "blue_glazed_terracotta[rot[1", + "blue_glazed_terracotta[rot[2", + "blue_glazed_terracotta[rot[3", + "blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Blue Ceramic|meta|rot1", + "id": 289, + "name": "Blue Ceramic", + "stackable": true, + "meta": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 295, + 296, + 297, + 298 + ] + }, + "290": { + "ttb": 1500, + "textureInfo": [ + "blue_glazed_terracotta[rot[1", + "blue_glazed_terracotta[rot[2", + "blue_glazed_terracotta[rot[3", + "blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 290, + "name": "Blue Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 295, + 296, + 297, + 298 + ] + }, + "291": { + "ttb": 1500, + "textureInfo": [ + "blue_glazed_terracotta[rot[1", + "blue_glazed_terracotta[rot[2", + "blue_glazed_terracotta[rot[3", + "blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 291, + "name": "Blue Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 295, + 296, + 297, + 298 + ] + }, + "292": { + "ttb": 1500, + "textureInfo": [ + "blue_glazed_terracotta[rot[1", + "blue_glazed_terracotta[rot[2", + "blue_glazed_terracotta[rot[3", + "blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 292, + "name": "Blue Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 295, + 296, + 297, + 298 + ] + }, + "293": { + "displayName": { + "translationKey": "item:brownCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "brown_glazed_terracotta[rot[1", + "brown_glazed_terracotta[rot[2", + "brown_glazed_terracotta[rot[3", + "brown_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Brown Ceramic|meta|rot1", + "id": 293, + "name": "Brown Ceramic", + "stackable": true, + "meta": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 299, + 300, + 301, + 302 + ] + }, + "294": { + "ttb": 1500, + "textureInfo": [ + "brown_glazed_terracotta[rot[1", + "brown_glazed_terracotta[rot[2", + "brown_glazed_terracotta[rot[3", + "brown_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 294, + "name": "Brown Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 299, + 300, + 301, + 302 + ] + }, + "295": { + "ttb": 1500, + "textureInfo": [ + "brown_glazed_terracotta[rot[1", + "brown_glazed_terracotta[rot[2", + "brown_glazed_terracotta[rot[3", + "brown_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 295, + "name": "Brown Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 299, + 300, + 301, + 302 + ] + }, + "296": { + "ttb": 1500, + "textureInfo": [ + "brown_glazed_terracotta[rot[1", + "brown_glazed_terracotta[rot[2", + "brown_glazed_terracotta[rot[3", + "brown_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 296, + "name": "Brown Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 299, + 300, + 301, + 302 + ] + }, + "297": { + "displayName": { + "translationKey": "item:greenCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "green_glazed_terracotta[rot[1", + "green_glazed_terracotta[rot[2", + "green_glazed_terracotta[rot[3", + "green_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Green Ceramic|meta|rot1", + "id": 297, + "name": "Green Ceramic", + "stackable": true, + "meta": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 303, + 304, + 305, + 306 + ] + }, + "298": { + "ttb": 1500, + "textureInfo": [ + "green_glazed_terracotta[rot[1", + "green_glazed_terracotta[rot[2", + "green_glazed_terracotta[rot[3", + "green_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 298, + "name": "Green Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 303, + 304, + 305, + 306 + ] + }, + "299": { + "ttb": 1500, + "textureInfo": [ + "green_glazed_terracotta[rot[1", + "green_glazed_terracotta[rot[2", + "green_glazed_terracotta[rot[3", + "green_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 299, + "name": "Green Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 303, + 304, + 305, + 306 + ] + }, + "300": { + "ttb": 1500, + "textureInfo": [ + "green_glazed_terracotta[rot[1", + "green_glazed_terracotta[rot[2", + "green_glazed_terracotta[rot[3", + "green_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 300, + "name": "Green Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 303, + 304, + 305, + 306 + ] + }, + "301": { + "displayName": { + "translationKey": "item:redCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "red_glazed_terracotta[rot[1", + "red_glazed_terracotta[rot[2", + "red_glazed_terracotta[rot[3", + "red_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Red Ceramic|meta|rot1", + "id": 301, + "name": "Red Ceramic", + "stackable": true, + "meta": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 307, + 308, + 309, + 310 + ] + }, + "302": { + "ttb": 1500, + "textureInfo": [ + "red_glazed_terracotta[rot[1", + "red_glazed_terracotta[rot[2", + "red_glazed_terracotta[rot[3", + "red_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 302, + "name": "Red Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 307, + 308, + 309, + 310 + ] + }, + "303": { + "ttb": 1500, + "textureInfo": [ + "red_glazed_terracotta[rot[1", + "red_glazed_terracotta[rot[2", + "red_glazed_terracotta[rot[3", + "red_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 303, + "name": "Red Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 307, + 308, + 309, + 310 + ] + }, + "304": { + "ttb": 1500, + "textureInfo": [ + "red_glazed_terracotta[rot[1", + "red_glazed_terracotta[rot[2", + "red_glazed_terracotta[rot[3", + "red_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 304, + "name": "Red Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 307, + 308, + 309, + 310 + ] + }, + "305": { + "displayName": { + "translationKey": "item:blackCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "black_glazed_terracotta[rot[1", + "black_glazed_terracotta[rot[2", + "black_glazed_terracotta[rot[3", + "black_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Black Ceramic|meta|rot1", + "id": 305, + "name": "Black Ceramic", + "stackable": true, + "meta": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 311, + 312, + 313, + 314 + ] + }, + "306": { + "ttb": 1500, + "textureInfo": [ + "black_glazed_terracotta[rot[1", + "black_glazed_terracotta[rot[2", + "black_glazed_terracotta[rot[3", + "black_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 306, + "name": "Black Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 311, + 312, + 313, + 314 + ] + }, + "307": { + "ttb": 1500, + "textureInfo": [ + "black_glazed_terracotta[rot[1", + "black_glazed_terracotta[rot[2", + "black_glazed_terracotta[rot[3", + "black_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 307, + "name": "Black Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 311, + 312, + 313, + 314 + ] + }, + "308": { + "ttb": 1500, + "textureInfo": [ + "black_glazed_terracotta[rot[1", + "black_glazed_terracotta[rot[2", + "black_glazed_terracotta[rot[3", + "black_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 308, + "name": "Black Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 311, + 312, + 313, + 314 + ] + }, + "309": { + "displayName": { + "translationKey": "item:wheatSeeds" + }, + "ttb": 400, + "textureInfo": "wheat_stage0", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "wheat_seeds", + "description": { + "translationKey": "item:wheatSeedsDescription" + }, + "id": 309, + "name": "Wheat Seeds", + "stackable": true, + "meta": { + "rootName": "Wheat Seeds", + "rootId": 309, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "310": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Wheat Seeds", + "textureInfo": "wheat_stage2", + "id": 310, + "name": "Wheat_stage1", + "stackable": true, + "meta": { + "rootName": "Wheat_stage1", + "rootId": 310, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "311": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Wheat Seeds", + "textureInfo": "wheat_stage3", + "id": 311, + "name": "Wheat_stage2", + "stackable": true, + "meta": { + "rootName": "Wheat_stage2", + "rootId": 311, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "312": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Wheat Seeds", + "textureInfo": "wheat_stage4", + "id": 312, + "name": "Wheat_stage3", + "stackable": true, + "meta": { + "rootName": "Wheat_stage3", + "rootId": 312, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "313": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Wheat Seeds", + "textureInfo": "wheat_stage5", + "id": 313, + "name": "Wheat_stage4", + "stackable": true, + "meta": { + "rootName": "Wheat_stage4", + "rootId": 313, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "314": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Wheat Seeds", + "textureInfo": "wheat_stage6", + "id": 314, + "name": "Wheat_stage5", + "stackable": true, + "meta": { + "rootName": "Wheat_stage5", + "rootId": 314, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "315": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "textureInfo": "wheat_stage7", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "wheat", + "id": 315, + "name": "Wheat", + "stackable": true, + "meta": { + "rootName": "Wheat", + "rootId": 315, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "316": { + "ttb": 400, + "textureInfo": "wheat_stage7", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "onMinedAura": 5, + "id": 316, + "name": "Wheat|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Wheat", + "rootId": 315, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "317": { + "displayName": { + "translationKey": "item:tilledSoil" + }, + "ttb": 600, + "textureInfo": "farmland", + "harvestType": "granule", + "id": 317, + "name": "Tilled Soil", + "stackable": true, + "meta": { + "rootName": "Tilled Soil", + "rootId": 317, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 315 + }, + "318": { + "displayName": { + "translationKey": "item:breadBlock" + }, + "ttb": 600, + "textureInfo": [ + "bread_block_front", + "bread_block_back", + "bread_block_side", + "bread_block_top" + ], + "texturePerSide": [ + 2, + 2, + 3, + 3, + 0, + 1 + ], + "harvestType": "cuttable", + "id": 318, + "name": "Bread Block", + "stackable": true, + "meta": { + "rootName": "Bread Block", + "rootId": 318, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 316, + 317, + 318, + 319 + ] + }, + "319": { + "ttb": 600, + "textureInfo": [ + "bread_block_front", + "bread_block_back", + "bread_block_side", + "bread_block_top" + ], + "texturePerSide": [ + 2, + 2, + 3, + 3, + 0, + 1 + ], + "harvestType": "cuttable", + "id": 319, + "name": "ReservedBread BlockRotation1", + "stackable": true, + "meta": { + "rootName": "ReservedBread BlockRotation1", + "rootId": 319, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 316, + 317, + 318, + 319 + ] + }, + "320": { + "ttb": 600, + "textureInfo": [ + "bread_block_front", + "bread_block_back", + "bread_block_side", + "bread_block_top" + ], + "texturePerSide": [ + 2, + 2, + 3, + 3, + 0, + 1 + ], + "harvestType": "cuttable", + "id": 320, + "name": "ReservedBread BlockRotation2", + "stackable": true, + "meta": { + "rootName": "ReservedBread BlockRotation2", + "rootId": 320, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 316, + 317, + 318, + 319 + ] + }, + "321": { + "ttb": 600, + "textureInfo": [ + "bread_block_front", + "bread_block_back", + "bread_block_side", + "bread_block_top" + ], + "texturePerSide": [ + 2, + 2, + 3, + 3, + 0, + 1 + ], + "harvestType": "cuttable", + "id": 321, + "name": "ReservedBread BlockRotation3", + "stackable": true, + "meta": { + "rootName": "ReservedBread BlockRotation3", + "rootId": 321, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 316, + 317, + 318, + 319 + ] + }, + "322": { + "displayName": { + "translationKey": "item:mossyMessyStone" + }, + "ttb": 1800, + "textureInfo": "mossy_cobblestone", + "harvestType": "rock", + "id": 322, + "name": "Mossy Messy Stone", + "stackable": true, + "meta": { + "rootName": "Mossy Messy Stone", + "rootId": 322, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 320 + }, + "323": { + "ttb": 300, + "textureInfo": "dandelion", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "dandelion", + "id": 323, + "name": "Dandelion|Roots", + "stackable": true, + "meta": { + "rootName": "Dandelion", + "rootId": 151, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "324": { + "ttb": 300, + "textureInfo": "poppy", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "poppy", + "id": 324, + "name": "Poppy|Roots", + "stackable": true, + "meta": { + "rootName": "Poppy", + "rootId": 152, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "325": { + "ttb": 300, + "textureInfo": "red_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "red_tulip", + "id": 325, + "name": "Red Tulip|Roots", + "stackable": true, + "meta": { + "rootName": "Red Tulip", + "rootId": 153, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "326": { + "ttb": 300, + "textureInfo": "pink_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "pink_tulip", + "id": 326, + "name": "Pink Tulip|Roots", + "stackable": true, + "meta": { + "rootName": "Pink Tulip", + "rootId": 154, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "327": { + "ttb": 300, + "textureInfo": "white_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "white_tulip", + "id": 327, + "name": "White Tulip|Roots", + "stackable": true, + "meta": { + "rootName": "White Tulip", + "rootId": 155, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "328": { + "ttb": 300, + "textureInfo": "orange_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "orange_tulip", + "id": 328, + "name": "Orange Tulip|Roots", + "stackable": true, + "meta": { + "rootName": "Orange Tulip", + "rootId": 156, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "329": { + "ttb": 300, + "textureInfo": "oxeye_daisy", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "oxeye_daisy", + "id": 329, + "name": "Daisy|Roots", + "stackable": true, + "meta": { + "rootName": "Daisy", + "rootId": 157, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "330": { + "ttb": 300, + "textureInfo": "blue_orchid", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "blue_orchid", + "id": 330, + "name": "Bluebell|Roots", + "stackable": true, + "meta": { + "rootName": "Bluebell", + "rootId": 158, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "331": { + "ttb": 300, + "textureInfo": "cornflower", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cornflower", + "id": 331, + "name": "Forget-me-not|Roots", + "stackable": true, + "meta": { + "rootName": "Forget-me-not", + "rootId": 159, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "332": { + "ttb": 300, + "textureInfo": "allium", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "allium", + "id": 332, + "name": "Allium|Roots", + "stackable": true, + "meta": { + "rootName": "Allium", + "rootId": 160, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "333": { + "ttb": 300, + "textureInfo": "azure_bluet", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "azure_bluet", + "id": 333, + "name": "Azure Bluet|Roots", + "stackable": true, + "meta": { + "rootName": "Azure Bluet", + "rootId": 161, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "334": { + "ttb": 300, + "textureInfo": "lily_of_the_valley", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "lily_of_the_valley", + "id": 334, + "name": "Lily of the Valley|Roots", + "stackable": true, + "meta": { + "rootName": "Lily of the Valley", + "rootId": 162, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "335": { + "ttb": 300, + "textureInfo": "shadow_rose", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "shadow_rose", + "id": 335, + "name": "Shadow Rose|Roots", + "stackable": true, + "meta": { + "rootName": "Shadow Rose", + "rootId": 163, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "336": { + "displayName": { + "translationKey": "item:whiteBed" + }, + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "White Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Bed", + "id": 336, + "name": "White Bed", + "stackable": true, + "meta": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "337": { + "displayName": { + "translationKey": "item:whiteBed" + }, + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Bed", + "id": 337, + "name": "White Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "338": { + "displayName": { + "translationKey": "item:whiteBed" + }, + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Bed", + "id": 338, + "name": "White Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "339": { + "displayName": { + "translationKey": "item:whiteBed" + }, + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Bed", + "id": 339, + "name": "White Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "340": { + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "White Bed", + "rootMetaDesc": "_White Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Bed Head", + "id": 340, + "name": "_White Bed Head", + "stackable": true, + "meta": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "341": { + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "White Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Bed Head", + "id": 341, + "name": "_White Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "342": { + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "White Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Bed Head", + "id": 342, + "name": "_White Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "343": { + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "White Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Bed Head", + "id": 343, + "name": "_White Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "344": { + "displayName": { + "translationKey": "item:orangeBed" + }, + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Orange Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Bed", + "id": 344, + "name": "Orange Bed", + "stackable": true, + "meta": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "345": { + "displayName": { + "translationKey": "item:orangeBed" + }, + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Bed", + "id": 345, + "name": "Orange Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "346": { + "displayName": { + "translationKey": "item:orangeBed" + }, + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Bed", + "id": 346, + "name": "Orange Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "347": { + "displayName": { + "translationKey": "item:orangeBed" + }, + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Bed", + "id": 347, + "name": "Orange Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "348": { + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Orange Bed", + "rootMetaDesc": "_Orange Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Bed Head", + "id": 348, + "name": "_Orange Bed Head", + "stackable": true, + "meta": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "349": { + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Orange Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Bed Head", + "id": 349, + "name": "_Orange Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "350": { + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Orange Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Bed Head", + "id": 350, + "name": "_Orange Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "351": { + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Orange Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Bed Head", + "id": 351, + "name": "_Orange Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "352": { + "displayName": { + "translationKey": "item:magentaBed" + }, + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Magenta Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Bed", + "id": 352, + "name": "Magenta Bed", + "stackable": true, + "meta": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "353": { + "displayName": { + "translationKey": "item:magentaBed" + }, + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Bed", + "id": 353, + "name": "Magenta Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "354": { + "displayName": { + "translationKey": "item:magentaBed" + }, + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Bed", + "id": 354, + "name": "Magenta Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "355": { + "displayName": { + "translationKey": "item:magentaBed" + }, + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Bed", + "id": 355, + "name": "Magenta Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "356": { + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Magenta Bed", + "rootMetaDesc": "_Magenta Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Bed Head", + "id": 356, + "name": "_Magenta Bed Head", + "stackable": true, + "meta": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "357": { + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Magenta Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Bed Head", + "id": 357, + "name": "_Magenta Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "358": { + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Magenta Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Bed Head", + "id": 358, + "name": "_Magenta Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "359": { + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Magenta Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Bed Head", + "id": 359, + "name": "_Magenta Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "360": { + "displayName": { + "translationKey": "item:lightBlueBed" + }, + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Light Blue Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Bed", + "id": 360, + "name": "Light Blue Bed", + "stackable": true, + "meta": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "361": { + "displayName": { + "translationKey": "item:lightBlueBed" + }, + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Bed", + "id": 361, + "name": "Light Blue Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "362": { + "displayName": { + "translationKey": "item:lightBlueBed" + }, + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Bed", + "id": 362, + "name": "Light Blue Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "363": { + "displayName": { + "translationKey": "item:lightBlueBed" + }, + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Bed", + "id": 363, + "name": "Light Blue Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "364": { + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Blue Bed", + "rootMetaDesc": "_Light Blue Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Bed Head", + "id": 364, + "name": "_Light Blue Bed Head", + "stackable": true, + "meta": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "365": { + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Bed Head", + "id": 365, + "name": "_Light Blue Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "366": { + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Bed Head", + "id": 366, + "name": "_Light Blue Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "367": { + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Bed Head", + "id": 367, + "name": "_Light Blue Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "368": { + "displayName": { + "translationKey": "item:yellowBed" + }, + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Yellow Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Bed", + "id": 368, + "name": "Yellow Bed", + "stackable": true, + "meta": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "369": { + "displayName": { + "translationKey": "item:yellowBed" + }, + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Bed", + "id": 369, + "name": "Yellow Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "370": { + "displayName": { + "translationKey": "item:yellowBed" + }, + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Bed", + "id": 370, + "name": "Yellow Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "371": { + "displayName": { + "translationKey": "item:yellowBed" + }, + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Bed", + "id": 371, + "name": "Yellow Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "372": { + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Yellow Bed", + "rootMetaDesc": "_Yellow Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Bed Head", + "id": 372, + "name": "_Yellow Bed Head", + "stackable": true, + "meta": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "373": { + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Yellow Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Bed Head", + "id": 373, + "name": "_Yellow Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "374": { + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Yellow Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Bed Head", + "id": 374, + "name": "_Yellow Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "375": { + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Yellow Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Bed Head", + "id": 375, + "name": "_Yellow Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "376": { + "displayName": { + "translationKey": "item:limeBed" + }, + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Lime Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Bed", + "id": 376, + "name": "Lime Bed", + "stackable": true, + "meta": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "377": { + "displayName": { + "translationKey": "item:limeBed" + }, + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Bed", + "id": 377, + "name": "Lime Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "378": { + "displayName": { + "translationKey": "item:limeBed" + }, + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Bed", + "id": 378, + "name": "Lime Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "379": { + "displayName": { + "translationKey": "item:limeBed" + }, + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Bed", + "id": 379, + "name": "Lime Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "380": { + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Lime Bed", + "rootMetaDesc": "_Lime Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Bed Head", + "id": 380, + "name": "_Lime Bed Head", + "stackable": true, + "meta": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "381": { + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Lime Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Bed Head", + "id": 381, + "name": "_Lime Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "382": { + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Lime Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Bed Head", + "id": 382, + "name": "_Lime Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "383": { + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Lime Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Bed Head", + "id": 383, + "name": "_Lime Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "384": { + "displayName": { + "translationKey": "item:pinkBed" + }, + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Pink Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Bed", + "id": 384, + "name": "Pink Bed", + "stackable": true, + "meta": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "385": { + "displayName": { + "translationKey": "item:pinkBed" + }, + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Bed", + "id": 385, + "name": "Pink Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "386": { + "displayName": { + "translationKey": "item:pinkBed" + }, + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Bed", + "id": 386, + "name": "Pink Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "387": { + "displayName": { + "translationKey": "item:pinkBed" + }, + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Bed", + "id": 387, + "name": "Pink Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "388": { + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Pink Bed", + "rootMetaDesc": "_Pink Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Bed Head", + "id": 388, + "name": "_Pink Bed Head", + "stackable": true, + "meta": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "389": { + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Pink Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Bed Head", + "id": 389, + "name": "_Pink Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "390": { + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Pink Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Bed Head", + "id": 390, + "name": "_Pink Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "391": { + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Pink Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Bed Head", + "id": 391, + "name": "_Pink Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "392": { + "displayName": { + "translationKey": "item:grayBed" + }, + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Gray Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Bed", + "id": 392, + "name": "Gray Bed", + "stackable": true, + "meta": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "393": { + "displayName": { + "translationKey": "item:grayBed" + }, + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Bed", + "id": 393, + "name": "Gray Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "394": { + "displayName": { + "translationKey": "item:grayBed" + }, + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Bed", + "id": 394, + "name": "Gray Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "395": { + "displayName": { + "translationKey": "item:grayBed" + }, + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Bed", + "id": 395, + "name": "Gray Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "396": { + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Gray Bed", + "rootMetaDesc": "_Gray Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Bed Head", + "id": 396, + "name": "_Gray Bed Head", + "stackable": true, + "meta": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "397": { + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Bed Head", + "id": 397, + "name": "_Gray Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "398": { + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Bed Head", + "id": 398, + "name": "_Gray Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "399": { + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Bed Head", + "id": 399, + "name": "_Gray Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "400": { + "displayName": { + "translationKey": "item:lightGrayBed" + }, + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Light Gray Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Bed", + "id": 400, + "name": "Light Gray Bed", + "stackable": true, + "meta": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "401": { + "displayName": { + "translationKey": "item:lightGrayBed" + }, + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Bed", + "id": 401, + "name": "Light Gray Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "402": { + "displayName": { + "translationKey": "item:lightGrayBed" + }, + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Bed", + "id": 402, + "name": "Light Gray Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "403": { + "displayName": { + "translationKey": "item:lightGrayBed" + }, + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Bed", + "id": 403, + "name": "Light Gray Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "404": { + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Gray Bed", + "rootMetaDesc": "_Light Gray Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Bed Head", + "id": 404, + "name": "_Light Gray Bed Head", + "stackable": true, + "meta": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "405": { + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Bed Head", + "id": 405, + "name": "_Light Gray Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "406": { + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Bed Head", + "id": 406, + "name": "_Light Gray Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "407": { + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Bed Head", + "id": 407, + "name": "_Light Gray Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "408": { + "displayName": { + "translationKey": "item:cyanBed" + }, + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Cyan Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Bed", + "id": 408, + "name": "Cyan Bed", + "stackable": true, + "meta": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "409": { + "displayName": { + "translationKey": "item:cyanBed" + }, + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Bed", + "id": 409, + "name": "Cyan Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "410": { + "displayName": { + "translationKey": "item:cyanBed" + }, + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Bed", + "id": 410, + "name": "Cyan Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "411": { + "displayName": { + "translationKey": "item:cyanBed" + }, + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Bed", + "id": 411, + "name": "Cyan Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "412": { + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Cyan Bed", + "rootMetaDesc": "_Cyan Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Bed Head", + "id": 412, + "name": "_Cyan Bed Head", + "stackable": true, + "meta": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "413": { + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Cyan Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Bed Head", + "id": 413, + "name": "_Cyan Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "414": { + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Cyan Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Bed Head", + "id": 414, + "name": "_Cyan Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "415": { + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Cyan Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Bed Head", + "id": 415, + "name": "_Cyan Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "416": { + "displayName": { + "translationKey": "item:purpleBed" + }, + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Purple Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Bed", + "id": 416, + "name": "Purple Bed", + "stackable": true, + "meta": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "417": { + "displayName": { + "translationKey": "item:purpleBed" + }, + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Bed", + "id": 417, + "name": "Purple Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "418": { + "displayName": { + "translationKey": "item:purpleBed" + }, + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Bed", + "id": 418, + "name": "Purple Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "419": { + "displayName": { + "translationKey": "item:purpleBed" + }, + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Bed", + "id": 419, + "name": "Purple Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "420": { + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Purple Bed", + "rootMetaDesc": "_Purple Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Bed Head", + "id": 420, + "name": "_Purple Bed Head", + "stackable": true, + "meta": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "421": { + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Purple Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Bed Head", + "id": 421, + "name": "_Purple Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "422": { + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Purple Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Bed Head", + "id": 422, + "name": "_Purple Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "423": { + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Purple Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Bed Head", + "id": 423, + "name": "_Purple Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "424": { + "displayName": { + "translationKey": "item:blueBed" + }, + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Blue Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Bed", + "id": 424, + "name": "Blue Bed", + "stackable": true, + "meta": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "425": { + "displayName": { + "translationKey": "item:blueBed" + }, + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Bed", + "id": 425, + "name": "Blue Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "426": { + "displayName": { + "translationKey": "item:blueBed" + }, + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Bed", + "id": 426, + "name": "Blue Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "427": { + "displayName": { + "translationKey": "item:blueBed" + }, + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Bed", + "id": 427, + "name": "Blue Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "428": { + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Blue Bed", + "rootMetaDesc": "_Blue Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Bed Head", + "id": 428, + "name": "_Blue Bed Head", + "stackable": true, + "meta": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "429": { + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Bed Head", + "id": 429, + "name": "_Blue Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "430": { + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Bed Head", + "id": 430, + "name": "_Blue Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "431": { + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Bed Head", + "id": 431, + "name": "_Blue Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "432": { + "displayName": { + "translationKey": "item:brownBed" + }, + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Brown Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Bed", + "id": 432, + "name": "Brown Bed", + "stackable": true, + "meta": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "433": { + "displayName": { + "translationKey": "item:brownBed" + }, + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Bed", + "id": 433, + "name": "Brown Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "434": { + "displayName": { + "translationKey": "item:brownBed" + }, + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Bed", + "id": 434, + "name": "Brown Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "435": { + "displayName": { + "translationKey": "item:brownBed" + }, + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Bed", + "id": 435, + "name": "Brown Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "436": { + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Brown Bed", + "rootMetaDesc": "_Brown Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Bed Head", + "id": 436, + "name": "_Brown Bed Head", + "stackable": true, + "meta": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "437": { + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Brown Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Bed Head", + "id": 437, + "name": "_Brown Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "438": { + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Brown Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Bed Head", + "id": 438, + "name": "_Brown Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "439": { + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Brown Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Bed Head", + "id": 439, + "name": "_Brown Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "440": { + "displayName": { + "translationKey": "item:greenBed" + }, + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Green Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Bed", + "id": 440, + "name": "Green Bed", + "stackable": true, + "meta": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "441": { + "displayName": { + "translationKey": "item:greenBed" + }, + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Bed", + "id": 441, + "name": "Green Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "442": { + "displayName": { + "translationKey": "item:greenBed" + }, + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Bed", + "id": 442, + "name": "Green Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "443": { + "displayName": { + "translationKey": "item:greenBed" + }, + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Bed", + "id": 443, + "name": "Green Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "444": { + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Green Bed", + "rootMetaDesc": "_Green Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Bed Head", + "id": 444, + "name": "_Green Bed Head", + "stackable": true, + "meta": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "445": { + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Green Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Bed Head", + "id": 445, + "name": "_Green Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "446": { + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Green Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Bed Head", + "id": 446, + "name": "_Green Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "447": { + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Green Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Bed Head", + "id": 447, + "name": "_Green Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "448": { + "displayName": { + "translationKey": "item:redBed" + }, + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Red Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Bed", + "id": 448, + "name": "Red Bed", + "stackable": true, + "meta": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "449": { + "displayName": { + "translationKey": "item:redBed" + }, + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Bed", + "id": 449, + "name": "Red Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "450": { + "displayName": { + "translationKey": "item:redBed" + }, + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Bed", + "id": 450, + "name": "Red Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "451": { + "displayName": { + "translationKey": "item:redBed" + }, + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Bed", + "id": 451, + "name": "Red Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "452": { + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Red Bed", + "rootMetaDesc": "_Red Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Bed Head", + "id": 452, + "name": "_Red Bed Head", + "stackable": true, + "meta": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "453": { + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Red Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Bed Head", + "id": 453, + "name": "_Red Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "454": { + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Red Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Bed Head", + "id": 454, + "name": "_Red Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "455": { + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Red Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Bed Head", + "id": 455, + "name": "_Red Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "456": { + "displayName": { + "translationKey": "item:blackBed" + }, + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Black Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Bed", + "id": 456, + "name": "Black Bed", + "stackable": true, + "meta": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "457": { + "displayName": { + "translationKey": "item:blackBed" + }, + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Bed", + "id": 457, + "name": "Black Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "458": { + "displayName": { + "translationKey": "item:blackBed" + }, + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Bed", + "id": 458, + "name": "Black Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "459": { + "displayName": { + "translationKey": "item:blackBed" + }, + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Bed", + "id": 459, + "name": "Black Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "460": { + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Black Bed", + "rootMetaDesc": "_Black Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Bed Head", + "id": 460, + "name": "_Black Bed Head", + "stackable": true, + "meta": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "461": { + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Black Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Bed Head", + "id": 461, + "name": "_Black Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "462": { + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Black Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Bed Head", + "id": 462, + "name": "_Black Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "463": { + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Black Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Bed Head", + "id": 463, + "name": "_Black Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "464": { + "displayName": { + "translationKey": "item:appleBlock" + }, + "ttb": 600, + "textureInfo": [ + "apple_block_side", + "apple_block_top", + "apple_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 464, + "name": "Apple Block", + "stackable": true, + "meta": { + "rootName": "Apple Block", + "rootId": 464, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 321, + 322, + 323 + ] + }, + "465": { + "displayName": { + "translationKey": "item:moonstoneOre" + }, + "ttb": 5000, + "textureInfo": "moonstone_ore", + "harvestType": "rock", + "harvestLevel": 3, + "drops": "Moonstone", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Moonstone Ore" + }, + "specialToolBonusDrops": { + "Golem Pickaxe": [ + { + "bonusDrop": "Iron Fragment", + "probabilityOfDrop": 0.3333333333333333 + }, + { + "bonusDrop": "Gold Fragment", + "probabilityOfDrop": 0.25 + }, + { + "bonusDrop": "Diamond Fragment", + "probabilityOfDrop": 0.2 + }, + { + "bonusDrop": "Moonstone Fragment", + "probabilityOfDrop": 0.16666666666666666 + }, + { + "bonusDrop": "Coal", + "probabilityOfDrop": 0.14285714285714285 + } + ] + }, + "description": { + "translationKey": "item:moonstoneOreDescription" + }, + "onMinedAura": 50, + "id": 465, + "name": "Moonstone Ore", + "stackable": true, + "meta": { + "rootName": "Moonstone Ore", + "rootId": 465, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 324 + }, + "466": { + "displayName": { + "translationKey": "item:moonstoneChest" + }, + "ttb": 3000, + "textureInfo": [ + "moonstone_chest_front", + "moonstone_chest_side", + "moonstone_chest_top" + ], + "harvestType": "rock", + "rootMetaDesc": "Moonstone Chest|meta|rot1", + "description": { + "translationKey": "item:moonstoneChestDescription" + }, + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 466, + "name": "Moonstone Chest", + "stackable": true, + "meta": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 325, + 326, + 327 + ] + }, + "467": { + "displayName": { + "translationKey": "item:moonstoneChest" + }, + "ttb": 3000, + "textureInfo": [ + "moonstone_chest_front", + "moonstone_chest_side", + "moonstone_chest_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:moonstoneChestDescription" + }, + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 467, + "name": "Moonstone Chest|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 325, + 326, + 327 + ] + }, + "468": { + "displayName": { + "translationKey": "item:moonstoneChest" + }, + "ttb": 3000, + "textureInfo": [ + "moonstone_chest_front", + "moonstone_chest_side", + "moonstone_chest_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:moonstoneChestDescription" + }, + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 468, + "name": "Moonstone Chest|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 325, + 326, + 327 + ] + }, + "469": { + "displayName": { + "translationKey": "item:moonstoneChest" + }, + "ttb": 3000, + "textureInfo": [ + "moonstone_chest_front", + "moonstone_chest_side", + "moonstone_chest_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:moonstoneChestDescription" + }, + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 469, + "name": "Moonstone Chest|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 325, + 326, + 327 + ] + }, + "470": { + "displayName": { + "translationKey": "item:blockOfMoonstone" + }, + "ttb": 6750, + "textureInfo": "moonstone_block", + "harvestType": "rock", + "id": 470, + "name": "Block of Moonstone", + "stackable": true, + "meta": { + "rootName": "Block of Moonstone", + "rootId": 470, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 328 + }, + "471": { + "displayName": { + "translationKey": "item:magma" + }, + "ttb": 600, + "textureInfo": "magma", + "harvestType": "rock", + "id": 471, + "name": "Magma", + "stackable": true, + "meta": { + "rootName": "Magma", + "rootId": 471, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 329 + }, + "472": { + "displayName": { + "translationKey": "item:uselessSoil" + }, + "ttb": 600, + "textureInfo": "podzol_top", + "harvestType": "granule", + "id": 472, + "name": "Useless Soil", + "stackable": true, + "meta": { + "rootName": "Useless Soil", + "rootId": 472, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 330 + }, + "473": { + "displayName": { + "translationKey": "item:markedSandstone" + }, + "ttb": 960, + "textureInfo": "cut_sandstone", + "harvestType": "rock", + "id": 473, + "name": "Marked Sandstone", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone", + "rootId": 473, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 331 + }, + "474": { + "displayName": { + "translationKey": "item:redSandstone" + }, + "ttb": 960, + "textureInfo": "red_sandstone", + "harvestType": "rock", + "id": 474, + "name": "Red Sandstone", + "stackable": true, + "meta": { + "rootName": "Red Sandstone", + "rootId": 474, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 332 + }, + "475": { + "displayName": { + "translationKey": "item:smoothRedSandstone" + }, + "ttb": 960, + "textureInfo": "red_sandstone_top", + "harvestType": "rock", + "id": 475, + "name": "Smooth Red Sandstone", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone", + "rootId": 475, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "476": { + "displayName": { + "translationKey": "item:engravedRedSandstone" + }, + "ttb": 960, + "textureInfo": "chiseled_red_sandstone", + "harvestType": "rock", + "id": 476, + "name": "Engraved Red Sandstone", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone", + "rootId": 476, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 334 + }, + "477": { + "displayName": { + "translationKey": "item:markedRedSandstone" + }, + "ttb": 960, + "textureInfo": "cut_red_sandstone", + "harvestType": "rock", + "id": 477, + "name": "Marked Red Sandstone", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone", + "rootId": 477, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 335 + }, + "478": { + "displayName": { + "translationKey": "item:greenStone" + }, + "ttb": 1800, + "textureInfo": "green_stone", + "harvestType": "rock", + "id": 478, + "name": "Green Stone", + "stackable": true, + "meta": { + "rootName": "Green Stone", + "rootId": 478, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 336 + }, + "479": { + "displayName": { + "translationKey": "item:greenBricks" + }, + "ttb": 1800, + "textureInfo": "green_bricks", + "harvestType": "rock", + "id": 479, + "name": "Green Bricks", + "stackable": true, + "meta": { + "rootName": "Green Bricks", + "rootId": 479, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 337 + }, + "480": { + "displayName": { + "translationKey": "item:darkGreenBricks" + }, + "ttb": 1800, + "textureInfo": "dark_green_bricks", + "harvestType": "rock", + "id": 480, + "name": "Dark Green Bricks", + "stackable": true, + "meta": { + "rootName": "Dark Green Bricks", + "rootId": 480, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 338 + }, + "481": { + "displayName": { + "translationKey": "item:sandstoneBricks" + }, + "ttb": 960, + "textureInfo": "sandstone_brick", + "harvestType": "rock", + "id": 481, + "name": "Sandstone Bricks", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks", + "rootId": 481, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 339 + }, + "482": { + "displayName": { + "translationKey": "item:engravedDiorite" + }, + "ttb": 1800, + "textureInfo": "engraved_diorite", + "harvestType": "rock", + "id": 482, + "name": "Engraved Diorite", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite", + "rootId": 482, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 340 + }, + "483": { + "displayName": { + "translationKey": "item:dioriteBricks" + }, + "ttb": 1800, + "textureInfo": "diorite_brick", + "harvestType": "rock", + "id": 483, + "name": "Diorite Bricks", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks", + "rootId": 483, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 341 + }, + "484": { + "displayName": { + "translationKey": "item:engravedAndesite" + }, + "ttb": 1800, + "textureInfo": "engraved_andesite", + "harvestType": "rock", + "id": 484, + "name": "Engraved Andesite", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite", + "rootId": 484, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 342 + }, + "485": { + "displayName": { + "translationKey": "item:andesiteBricks" + }, + "ttb": 1800, + "textureInfo": "andesite_brick", + "harvestType": "rock", + "id": 485, + "name": "Andesite Bricks", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks", + "rootId": 485, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 343 + }, + "486": { + "displayName": { + "translationKey": "item:engravedGranite" + }, + "ttb": 1800, + "textureInfo": "engraved_granite", + "harvestType": "rock", + "id": 486, + "name": "Engraved Granite", + "stackable": true, + "meta": { + "rootName": "Engraved Granite", + "rootId": 486, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 344 + }, + "487": { + "displayName": { + "translationKey": "item:graniteBricks" + }, + "ttb": 1800, + "textureInfo": "granite_brick", + "harvestType": "rock", + "id": 487, + "name": "Granite Bricks", + "stackable": true, + "meta": { + "rootName": "Granite Bricks", + "rootId": 487, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 345 + }, + "488": { + "displayName": { + "translationKey": "item:iceBricks" + }, + "ttb": 1800, + "textureInfo": "ice_brick", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 488, + "name": "Ice Bricks", + "stackable": true, + "meta": { + "rootName": "Ice Bricks", + "rootId": 488, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 346 + }, + "489": { + "ttb": 1800, + "textureInfo": "ice_brick", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 489, + "name": "Placeholder Packed Ice", + "stackable": true, + "meta": { + "rootName": "Placeholder Packed Ice", + "rootId": 489, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 346 + }, + "490": { + "ttb": 1800, + "textureInfo": "ice_brick", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 490, + "name": "Placeholder Blue Ice", + "stackable": true, + "meta": { + "rootName": "Placeholder Blue Ice", + "rootId": 490, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 346 + }, + "491": { + "displayName": { + "translationKey": "item:plumLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_plum", + "harvestType": "cuttable", + "id": 491, + "name": "Plum Leaves", + "stackable": true, + "meta": { + "rootName": "Plum Leaves", + "rootId": 491, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 347 + }, + "492": { + "displayName": { + "translationKey": "item:cedarLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_cedar", + "harvestType": "cuttable", + "id": 492, + "name": "Cedar Leaves", + "stackable": true, + "meta": { + "rootName": "Cedar Leaves", + "rootId": 492, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 348 + }, + "493": { + "displayName": { + "translationKey": "item:palmLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_palm", + "harvestType": "cuttable", + "id": 493, + "name": "Palm Leaves", + "stackable": true, + "meta": { + "rootName": "Palm Leaves", + "rootId": 493, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 349 + }, + "494": { + "ttb": 350, + "textureInfo": "leaves_plum", + "harvestType": "cuttable", + "drops": "Plum Leaves", + "id": 494, + "name": "Plum Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Plum Leaves", + "rootId": 491, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 347 + }, + "495": { + "ttb": 350, + "textureInfo": "leaves_cedar", + "harvestType": "cuttable", + "drops": "Cedar Leaves", + "id": 495, + "name": "Cedar Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Cedar Leaves", + "rootId": 492, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 348 + }, + "496": { + "ttb": 350, + "textureInfo": "leaves_palm", + "harvestType": "cuttable", + "drops": "Palm Leaves", + "id": 496, + "name": "Palm Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Palm Leaves", + "rootId": 493, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 349 + }, + "497": { + "ttb": 2400, + "textureInfo": "log_pine", + "harvestType": "wood", + "drops": "Pine Log", + "id": 497, + "name": "Pine Log|TreeBase|Pine", + "stackable": true, + "meta": { + "rootName": "Pine Log", + "rootId": 10, + "metaStr": "TreeBase|Pine", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pine", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 85 + }, + "498": { + "ttb": 2400, + "textureInfo": "log_plum", + "harvestType": "wood", + "drops": "Plum Log", + "id": 498, + "name": "Plum Log|TreeBase|Plum", + "stackable": true, + "meta": { + "rootName": "Plum Log", + "rootId": 11, + "metaStr": "TreeBase|Plum", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Plum", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 86 + }, + "499": { + "ttb": 2400, + "textureInfo": "log_cedar", + "harvestType": "wood", + "drops": "Cedar Log", + "id": 499, + "name": "Cedar Log|TreeBase|Cedar", + "stackable": true, + "meta": { + "rootName": "Cedar Log", + "rootId": 12, + "metaStr": "TreeBase|Cedar", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cedar", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 87 + }, + "500": { + "ttb": 2400, + "textureInfo": "log_aspen", + "harvestType": "wood", + "drops": "Aspen Log", + "id": 500, + "name": "Aspen Log|TreeBase|Aspen", + "stackable": true, + "meta": { + "rootName": "Aspen Log", + "rootId": 13, + "metaStr": "TreeBase|Aspen", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Aspen", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 88 + }, + "501": { + "ttb": 2400, + "textureInfo": "log_jungle", + "harvestType": "wood", + "drops": "Jungle Log", + "id": 501, + "name": "Jungle Log|TreeBase|Jungle", + "stackable": true, + "meta": { + "rootName": "Jungle Log", + "rootId": 14, + "metaStr": "TreeBase|Jungle", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Jungle", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 89 + }, + "502": { + "displayName": { + "translationKey": "item:palmLog" + }, + "ttb": 2400, + "textureInfo": "log_palm", + "harvestType": "wood", + "id": 502, + "name": "Palm Log", + "stackable": true, + "meta": { + "rootName": "Palm Log", + "rootId": 502, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 350 + }, + "503": { + "ttb": 2400, + "textureInfo": "log_palm", + "harvestType": "wood", + "drops": "Palm Log", + "id": 503, + "name": "Palm Log|TreeBase|Palm", + "stackable": true, + "meta": { + "rootName": "Palm Log", + "rootId": 502, + "metaStr": "TreeBase|Palm", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Palm", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 350 + }, + "504": { + "displayName": { + "translationKey": "item:palmWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_palm", + "harvestType": "wood", + "id": 504, + "name": "Palm Wood Planks", + "stackable": true, + "meta": { + "rootName": "Palm Wood Planks", + "rootId": 504, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 351 + }, + "505": { + "displayName": { + "translationKey": "item:palmSapling" + }, + "ttb": 1, + "textureInfo": "palm_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "palm_sapling", + "id": 505, + "name": "Palm Sapling", + "stackable": true, + "meta": { + "rootName": "Palm Sapling", + "rootId": 505, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "506": { + "displayName": { + "translationKey": "item:pineDoor" + }, + "ttb": 3600, + "itemTexture": "pine_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Pine Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Pine Door", + "id": 506, + "name": "Pine Door", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "507": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 507, + "name": "Pine Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "508": { + "ttb": 3600, + "harvestType": "wood", + "id": 508, + "name": "Pine Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "509": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 509, + "name": "Pine Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "510": { + "ttb": 3600, + "harvestType": "wood", + "id": 510, + "name": "Pine Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "511": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 511, + "name": "Pine Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "512": { + "ttb": 3600, + "harvestType": "wood", + "id": 512, + "name": "Pine Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "513": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 513, + "name": "Pine Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "514": { + "ttb": 3600, + "itemTexture": "pine_door", + "harvestType": "wood", + "model": "door", + "drops": "Pine Door", + "rootMetaDesc": "_Pine Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Pine Door Top", + "id": 514, + "name": "_Pine Door Top", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "515": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "TB": false, + "id": 515, + "name": "_Pine Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "516": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "id": 516, + "name": "_Pine Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "517": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "TB": false, + "id": 517, + "name": "_Pine Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "518": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "id": 518, + "name": "_Pine Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "519": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "TB": false, + "id": 519, + "name": "_Pine Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "520": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "id": 520, + "name": "_Pine Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "521": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "TB": false, + "id": 521, + "name": "_Pine Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "522": { + "displayName": { + "translationKey": "item:plumDoor" + }, + "ttb": 3600, + "itemTexture": "plum_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Plum Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Plum Door", + "id": 522, + "name": "Plum Door", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "523": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 523, + "name": "Plum Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "524": { + "ttb": 3600, + "harvestType": "wood", + "id": 524, + "name": "Plum Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "525": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 525, + "name": "Plum Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "526": { + "ttb": 3600, + "harvestType": "wood", + "id": 526, + "name": "Plum Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "527": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 527, + "name": "Plum Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "528": { + "ttb": 3600, + "harvestType": "wood", + "id": 528, + "name": "Plum Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "529": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 529, + "name": "Plum Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "530": { + "ttb": 3600, + "itemTexture": "plum_door", + "harvestType": "wood", + "model": "door", + "drops": "Plum Door", + "rootMetaDesc": "_Plum Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Plum Door Top", + "id": 530, + "name": "_Plum Door Top", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "531": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "TB": false, + "id": 531, + "name": "_Plum Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "532": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "id": 532, + "name": "_Plum Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "533": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "TB": false, + "id": 533, + "name": "_Plum Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "534": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "id": 534, + "name": "_Plum Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "535": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "TB": false, + "id": 535, + "name": "_Plum Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "536": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "id": 536, + "name": "_Plum Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "537": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "TB": false, + "id": 537, + "name": "_Plum Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "538": { + "displayName": { + "translationKey": "item:cedarDoor" + }, + "ttb": 3600, + "itemTexture": "cedar_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Cedar Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Cedar Door", + "id": 538, + "name": "Cedar Door", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "539": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 539, + "name": "Cedar Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "540": { + "ttb": 3600, + "harvestType": "wood", + "id": 540, + "name": "Cedar Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "541": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 541, + "name": "Cedar Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "542": { + "ttb": 3600, + "harvestType": "wood", + "id": 542, + "name": "Cedar Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "543": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 543, + "name": "Cedar Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "544": { + "ttb": 3600, + "harvestType": "wood", + "id": 544, + "name": "Cedar Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "545": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 545, + "name": "Cedar Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "546": { + "ttb": 3600, + "itemTexture": "cedar_door", + "harvestType": "wood", + "model": "door", + "drops": "Cedar Door", + "rootMetaDesc": "_Cedar Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Cedar Door Top", + "id": 546, + "name": "_Cedar Door Top", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "547": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "TB": false, + "id": 547, + "name": "_Cedar Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "548": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "id": 548, + "name": "_Cedar Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "549": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "TB": false, + "id": 549, + "name": "_Cedar Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "550": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "id": 550, + "name": "_Cedar Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "551": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "TB": false, + "id": 551, + "name": "_Cedar Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "552": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "id": 552, + "name": "_Cedar Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "553": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "TB": false, + "id": 553, + "name": "_Cedar Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "554": { + "displayName": { + "translationKey": "item:aspenDoor" + }, + "ttb": 3600, + "itemTexture": "aspen_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Aspen Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Aspen Door", + "id": 554, + "name": "Aspen Door", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "555": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 555, + "name": "Aspen Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "556": { + "ttb": 3600, + "harvestType": "wood", + "id": 556, + "name": "Aspen Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "557": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 557, + "name": "Aspen Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "558": { + "ttb": 3600, + "harvestType": "wood", + "id": 558, + "name": "Aspen Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "559": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 559, + "name": "Aspen Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "560": { + "ttb": 3600, + "harvestType": "wood", + "id": 560, + "name": "Aspen Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "561": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 561, + "name": "Aspen Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "562": { + "ttb": 3600, + "itemTexture": "aspen_door", + "harvestType": "wood", + "model": "door", + "drops": "Aspen Door", + "rootMetaDesc": "_Aspen Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Aspen Door Top", + "id": 562, + "name": "_Aspen Door Top", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "563": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "TB": false, + "id": 563, + "name": "_Aspen Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "564": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "id": 564, + "name": "_Aspen Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "565": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "TB": false, + "id": 565, + "name": "_Aspen Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "566": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "id": 566, + "name": "_Aspen Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "567": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "TB": false, + "id": 567, + "name": "_Aspen Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "568": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "id": 568, + "name": "_Aspen Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "569": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "TB": false, + "id": 569, + "name": "_Aspen Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "570": { + "displayName": { + "translationKey": "item:jungleDoor" + }, + "ttb": 3600, + "itemTexture": "jungle_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Jungle Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Jungle Door", + "id": 570, + "name": "Jungle Door", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "571": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 571, + "name": "Jungle Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "572": { + "ttb": 3600, + "harvestType": "wood", + "id": 572, + "name": "Jungle Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "573": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 573, + "name": "Jungle Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "574": { + "ttb": 3600, + "harvestType": "wood", + "id": 574, + "name": "Jungle Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "575": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 575, + "name": "Jungle Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "576": { + "ttb": 3600, + "harvestType": "wood", + "id": 576, + "name": "Jungle Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "577": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 577, + "name": "Jungle Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "578": { + "ttb": 3600, + "itemTexture": "jungle_door", + "harvestType": "wood", + "model": "door", + "drops": "Jungle Door", + "rootMetaDesc": "_Jungle Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Jungle Door Top", + "id": 578, + "name": "_Jungle Door Top", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "579": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "TB": false, + "id": 579, + "name": "_Jungle Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "580": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "id": 580, + "name": "_Jungle Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "581": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "TB": false, + "id": 581, + "name": "_Jungle Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "582": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "id": 582, + "name": "_Jungle Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "583": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "TB": false, + "id": 583, + "name": "_Jungle Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "584": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "id": 584, + "name": "_Jungle Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "585": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "TB": false, + "id": 585, + "name": "_Jungle Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "586": { + "displayName": { + "translationKey": "item:palmDoor" + }, + "ttb": 3600, + "itemTexture": "palm_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Palm Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Palm Door", + "id": 586, + "name": "Palm Door", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "587": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 587, + "name": "Palm Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "588": { + "ttb": 3600, + "harvestType": "wood", + "id": 588, + "name": "Palm Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "589": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 589, + "name": "Palm Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "590": { + "ttb": 3600, + "harvestType": "wood", + "id": 590, + "name": "Palm Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "591": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 591, + "name": "Palm Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "592": { + "ttb": 3600, + "harvestType": "wood", + "id": 592, + "name": "Palm Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "593": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 593, + "name": "Palm Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "594": { + "ttb": 3600, + "itemTexture": "palm_door", + "harvestType": "wood", + "model": "door", + "drops": "Palm Door", + "rootMetaDesc": "_Palm Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Palm Door Top", + "id": 594, + "name": "_Palm Door Top", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "595": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "TB": false, + "id": 595, + "name": "_Palm Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "596": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "id": 596, + "name": "_Palm Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "597": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "TB": false, + "id": 597, + "name": "_Palm Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "598": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "id": 598, + "name": "_Palm Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "599": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "TB": false, + "id": 599, + "name": "_Palm Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "600": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "id": 600, + "name": "_Palm Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "601": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "TB": false, + "id": 601, + "name": "_Palm Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "602": { + "displayName": { + "translationKey": "item:pineTrapdoor" + }, + "ttb": 2800, + "itemTexture": "pine_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Pine Trapdoor|meta|rot1|closed", + "blockModel": "Pine Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 602, + "name": "Pine Trapdoor", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "603": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 603, + "name": "Pine Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "604": { + "ttb": 2800, + "harvestType": "wood", + "id": 604, + "name": "Pine Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "605": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 605, + "name": "Pine Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "606": { + "ttb": 2800, + "harvestType": "wood", + "id": 606, + "name": "Pine Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "607": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 607, + "name": "Pine Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "608": { + "ttb": 2800, + "harvestType": "wood", + "id": 608, + "name": "Pine Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "609": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 609, + "name": "Pine Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "610": { + "displayName": { + "translationKey": "item:plumTrapdoor" + }, + "ttb": 2800, + "itemTexture": "plum_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Plum Trapdoor|meta|rot1|closed", + "blockModel": "Plum Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 610, + "name": "Plum Trapdoor", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "611": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 611, + "name": "Plum Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "612": { + "ttb": 2800, + "harvestType": "wood", + "id": 612, + "name": "Plum Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "613": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 613, + "name": "Plum Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "614": { + "ttb": 2800, + "harvestType": "wood", + "id": 614, + "name": "Plum Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "615": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 615, + "name": "Plum Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "616": { + "ttb": 2800, + "harvestType": "wood", + "id": 616, + "name": "Plum Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "617": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 617, + "name": "Plum Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "618": { + "displayName": { + "translationKey": "item:cedarTrapdoor" + }, + "ttb": 2800, + "itemTexture": "cedar_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Cedar Trapdoor|meta|rot1|closed", + "blockModel": "Cedar Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 618, + "name": "Cedar Trapdoor", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "619": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 619, + "name": "Cedar Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "620": { + "ttb": 2800, + "harvestType": "wood", + "id": 620, + "name": "Cedar Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "621": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 621, + "name": "Cedar Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "622": { + "ttb": 2800, + "harvestType": "wood", + "id": 622, + "name": "Cedar Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "623": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 623, + "name": "Cedar Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "624": { + "ttb": 2800, + "harvestType": "wood", + "id": 624, + "name": "Cedar Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "625": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 625, + "name": "Cedar Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "626": { + "displayName": { + "translationKey": "item:aspenTrapdoor" + }, + "ttb": 2800, + "itemTexture": "aspen_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Aspen Trapdoor|meta|rot1|closed", + "blockModel": "Aspen Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 626, + "name": "Aspen Trapdoor", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "627": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 627, + "name": "Aspen Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "628": { + "ttb": 2800, + "harvestType": "wood", + "id": 628, + "name": "Aspen Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "629": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 629, + "name": "Aspen Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "630": { + "ttb": 2800, + "harvestType": "wood", + "id": 630, + "name": "Aspen Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "631": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 631, + "name": "Aspen Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "632": { + "ttb": 2800, + "harvestType": "wood", + "id": 632, + "name": "Aspen Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "633": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 633, + "name": "Aspen Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "634": { + "displayName": { + "translationKey": "item:jungleTrapdoor" + }, + "ttb": 2800, + "itemTexture": "jungle_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Jungle Trapdoor|meta|rot1|closed", + "blockModel": "Jungle Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 634, + "name": "Jungle Trapdoor", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "635": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 635, + "name": "Jungle Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "636": { + "ttb": 2800, + "harvestType": "wood", + "id": 636, + "name": "Jungle Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "637": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 637, + "name": "Jungle Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "638": { + "ttb": 2800, + "harvestType": "wood", + "id": 638, + "name": "Jungle Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "639": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 639, + "name": "Jungle Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "640": { + "ttb": 2800, + "harvestType": "wood", + "id": 640, + "name": "Jungle Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "641": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 641, + "name": "Jungle Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "642": { + "displayName": { + "translationKey": "item:palmTrapdoor" + }, + "ttb": 2800, + "itemTexture": "palm_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Palm Trapdoor|meta|rot1|closed", + "blockModel": "Palm Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 642, + "name": "Palm Trapdoor", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "643": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 643, + "name": "Palm Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "644": { + "ttb": 2800, + "harvestType": "wood", + "id": 644, + "name": "Palm Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "645": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 645, + "name": "Palm Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "646": { + "ttb": 2800, + "harvestType": "wood", + "id": 646, + "name": "Palm Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "647": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 647, + "name": "Palm Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "648": { + "ttb": 2800, + "harvestType": "wood", + "id": 648, + "name": "Palm Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "649": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 649, + "name": "Palm Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "650": { + "displayName": { + "translationKey": "item:redSand" + }, + "ttb": 600, + "textureInfo": "red_sand", + "harvestType": "granule", + "soundType": { + "break": "sand", + "place": "sand" + }, + "id": 650, + "name": "Red Sand", + "stackable": true, + "meta": { + "rootName": "Red Sand", + "rootId": 650, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 352 + }, + "651": { + "displayName": { + "translationKey": "item:redSandstoneBricks" + }, + "ttb": 960, + "textureInfo": "red_sandstone_brick", + "harvestType": "rock", + "id": 651, + "name": "Red Sandstone Bricks", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks", + "rootId": 651, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 353 + }, + "652": { + "displayName": { + "translationKey": "item:rockyDirt" + }, + "ttb": 600, + "textureInfo": "rocky_dirt", + "harvestType": "granule", + "id": 652, + "name": "Rocky Dirt", + "stackable": true, + "meta": { + "rootName": "Rocky Dirt", + "rootId": 652, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 354 + }, + "653": { + "displayName": { + "translationKey": "item:autumnMapleLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_maple_autumn", + "harvestType": "cuttable", + "id": 653, + "name": "Autumn Maple Leaves", + "stackable": true, + "meta": { + "rootName": "Autumn Maple Leaves", + "rootId": 653, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 355 + }, + "654": { + "ttb": 350, + "textureInfo": "leaves_maple_autumn", + "harvestType": "cuttable", + "drops": "Autumn Maple Leaves", + "id": 654, + "name": "Autumn Maple Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Autumn Maple Leaves", + "rootId": 653, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 355 + }, + "655": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "rootMetaDesc": "Fallen Maple Leaves|meta|rot1|bot", + "id": 655, + "name": "Fallen Maple Leaves", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "656": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 656, + "name": "Fallen Maple Leaves|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "657": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 657, + "name": "Fallen Maple Leaves|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "658": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 658, + "name": "Fallen Maple Leaves|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "659": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 659, + "name": "Fallen Maple Leaves|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "660": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 660, + "name": "Fallen Maple Leaves|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "661": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Maple Slab|meta|rot1|bot", + "id": 661, + "name": "Maple Slab", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "662": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 662, + "name": "Maple Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "663": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 663, + "name": "Maple Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "664": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 664, + "name": "Maple Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "665": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 665, + "name": "Maple Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "666": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 666, + "name": "Maple Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "667": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Pine Slab|meta|rot1|bot", + "id": 667, + "name": "Pine Slab", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "668": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 668, + "name": "Pine Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "669": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 669, + "name": "Pine Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "670": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 670, + "name": "Pine Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "671": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 671, + "name": "Pine Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "672": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 672, + "name": "Pine Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "673": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Plum Slab|meta|rot1|bot", + "id": 673, + "name": "Plum Slab", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "674": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 674, + "name": "Plum Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "675": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 675, + "name": "Plum Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "676": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 676, + "name": "Plum Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "677": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 677, + "name": "Plum Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "678": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 678, + "name": "Plum Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "679": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Cedar Slab|meta|rot1|bot", + "id": 679, + "name": "Cedar Slab", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "680": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 680, + "name": "Cedar Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "681": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 681, + "name": "Cedar Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "682": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 682, + "name": "Cedar Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "683": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 683, + "name": "Cedar Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "684": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 684, + "name": "Cedar Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "685": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Aspen Slab|meta|rot1|bot", + "id": 685, + "name": "Aspen Slab", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "686": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 686, + "name": "Aspen Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "687": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 687, + "name": "Aspen Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "688": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 688, + "name": "Aspen Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "689": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 689, + "name": "Aspen Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "690": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 690, + "name": "Aspen Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "691": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Jungle Slab|meta|rot1|bot", + "id": 691, + "name": "Jungle Slab", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "692": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 692, + "name": "Jungle Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "693": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 693, + "name": "Jungle Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "694": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 694, + "name": "Jungle Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "695": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 695, + "name": "Jungle Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "696": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 696, + "name": "Jungle Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "697": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Palm Slab|meta|rot1|bot", + "id": 697, + "name": "Palm Slab", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "698": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 698, + "name": "Palm Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "699": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 699, + "name": "Palm Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "700": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 700, + "name": "Palm Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "701": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 701, + "name": "Palm Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "702": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 702, + "name": "Palm Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "703": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "rootMetaDesc": "Dirt Slab|meta|rot1|bot", + "id": 703, + "name": "Dirt Slab", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "704": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 704, + "name": "Dirt Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "705": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 705, + "name": "Dirt Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "706": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 706, + "name": "Dirt Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "707": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 707, + "name": "Dirt Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "708": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 708, + "name": "Dirt Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "709": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "rootMetaDesc": "Grass Slab|meta|rot1|bot", + "id": 709, + "name": "Grass Slab", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "710": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 710, + "name": "Grass Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "711": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 711, + "name": "Grass Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "712": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 712, + "name": "Grass Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "713": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 713, + "name": "Grass Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "714": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 714, + "name": "Grass Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "715": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Messy Stone Slab|meta|rot1|bot", + "id": 715, + "name": "Messy Stone Slab", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "716": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 716, + "name": "Messy Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "717": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 717, + "name": "Messy Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "718": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 718, + "name": "Messy Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "719": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 719, + "name": "Messy Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "720": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 720, + "name": "Messy Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "721": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Stone Slab|meta|rot1|bot", + "id": 721, + "name": "Stone Slab", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "722": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 722, + "name": "Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "723": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 723, + "name": "Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "724": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 724, + "name": "Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "725": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 725, + "name": "Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "726": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 726, + "name": "Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "727": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Stone Slab|meta|rot1|bot", + "id": 727, + "name": "Smooth Stone Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "728": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 728, + "name": "Smooth Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "729": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 729, + "name": "Smooth Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "730": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 730, + "name": "Smooth Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "731": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 731, + "name": "Smooth Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "732": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 732, + "name": "Smooth Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "733": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Stone Slab|meta|rot1|bot", + "id": 733, + "name": "Engraved Stone Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "734": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 734, + "name": "Engraved Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "735": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 735, + "name": "Engraved Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "736": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 736, + "name": "Engraved Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "737": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 737, + "name": "Engraved Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "738": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 738, + "name": "Engraved Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "739": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Stone Bricks Slab|meta|rot1|bot", + "id": 739, + "name": "Stone Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "740": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 740, + "name": "Stone Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "741": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 741, + "name": "Stone Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "742": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 742, + "name": "Stone Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "743": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 743, + "name": "Stone Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "744": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 744, + "name": "Stone Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "745": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Mossy Stone Slab|meta|rot1|bot", + "id": 745, + "name": "Mossy Stone Slab", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "746": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 746, + "name": "Mossy Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "747": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 747, + "name": "Mossy Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "748": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 748, + "name": "Mossy Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "749": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 749, + "name": "Mossy Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "750": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 750, + "name": "Mossy Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "751": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Mossy Stone Bricks Slab|meta|rot1|bot", + "id": 751, + "name": "Mossy Stone Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "752": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 752, + "name": "Mossy Stone Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "753": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 753, + "name": "Mossy Stone Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "754": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 754, + "name": "Mossy Stone Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "755": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 755, + "name": "Mossy Stone Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "756": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 756, + "name": "Mossy Stone Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "757": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Andesite Slab|meta|rot1|bot", + "id": 757, + "name": "Andesite Slab", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "758": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 758, + "name": "Andesite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "759": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 759, + "name": "Andesite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "760": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 760, + "name": "Andesite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "761": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 761, + "name": "Andesite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "762": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 762, + "name": "Andesite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "763": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Andesite Slab|meta|rot1|bot", + "id": 763, + "name": "Smooth Andesite Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "764": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 764, + "name": "Smooth Andesite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "765": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 765, + "name": "Smooth Andesite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "766": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 766, + "name": "Smooth Andesite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "767": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 767, + "name": "Smooth Andesite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "768": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 768, + "name": "Smooth Andesite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "769": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Andesite Slab|meta|rot1|bot", + "id": 769, + "name": "Engraved Andesite Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "770": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 770, + "name": "Engraved Andesite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "771": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 771, + "name": "Engraved Andesite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "772": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 772, + "name": "Engraved Andesite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "773": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 773, + "name": "Engraved Andesite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "774": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 774, + "name": "Engraved Andesite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "775": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Andesite Bricks Slab|meta|rot1|bot", + "id": 775, + "name": "Andesite Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "776": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 776, + "name": "Andesite Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "777": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 777, + "name": "Andesite Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "778": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 778, + "name": "Andesite Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "779": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 779, + "name": "Andesite Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "780": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 780, + "name": "Andesite Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "781": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Diorite Slab|meta|rot1|bot", + "id": 781, + "name": "Diorite Slab", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "782": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 782, + "name": "Diorite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "783": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 783, + "name": "Diorite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "784": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 784, + "name": "Diorite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "785": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 785, + "name": "Diorite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "786": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 786, + "name": "Diorite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "787": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Diorite Slab|meta|rot1|bot", + "id": 787, + "name": "Smooth Diorite Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "788": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 788, + "name": "Smooth Diorite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "789": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 789, + "name": "Smooth Diorite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "790": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 790, + "name": "Smooth Diorite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "791": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 791, + "name": "Smooth Diorite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "792": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 792, + "name": "Smooth Diorite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "793": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Diorite Slab|meta|rot1|bot", + "id": 793, + "name": "Engraved Diorite Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "794": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 794, + "name": "Engraved Diorite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "795": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 795, + "name": "Engraved Diorite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "796": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 796, + "name": "Engraved Diorite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "797": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 797, + "name": "Engraved Diorite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "798": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 798, + "name": "Engraved Diorite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "799": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Diorite Bricks Slab|meta|rot1|bot", + "id": 799, + "name": "Diorite Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "800": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 800, + "name": "Diorite Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "801": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 801, + "name": "Diorite Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "802": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 802, + "name": "Diorite Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "803": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 803, + "name": "Diorite Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "804": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 804, + "name": "Diorite Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "805": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Granite Slab|meta|rot1|bot", + "id": 805, + "name": "Granite Slab", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "806": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 806, + "name": "Granite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "807": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 807, + "name": "Granite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "808": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 808, + "name": "Granite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "809": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 809, + "name": "Granite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "810": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 810, + "name": "Granite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "811": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Granite Slab|meta|rot1|bot", + "id": 811, + "name": "Smooth Granite Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "812": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 812, + "name": "Smooth Granite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "813": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 813, + "name": "Smooth Granite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "814": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 814, + "name": "Smooth Granite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "815": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 815, + "name": "Smooth Granite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "816": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 816, + "name": "Smooth Granite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "817": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Granite Slab|meta|rot1|bot", + "id": 817, + "name": "Engraved Granite Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "818": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 818, + "name": "Engraved Granite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "819": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 819, + "name": "Engraved Granite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "820": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 820, + "name": "Engraved Granite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "821": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 821, + "name": "Engraved Granite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "822": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 822, + "name": "Engraved Granite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "823": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Granite Bricks Slab|meta|rot1|bot", + "id": 823, + "name": "Granite Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "824": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 824, + "name": "Granite Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "825": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 825, + "name": "Granite Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "826": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 826, + "name": "Granite Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "827": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 827, + "name": "Granite Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "828": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 828, + "name": "Granite Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "829": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Sandstone Slab|meta|rot1|bot", + "id": 829, + "name": "Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "830": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 830, + "name": "Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "831": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 831, + "name": "Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "832": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 832, + "name": "Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "833": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 833, + "name": "Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "834": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 834, + "name": "Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "835": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Sandstone Slab|meta|rot1|bot", + "id": 835, + "name": "Smooth Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "836": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 836, + "name": "Smooth Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "837": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 837, + "name": "Smooth Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "838": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 838, + "name": "Smooth Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "839": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 839, + "name": "Smooth Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "840": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 840, + "name": "Smooth Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "841": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Sandstone Slab|meta|rot1|bot", + "id": 841, + "name": "Engraved Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "842": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 842, + "name": "Engraved Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "843": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 843, + "name": "Engraved Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "844": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 844, + "name": "Engraved Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "845": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 845, + "name": "Engraved Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "846": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 846, + "name": "Engraved Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "847": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Marked Sandstone Slab|meta|rot1|bot", + "id": 847, + "name": "Marked Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "848": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 848, + "name": "Marked Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "849": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 849, + "name": "Marked Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "850": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 850, + "name": "Marked Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "851": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 851, + "name": "Marked Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "852": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 852, + "name": "Marked Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "853": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Sandstone Bricks Slab|meta|rot1|bot", + "id": 853, + "name": "Sandstone Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "854": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 854, + "name": "Sandstone Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "855": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 855, + "name": "Sandstone Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "856": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 856, + "name": "Sandstone Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "857": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 857, + "name": "Sandstone Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "858": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 858, + "name": "Sandstone Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "859": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Red Sandstone Slab|meta|rot1|bot", + "id": 859, + "name": "Red Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "860": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 860, + "name": "Red Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "861": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 861, + "name": "Red Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "862": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 862, + "name": "Red Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "863": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 863, + "name": "Red Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "864": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 864, + "name": "Red Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "865": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Red Sandstone Slab|meta|rot1|bot", + "id": 865, + "name": "Smooth Red Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "866": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 866, + "name": "Smooth Red Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "867": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 867, + "name": "Smooth Red Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "868": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 868, + "name": "Smooth Red Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "869": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 869, + "name": "Smooth Red Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "870": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 870, + "name": "Smooth Red Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "871": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Red Sandstone Slab|meta|rot1|bot", + "id": 871, + "name": "Engraved Red Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "872": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 872, + "name": "Engraved Red Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "873": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 873, + "name": "Engraved Red Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "874": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 874, + "name": "Engraved Red Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "875": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 875, + "name": "Engraved Red Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "876": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 876, + "name": "Engraved Red Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "877": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Marked Red Sandstone Slab|meta|rot1|bot", + "id": 877, + "name": "Marked Red Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "878": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 878, + "name": "Marked Red Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "879": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 879, + "name": "Marked Red Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "880": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 880, + "name": "Marked Red Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "881": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 881, + "name": "Marked Red Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "882": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 882, + "name": "Marked Red Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "883": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Red Sandstone Bricks Slab|meta|rot1|bot", + "id": 883, + "name": "Red Sandstone Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "884": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 884, + "name": "Red Sandstone Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "885": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 885, + "name": "Red Sandstone Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "886": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 886, + "name": "Red Sandstone Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "887": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 887, + "name": "Red Sandstone Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "888": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 888, + "name": "Red Sandstone Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "889": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Bricks Slab|meta|rot1|bot", + "id": 889, + "name": "Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "890": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 890, + "name": "Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "891": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 891, + "name": "Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "892": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 892, + "name": "Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "893": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 893, + "name": "Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "894": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 894, + "name": "Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "895": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Ice Bricks Slab|meta|rot1|bot", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 895, + "name": "Ice Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "896": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 896, + "name": "Ice Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "897": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 897, + "name": "Ice Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "898": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 898, + "name": "Ice Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "899": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 899, + "name": "Ice Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "900": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 900, + "name": "Ice Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "901": { + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "rootMetaDesc": "Vines|meta|rot1|Growing", + "blockModel": "Vines", + "modelScale": 10, + "heldItemScale": 10, + "blockModelItem": true, + "id": 901, + "name": "Vines|meta|rot1|Growing", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot1|Growing", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "902": { + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "modelScale": 10, + "heldItemScale": 10, + "id": 902, + "name": "Vines|meta|rot2|Growing", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot2|Growing", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "903": { + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "modelScale": 10, + "heldItemScale": 10, + "id": 903, + "name": "Vines|meta|rot3|Growing", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot3|Growing", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "904": { + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "modelScale": 10, + "heldItemScale": 10, + "id": 904, + "name": "Vines|meta|rot4|Growing", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot4|Growing", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "905": { + "ttb": 300, + "textureInfo": "small_cactus", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "small_cactus", + "id": 905, + "name": "Cactus|Growing", + "stackable": true, + "meta": { + "rootName": "Cactus", + "rootId": 149, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "906": { + "ttb": 400, + "textureInfo": "cactus_top", + "harvestType": "cuttable", + "damage": 22, + "id": 906, + "name": "Fat Cactus|Growing", + "stackable": true, + "meta": { + "rootName": "Fat Cactus", + "rootId": 213, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 231 + }, + "907": { + "displayName": { + "translationKey": "item:plumBlock" + }, + "ttb": 600, + "textureInfo": [ + "plum_block_side", + "plum_block_top", + "plum_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 907, + "name": "Plum Block", + "stackable": true, + "meta": { + "rootName": "Plum Block", + "rootId": 907, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 395, + 396, + 397 + ] + }, + "908": { + "displayName": { + "translationKey": "item:coconutBlock" + }, + "ttb": 600, + "textureInfo": [ + "coconut_block_side", + "coconut_block_top", + "coconut_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 908, + "name": "Coconut Block", + "stackable": true, + "meta": { + "rootName": "Coconut Block", + "rootId": 908, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 398, + 399, + 400 + ] + }, + "909": { + "displayName": { + "translationKey": "item:pearLog" + }, + "ttb": 2400, + "textureInfo": "log_pear", + "harvestType": "wood", + "id": 909, + "name": "Pear Log", + "stackable": true, + "meta": { + "rootName": "Pear Log", + "rootId": 909, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 401 + }, + "910": { + "displayName": { + "translationKey": "item:pearWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_pear", + "harvestType": "wood", + "id": 910, + "name": "Pear Wood Planks", + "stackable": true, + "meta": { + "rootName": "Pear Wood Planks", + "rootId": 910, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 402 + }, + "911": { + "displayName": { + "translationKey": "item:pearLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_pear", + "harvestType": "cuttable", + "id": 911, + "name": "Pear Leaves", + "stackable": true, + "meta": { + "rootName": "Pear Leaves", + "rootId": 911, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 403 + }, + "912": { + "displayName": { + "translationKey": "item:pearDoor" + }, + "ttb": 3600, + "itemTexture": "pear_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Pear Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Pear Door", + "id": 912, + "name": "Pear Door", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "913": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 913, + "name": "Pear Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "914": { + "ttb": 3600, + "harvestType": "wood", + "id": 914, + "name": "Pear Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "915": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 915, + "name": "Pear Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "916": { + "ttb": 3600, + "harvestType": "wood", + "id": 916, + "name": "Pear Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "917": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 917, + "name": "Pear Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "918": { + "ttb": 3600, + "harvestType": "wood", + "id": 918, + "name": "Pear Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "919": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 919, + "name": "Pear Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "920": { + "ttb": 3600, + "itemTexture": "pear_door", + "harvestType": "wood", + "model": "door", + "drops": "Pear Door", + "rootMetaDesc": "_Pear Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Pear Door Top", + "id": 920, + "name": "_Pear Door Top", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "921": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "TB": false, + "id": 921, + "name": "_Pear Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "922": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "id": 922, + "name": "_Pear Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "923": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "TB": false, + "id": 923, + "name": "_Pear Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "924": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "id": 924, + "name": "_Pear Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "925": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "TB": false, + "id": 925, + "name": "_Pear Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "926": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "id": 926, + "name": "_Pear Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "927": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "TB": false, + "id": 927, + "name": "_Pear Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "928": { + "displayName": { + "translationKey": "item:pearTrapdoor" + }, + "ttb": 2800, + "itemTexture": "pear_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Pear Trapdoor|meta|rot1|closed", + "blockModel": "Pear Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 928, + "name": "Pear Trapdoor", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "929": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 929, + "name": "Pear Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "930": { + "ttb": 2800, + "harvestType": "wood", + "id": 930, + "name": "Pear Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "931": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 931, + "name": "Pear Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "932": { + "ttb": 2800, + "harvestType": "wood", + "id": 932, + "name": "Pear Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "933": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 933, + "name": "Pear Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "934": { + "ttb": 2800, + "harvestType": "wood", + "id": 934, + "name": "Pear Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "935": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 935, + "name": "Pear Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "936": { + "displayName": { + "translationKey": "item:pearSapling" + }, + "ttb": 1, + "textureInfo": "pear_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "pear_sapling", + "id": 936, + "name": "Pear Sapling", + "stackable": true, + "meta": { + "rootName": "Pear Sapling", + "rootId": 936, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "937": { + "ttb": 2400, + "textureInfo": "log_pear", + "harvestType": "wood", + "drops": "Pear Log", + "id": 937, + "name": "Pear Log|TreeBase|Pear", + "stackable": true, + "meta": { + "rootName": "Pear Log", + "rootId": 909, + "metaStr": "TreeBase|Pear", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pear", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 401 + }, + "938": { + "ttb": 350, + "textureInfo": "leaves_pear", + "harvestType": "cuttable", + "drops": "Pear Leaves", + "id": 938, + "name": "Pear Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Pear Leaves", + "rootId": 911, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 403 + }, + "939": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Pear Slab|meta|rot1|bot", + "id": 939, + "name": "Pear Slab", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "940": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 940, + "name": "Pear Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "941": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 941, + "name": "Pear Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "942": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 942, + "name": "Pear Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "943": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 943, + "name": "Pear Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "944": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 944, + "name": "Pear Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "945": { + "displayName": { + "translationKey": "item:pearBlock" + }, + "ttb": 600, + "textureInfo": [ + "pear_block_side", + "pear_block_top", + "pear_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 945, + "name": "Pear Block", + "stackable": true, + "meta": { + "rootName": "Pear Block", + "rootId": 945, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 405, + 406, + 407 + ] + }, + "946": { + "displayName": { + "translationKey": "item:compressedMessyStone" + }, + "ttb": 12000, + "textureInfo": "compressed_messy_stone", + "harvestType": "rock", + "id": 946, + "name": "Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Compressed Messy Stone", + "rootId": 946, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 408 + }, + "947": { + "displayName": { + "translationKey": "item:extraCompressedMessyStone" + }, + "ttb": 24000, + "textureInfo": "extra_compressed_messy_stone", + "harvestType": "rock", + "id": 947, + "name": "Extra Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Extra Compressed Messy Stone", + "rootId": 947, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 409 + }, + "948": { + "displayName": { + "translationKey": "item:superCompressedMessyStone" + }, + "ttb": 36000, + "textureInfo": "super_compressed_messy_stone", + "harvestType": "rock", + "id": 948, + "name": "Super Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Super Compressed Messy Stone", + "rootId": 948, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 410 + }, + "949": { + "displayName": { + "translationKey": "item:hyperCompressedMessyStone" + }, + "ttb": 48000, + "textureInfo": "hyper_compressed_messy_stone", + "harvestType": "rock", + "id": 949, + "name": "Hyper Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Hyper Compressed Messy Stone", + "rootId": 949, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 411 + }, + "950": { + "displayName": { + "translationKey": "item:ultraCompressedMessyStone" + }, + "ttb": 60000, + "textureInfo": "ultra_compressed_messy_stone", + "harvestType": "rock", + "id": 950, + "name": "Ultra Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Ultra Compressed Messy Stone", + "rootId": 950, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 412 + }, + "951": { + "displayName": { + "translationKey": "item:megaCompressedMessyStone" + }, + "ttb": 72000, + "textureInfo": "mega_compressed_messy_stone", + "harvestType": "rock", + "id": 951, + "name": "Mega Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Mega Compressed Messy Stone", + "rootId": 951, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 413 + }, + "952": { + "displayName": { + "translationKey": "item:board" + }, + "ttb": 1200, + "itemTexture": "board", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "rootMetaDesc": "Board|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 0.8, + "blockModel": "Board", + "id": 952, + "name": "Board", + "stackable": true, + "meta": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "953": { + "displayName": { + "translationKey": "item:board" + }, + "ttb": 1200, + "itemTexture": "board", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "particlesIgnoreBlack": true, + "modelScale": 0.8, + "blockModel": "Board", + "id": 953, + "name": "Board|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "954": { + "displayName": { + "translationKey": "item:board" + }, + "ttb": 1200, + "itemTexture": "board", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "particlesIgnoreBlack": true, + "modelScale": 0.8, + "blockModel": "Board", + "id": 954, + "name": "Board|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "955": { + "displayName": { + "translationKey": "item:board" + }, + "ttb": 1200, + "itemTexture": "board", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "particlesIgnoreBlack": true, + "modelScale": 0.8, + "blockModel": "Board", + "id": 955, + "name": "Board|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "956": { + "displayName": { + "translationKey": "item:net" + }, + "ttb": 400, + "textureInfo": "net", + "model": "CentreCross", + "heldItemScale": 1, + "TB": false, + "harvestType": "wood", + "description": { + "translationKey": "item:netDescription" + }, + "itemTexture": "net", + "id": 956, + "name": "Net", + "stackable": true, + "meta": { + "rootName": "Net", + "rootId": 956, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "957": { + "displayName": { + "translationKey": "item:cobweb" + }, + "ttb": 300, + "textureInfo": "cobweb", + "model": "CentreCross", + "heldItemScale": 1, + "TB": false, + "harvestType": "cuttable", + "description": { + "translationKey": "item:cobwebDescription" + }, + "itemTexture": "cobweb", + "id": 957, + "name": "Cobweb", + "stackable": true, + "meta": { + "rootName": "Cobweb", + "rootId": 957, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "958": { + "displayName": { + "translationKey": "item:brownMushroomBlock" + }, + "ttb": 1200, + "textureInfo": "brown_mushroom_block", + "harvestType": "cuttable", + "id": 958, + "name": "Brown Mushroom Block", + "stackable": true, + "meta": { + "rootName": "Brown Mushroom Block", + "rootId": 958, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 414 + }, + "959": { + "displayName": { + "translationKey": "item:redMushroomBlock" + }, + "ttb": 1200, + "textureInfo": "red_mushroom_block", + "harvestType": "cuttable", + "id": 959, + "name": "Red Mushroom Block", + "stackable": true, + "meta": { + "rootName": "Red Mushroom Block", + "rootId": 959, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 415 + }, + "960": { + "displayName": { + "translationKey": "item:mushroomStem" + }, + "ttb": 1200, + "textureInfo": "mushroom_stem", + "harvestType": "cuttable", + "id": 960, + "name": "Mushroom Stem", + "stackable": true, + "meta": { + "rootName": "Mushroom Stem", + "rootId": 960, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 416 + }, + "961": { + "displayName": { + "translationKey": "item:fireballBlock" + }, + "ttb": 1, + "textureInfo": "fireball_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 961, + "name": "Fireball Block", + "stackable": true, + "meta": { + "rootName": "Fireball Block", + "rootId": 961, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 417 + }, + "962": { + "displayName": { + "translationKey": "item:iceballBlock" + }, + "ttb": 1, + "textureInfo": "iceball_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 962, + "name": "Iceball Block", + "stackable": true, + "meta": { + "rootName": "Iceball Block", + "rootId": 962, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 418 + }, + "963": { + "displayName": { + "translationKey": "item:watermelonSeeds" + }, + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "watermelon_seeds", + "description": { + "translationKey": "item:watermelonSeedsDescription" + }, + "id": 963, + "name": "Watermelon Seeds", + "stackable": true, + "meta": { + "rootName": "Watermelon Seeds", + "rootId": 963, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "964": { + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Watermelon Seeds", + "id": 964, + "name": "Watermelon Seeds|Growing", + "stackable": true, + "meta": { + "rootName": "Watermelon Seeds", + "rootId": 963, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "965": { + "displayName": { + "translationKey": "item:attachedWatermelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Watermelon Seeds", + "rootMetaDesc": "Attached Watermelon Stem|meta|rot1", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 965, + "name": "Attached Watermelon Stem", + "stackable": true, + "meta": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "966": { + "displayName": { + "translationKey": "item:attachedWatermelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Watermelon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 966, + "name": "Attached Watermelon Stem|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "967": { + "displayName": { + "translationKey": "item:attachedWatermelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Watermelon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 967, + "name": "Attached Watermelon Stem|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "968": { + "displayName": { + "translationKey": "item:attachedWatermelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Watermelon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 968, + "name": "Attached Watermelon Stem|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "969": { + "displayName": { + "translationKey": "item:pumpkinSeeds" + }, + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "pumpkin_seeds", + "description": { + "translationKey": "item:pumpkinSeedsDescription" + }, + "id": 969, + "name": "Pumpkin Seeds", + "stackable": true, + "meta": { + "rootName": "Pumpkin Seeds", + "rootId": 969, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "970": { + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Pumpkin Seeds", + "id": 970, + "name": "Pumpkin Seeds|Growing", + "stackable": true, + "meta": { + "rootName": "Pumpkin Seeds", + "rootId": 969, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "971": { + "displayName": { + "translationKey": "item:attachedPumpkinStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Pumpkin Seeds", + "rootMetaDesc": "Attached Pumpkin Stem|meta|rot1", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 971, + "name": "Attached Pumpkin Stem", + "stackable": true, + "meta": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "972": { + "displayName": { + "translationKey": "item:attachedPumpkinStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Pumpkin Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 972, + "name": "Attached Pumpkin Stem|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "973": { + "displayName": { + "translationKey": "item:attachedPumpkinStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Pumpkin Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 973, + "name": "Attached Pumpkin Stem|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "974": { + "displayName": { + "translationKey": "item:attachedPumpkinStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Pumpkin Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 974, + "name": "Attached Pumpkin Stem|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "975": { + "displayName": { + "translationKey": "item:pumpkin" + }, + "ttb": 1200, + "textureInfo": [ + "pumpkin_side", + "pumpkin_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "id": 975, + "name": "Pumpkin", + "stackable": true, + "meta": { + "rootName": "Pumpkin", + "rootId": 975, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 419, + 420 + ] + }, + "976": { + "displayName": { + "translationKey": "item:carvedPumpkin" + }, + "ttb": 1200, + "textureInfo": [ + "carved_pumpkin", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "rootMetaDesc": "Carved Pumpkin|meta|rot1", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 976, + "name": "Carved Pumpkin", + "stackable": true, + "meta": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 421, + 419, + 420 + ] + }, + "977": { + "displayName": { + "translationKey": "item:carvedPumpkin" + }, + "ttb": 1200, + "textureInfo": [ + "carved_pumpkin", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 977, + "name": "Carved Pumpkin|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 421, + 419, + 420 + ] + }, + "978": { + "displayName": { + "translationKey": "item:carvedPumpkin" + }, + "ttb": 1200, + "textureInfo": [ + "carved_pumpkin", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 978, + "name": "Carved Pumpkin|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 421, + 419, + 420 + ] + }, + "979": { + "displayName": { + "translationKey": "item:carvedPumpkin" + }, + "ttb": 1200, + "textureInfo": [ + "carved_pumpkin", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 979, + "name": "Carved Pumpkin|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 421, + 419, + 420 + ] + }, + "980": { + "displayName": { + "translationKey": "item:jackO'Lantern" + }, + "ttb": 1200, + "textureInfo": [ + "pumpkin_face_on", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "rootMetaDesc": "Jack o'Lantern|meta|rot1", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 980, + "name": "Jack o'Lantern", + "stackable": true, + "meta": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 177, + 419, + 420 + ] + }, + "981": { + "displayName": { + "translationKey": "item:jackO'Lantern" + }, + "ttb": 1200, + "textureInfo": [ + "pumpkin_face_on", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 981, + "name": "Jack o'Lantern|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 177, + 419, + 420 + ] + }, + "982": { + "displayName": { + "translationKey": "item:jackO'Lantern" + }, + "ttb": 1200, + "textureInfo": [ + "pumpkin_face_on", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 982, + "name": "Jack o'Lantern|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 177, + 419, + 420 + ] + }, + "983": { + "displayName": { + "translationKey": "item:jackO'Lantern" + }, + "ttb": 1200, + "textureInfo": [ + "pumpkin_face_on", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 983, + "name": "Jack o'Lantern|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 177, + 419, + 420 + ] + }, + "984": { + "displayName": { + "translationKey": "item:melonSeeds" + }, + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "melon_seeds", + "description": { + "translationKey": "item:melonSeedsDescription" + }, + "id": 984, + "name": "Melon Seeds", + "stackable": true, + "meta": { + "rootName": "Melon Seeds", + "rootId": 984, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "985": { + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Melon Seeds", + "id": 985, + "name": "Melon Seeds|Growing", + "stackable": true, + "meta": { + "rootName": "Melon Seeds", + "rootId": 984, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "986": { + "displayName": { + "translationKey": "item:attachedMelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Melon Seeds", + "rootMetaDesc": "Attached Melon Stem|meta|rot1", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 986, + "name": "Attached Melon Stem", + "stackable": true, + "meta": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "987": { + "displayName": { + "translationKey": "item:attachedMelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Melon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 987, + "name": "Attached Melon Stem|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "988": { + "displayName": { + "translationKey": "item:attachedMelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Melon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 988, + "name": "Attached Melon Stem|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "989": { + "displayName": { + "translationKey": "item:attachedMelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Melon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 989, + "name": "Attached Melon Stem|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "990": { + "displayName": { + "translationKey": "item:melon" + }, + "ttb": 1200, + "textureInfo": [ + "melon_side", + "melon_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "id": 990, + "name": "Melon", + "stackable": true, + "meta": { + "rootName": "Melon", + "rootId": 990, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 422, + 423 + ] + }, + "991": { + "displayName": { + "translationKey": "item:ironWatermelon" + }, + "ttb": 1200, + "textureInfo": [ + "iron_watermelon_side", + "iron_watermelon_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "rock", + "id": 991, + "name": "Iron Watermelon", + "stackable": true, + "meta": { + "rootName": "Iron Watermelon", + "rootId": 991, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 424, + 425 + ] + }, + "992": { + "displayName": { + "translationKey": "item:patternedBlackGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_black", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 992, + "name": "Patterned Black Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Black Glass", + "rootId": 992, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 426 + }, + "993": { + "displayName": { + "translationKey": "item:patternedBlueGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_blue", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 993, + "name": "Patterned Blue Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Blue Glass", + "rootId": 993, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 427 + }, + "994": { + "displayName": { + "translationKey": "item:patternedBrownGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_brown", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 994, + "name": "Patterned Brown Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Brown Glass", + "rootId": 994, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 428 + }, + "995": { + "displayName": { + "translationKey": "item:patternedCyanGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_cyan", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 995, + "name": "Patterned Cyan Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Cyan Glass", + "rootId": 995, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 429 + }, + "996": { + "displayName": { + "translationKey": "item:patternedGrayGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_gray", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 996, + "name": "Patterned Gray Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Gray Glass", + "rootId": 996, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 430 + }, + "997": { + "displayName": { + "translationKey": "item:patternedLightGrayGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_light_gray", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 997, + "name": "Patterned Light Gray Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Light Gray Glass", + "rootId": 997, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 431 + }, + "998": { + "displayName": { + "translationKey": "item:patternedGreenGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_green", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 998, + "name": "Patterned Green Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Green Glass", + "rootId": 998, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 432 + }, + "999": { + "displayName": { + "translationKey": "item:patternedLightBlueGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_light_blue", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 999, + "name": "Patterned Light Blue Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Light Blue Glass", + "rootId": 999, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 433 + }, + "1000": { + "displayName": { + "translationKey": "item:patternedLimeGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_lime", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1000, + "name": "Patterned Lime Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Lime Glass", + "rootId": 1000, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 434 + }, + "1001": { + "displayName": { + "translationKey": "item:patternedMagentaGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_magenta", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1001, + "name": "Patterned Magenta Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Magenta Glass", + "rootId": 1001, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 435 + }, + "1002": { + "displayName": { + "translationKey": "item:patternedOrangeGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_orange", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1002, + "name": "Patterned Orange Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Orange Glass", + "rootId": 1002, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 436 + }, + "1003": { + "displayName": { + "translationKey": "item:patternedPinkGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_pink", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1003, + "name": "Patterned Pink Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Pink Glass", + "rootId": 1003, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 437 + }, + "1004": { + "displayName": { + "translationKey": "item:patternedPurpleGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_purple", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1004, + "name": "Patterned Purple Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Purple Glass", + "rootId": 1004, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 438 + }, + "1005": { + "displayName": { + "translationKey": "item:patternedRedGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_red", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1005, + "name": "Patterned Red Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Red Glass", + "rootId": 1005, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 439 + }, + "1006": { + "displayName": { + "translationKey": "item:patternedWhiteGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_white", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1006, + "name": "Patterned White Glass", + "stackable": true, + "meta": { + "rootName": "Patterned White Glass", + "rootId": 1006, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 440 + }, + "1007": { + "displayName": { + "translationKey": "item:patternedYellowGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_yellow", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1007, + "name": "Patterned Yellow Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Yellow Glass", + "rootId": 1007, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 441 + }, + "1008": { + "displayName": { + "translationKey": "item:potionTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "potion_table", + "TB": false, + "rootMetaDesc": "Potion Table|meta|rot1", + "modelScale": 10, + "blockModel": "Potion Table", + "description": { + "translationKey": "item:potionTableDescription" + }, + "id": 1008, + "name": "Potion Table", + "stackable": true, + "meta": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1009": { + "displayName": { + "translationKey": "item:potionTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "potion_table", + "TB": false, + "modelScale": 10, + "blockModel": "Potion Table", + "description": { + "translationKey": "item:potionTableDescription" + }, + "id": 1009, + "name": "Potion Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1010": { + "displayName": { + "translationKey": "item:potionTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "potion_table", + "TB": false, + "modelScale": 10, + "blockModel": "Potion Table", + "description": { + "translationKey": "item:potionTableDescription" + }, + "id": 1010, + "name": "Potion Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1011": { + "displayName": { + "translationKey": "item:potionTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "potion_table", + "TB": false, + "modelScale": 10, + "blockModel": "Potion Table", + "description": { + "translationKey": "item:potionTableDescription" + }, + "id": 1011, + "name": "Potion Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1012": { + "displayName": { + "translationKey": "item:pineLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pine", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Pine Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Pine Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1012, + "name": "Pine Ladder", + "stackable": true, + "meta": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1013": { + "displayName": { + "translationKey": "item:pineLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pine", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pine Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1013, + "name": "Pine Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1014": { + "displayName": { + "translationKey": "item:pineLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pine", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pine Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1014, + "name": "Pine Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1015": { + "displayName": { + "translationKey": "item:pineLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pine", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pine Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1015, + "name": "Pine Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1016": { + "displayName": { + "translationKey": "item:plumLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_plum", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Plum Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Plum Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1016, + "name": "Plum Ladder", + "stackable": true, + "meta": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1017": { + "displayName": { + "translationKey": "item:plumLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_plum", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Plum Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1017, + "name": "Plum Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1018": { + "displayName": { + "translationKey": "item:plumLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_plum", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Plum Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1018, + "name": "Plum Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1019": { + "displayName": { + "translationKey": "item:plumLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_plum", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Plum Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1019, + "name": "Plum Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1020": { + "displayName": { + "translationKey": "item:cedarLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cedar", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Cedar Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Cedar Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1020, + "name": "Cedar Ladder", + "stackable": true, + "meta": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1021": { + "displayName": { + "translationKey": "item:cedarLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cedar", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Cedar Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1021, + "name": "Cedar Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1022": { + "displayName": { + "translationKey": "item:cedarLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cedar", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Cedar Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1022, + "name": "Cedar Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1023": { + "displayName": { + "translationKey": "item:cedarLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cedar", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Cedar Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1023, + "name": "Cedar Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1024": { + "displayName": { + "translationKey": "item:aspenLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_aspen", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Aspen Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Aspen Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1024, + "name": "Aspen Ladder", + "stackable": true, + "meta": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1025": { + "displayName": { + "translationKey": "item:aspenLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_aspen", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Aspen Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1025, + "name": "Aspen Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1026": { + "displayName": { + "translationKey": "item:aspenLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_aspen", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Aspen Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1026, + "name": "Aspen Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1027": { + "displayName": { + "translationKey": "item:aspenLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_aspen", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Aspen Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1027, + "name": "Aspen Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1028": { + "displayName": { + "translationKey": "item:jungleLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_jungle", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Jungle Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Jungle Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1028, + "name": "Jungle Ladder", + "stackable": true, + "meta": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1029": { + "displayName": { + "translationKey": "item:jungleLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_jungle", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Jungle Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1029, + "name": "Jungle Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1030": { + "displayName": { + "translationKey": "item:jungleLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_jungle", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Jungle Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1030, + "name": "Jungle Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1031": { + "displayName": { + "translationKey": "item:jungleLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_jungle", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Jungle Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1031, + "name": "Jungle Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1032": { + "displayName": { + "translationKey": "item:palmLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_palm", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Palm Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Palm Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1032, + "name": "Palm Ladder", + "stackable": true, + "meta": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1033": { + "displayName": { + "translationKey": "item:palmLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_palm", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Palm Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1033, + "name": "Palm Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1034": { + "displayName": { + "translationKey": "item:palmLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_palm", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Palm Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1034, + "name": "Palm Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1035": { + "displayName": { + "translationKey": "item:palmLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_palm", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Palm Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1035, + "name": "Palm Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1036": { + "displayName": { + "translationKey": "item:pearLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pear", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Pear Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Pear Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1036, + "name": "Pear Ladder", + "stackable": true, + "meta": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1037": { + "displayName": { + "translationKey": "item:pearLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pear", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pear Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1037, + "name": "Pear Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1038": { + "displayName": { + "translationKey": "item:pearLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pear", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pear Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1038, + "name": "Pear Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1039": { + "displayName": { + "translationKey": "item:pearLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pear", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pear Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1039, + "name": "Pear Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1040": { + "displayName": { + "translationKey": "item:blackCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_black_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_black_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1040, + "name": "Black Carpet", + "stackable": true, + "meta": { + "rootName": "Black Carpet", + "rootId": 1040, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1041": { + "displayName": { + "translationKey": "item:blueCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_blue_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_blue_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1041, + "name": "Blue Carpet", + "stackable": true, + "meta": { + "rootName": "Blue Carpet", + "rootId": 1041, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1042": { + "displayName": { + "translationKey": "item:brownCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_brown_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_brown_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1042, + "name": "Brown Carpet", + "stackable": true, + "meta": { + "rootName": "Brown Carpet", + "rootId": 1042, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1043": { + "displayName": { + "translationKey": "item:cyanCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_cyan_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_cyan_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1043, + "name": "Cyan Carpet", + "stackable": true, + "meta": { + "rootName": "Cyan Carpet", + "rootId": 1043, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1044": { + "displayName": { + "translationKey": "item:grayCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_gray_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_gray_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1044, + "name": "Gray Carpet", + "stackable": true, + "meta": { + "rootName": "Gray Carpet", + "rootId": 1044, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1045": { + "displayName": { + "translationKey": "item:lightGrayCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_light_gray_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_light_gray_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1045, + "name": "Light Gray Carpet", + "stackable": true, + "meta": { + "rootName": "Light Gray Carpet", + "rootId": 1045, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1046": { + "displayName": { + "translationKey": "item:greenCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_green_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_green_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1046, + "name": "Green Carpet", + "stackable": true, + "meta": { + "rootName": "Green Carpet", + "rootId": 1046, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1047": { + "displayName": { + "translationKey": "item:lightBlueCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_light_blue_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_light_blue_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1047, + "name": "Light Blue Carpet", + "stackable": true, + "meta": { + "rootName": "Light Blue Carpet", + "rootId": 1047, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1048": { + "displayName": { + "translationKey": "item:limeCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_lime_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_lime_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1048, + "name": "Lime Carpet", + "stackable": true, + "meta": { + "rootName": "Lime Carpet", + "rootId": 1048, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1049": { + "displayName": { + "translationKey": "item:magentaCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_magenta_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_magenta_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1049, + "name": "Magenta Carpet", + "stackable": true, + "meta": { + "rootName": "Magenta Carpet", + "rootId": 1049, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1050": { + "displayName": { + "translationKey": "item:orangeCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_orange_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_orange_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1050, + "name": "Orange Carpet", + "stackable": true, + "meta": { + "rootName": "Orange Carpet", + "rootId": 1050, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1051": { + "displayName": { + "translationKey": "item:pinkCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_pink_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_pink_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1051, + "name": "Pink Carpet", + "stackable": true, + "meta": { + "rootName": "Pink Carpet", + "rootId": 1051, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1052": { + "displayName": { + "translationKey": "item:purpleCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_purple_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_purple_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1052, + "name": "Purple Carpet", + "stackable": true, + "meta": { + "rootName": "Purple Carpet", + "rootId": 1052, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1053": { + "displayName": { + "translationKey": "item:redCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_red_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_red_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1053, + "name": "Red Carpet", + "stackable": true, + "meta": { + "rootName": "Red Carpet", + "rootId": 1053, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1054": { + "displayName": { + "translationKey": "item:whiteCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_white_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_white_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1054, + "name": "White Carpet", + "stackable": true, + "meta": { + "rootName": "White Carpet", + "rootId": 1054, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1055": { + "displayName": { + "translationKey": "item:yellowCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_yellow_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_yellow_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1055, + "name": "Yellow Carpet", + "stackable": true, + "meta": { + "rootName": "Yellow Carpet", + "rootId": 1055, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1056": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "rootMetaDesc": "Bookshelf|meta|rot1|books6", + "id": 1056, + "name": "Bookshelf", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books6", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "atlasIdx": [ + 442, + 90 + ] + }, + "1057": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1057, + "name": "Bookshelf|meta|rot2|books6", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books6", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "atlasIdx": [ + 442, + 90 + ] + }, + "1058": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1058, + "name": "Bookshelf|meta|rot3|books6", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books6", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "atlasIdx": [ + 442, + 90 + ] + }, + "1059": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1059, + "name": "Bookshelf|meta|rot4|books6", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books6", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "atlasIdx": [ + 442, + 90 + ] + }, + "1060": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_empty", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "description": { + "translationKey": "item:emptyBookshelfDescription" + }, + "rootMetaDesc": "Empty Bookshelf|meta|rot1|books0", + "id": 1060, + "name": "Empty Bookshelf", + "stackable": true, + "meta": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot1|books0", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "atlasIdx": [ + 443, + 90 + ] + }, + "1061": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_empty", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1061, + "name": "Empty Bookshelf|meta|rot2|books0", + "stackable": true, + "meta": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot2|books0", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "atlasIdx": [ + 443, + 90 + ] + }, + "1062": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_empty", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1062, + "name": "Empty Bookshelf|meta|rot3|books0", + "stackable": true, + "meta": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot3|books0", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "atlasIdx": [ + 443, + 90 + ] + }, + "1063": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_empty", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1063, + "name": "Empty Bookshelf|meta|rot4|books0", + "stackable": true, + "meta": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot4|books0", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "atlasIdx": [ + 443, + 90 + ] + }, + "1064": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_1", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1064, + "name": "Bookshelf|meta|rot1|books1", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "atlasIdx": [ + 444, + 90 + ] + }, + "1065": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_1", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1065, + "name": "Bookshelf|meta|rot2|books1", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books1", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "atlasIdx": [ + 444, + 90 + ] + }, + "1066": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_1", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1066, + "name": "Bookshelf|meta|rot3|books1", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books1", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "atlasIdx": [ + 444, + 90 + ] + }, + "1067": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_1", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1067, + "name": "Bookshelf|meta|rot4|books1", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books1", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "atlasIdx": [ + 444, + 90 + ] + }, + "1068": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_2", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1068, + "name": "Bookshelf|meta|rot1|books2", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books2", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "atlasIdx": [ + 445, + 90 + ] + }, + "1069": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_2", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1069, + "name": "Bookshelf|meta|rot2|books2", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "atlasIdx": [ + 445, + 90 + ] + }, + "1070": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_2", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1070, + "name": "Bookshelf|meta|rot3|books2", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books2", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "atlasIdx": [ + 445, + 90 + ] + }, + "1071": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_2", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1071, + "name": "Bookshelf|meta|rot4|books2", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books2", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "atlasIdx": [ + 445, + 90 + ] + }, + "1072": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_3", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1072, + "name": "Bookshelf|meta|rot1|books3", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books3", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "atlasIdx": [ + 446, + 90 + ] + }, + "1073": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_3", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1073, + "name": "Bookshelf|meta|rot2|books3", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books3", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "atlasIdx": [ + 446, + 90 + ] + }, + "1074": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_3", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1074, + "name": "Bookshelf|meta|rot3|books3", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "atlasIdx": [ + 446, + 90 + ] + }, + "1075": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_3", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1075, + "name": "Bookshelf|meta|rot4|books3", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books3", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "atlasIdx": [ + 446, + 90 + ] + }, + "1076": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_4", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1076, + "name": "Bookshelf|meta|rot1|books4", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books4", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "atlasIdx": [ + 447, + 90 + ] + }, + "1077": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_4", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1077, + "name": "Bookshelf|meta|rot2|books4", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books4", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "atlasIdx": [ + 447, + 90 + ] + }, + "1078": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_4", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1078, + "name": "Bookshelf|meta|rot3|books4", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books4", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "atlasIdx": [ + 447, + 90 + ] + }, + "1079": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_4", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1079, + "name": "Bookshelf|meta|rot4|books4", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "atlasIdx": [ + 447, + 90 + ] + }, + "1080": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_5", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1080, + "name": "Bookshelf|meta|rot1|books5", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books5", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "atlasIdx": [ + 448, + 90 + ] + }, + "1081": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_5", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1081, + "name": "Bookshelf|meta|rot2|books5", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books5", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "atlasIdx": [ + 448, + 90 + ] + }, + "1082": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_5", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1082, + "name": "Bookshelf|meta|rot3|books5", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books5", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "atlasIdx": [ + 448, + 90 + ] + }, + "1083": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_5", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1083, + "name": "Bookshelf|meta|rot4|books5", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books5", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "atlasIdx": [ + 448, + 90 + ] + }, + "1084": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 1 + ], + "harvestType": "wood", + "rootMetaDesc": "Mailbox|meta|rot1|empty", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1084, + "name": "Mailbox", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot1|empty", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 449, + 450 + ] + }, + "1085": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front", + "mailbox_side" + ], + "texturePerSide": [ + 0, + 1, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1085, + "name": "Mailbox|meta|rot2|empty", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot2|empty", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 449, + 450 + ] + }, + "1086": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1086, + "name": "Mailbox|meta|rot3|empty", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot3|empty", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 449, + 450 + ] + }, + "1087": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1087, + "name": "Mailbox|meta|rot4|empty", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot4|empty", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 449, + 450 + ] + }, + "1088": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front_full", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 1 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1088, + "name": "Mailbox|meta|rot1|full", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot1|full", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 451, + 450 + ] + }, + "1089": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front_full", + "mailbox_side" + ], + "texturePerSide": [ + 0, + 1, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1089, + "name": "Mailbox|meta|rot2|full", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot2|full", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 451, + 450 + ] + }, + "1090": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front_full", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1090, + "name": "Mailbox|meta|rot3|full", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot3|full", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 451, + 450 + ] + }, + "1091": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front_full", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1091, + "name": "Mailbox|meta|rot4|full", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot4|full", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 451, + 450 + ] + }, + "1092": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "textureInfo": "rice_stage0", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "rice", + "description": { + "translationKey": "item:riceDescription" + }, + "id": 1092, + "name": "Rice", + "stackable": true, + "meta": { + "rootName": "Rice", + "rootId": 1092, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1093": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Rice", + "textureInfo": "rice_stage2", + "id": 1093, + "name": "Rice_stage1", + "stackable": true, + "meta": { + "rootName": "Rice_stage1", + "rootId": 1093, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1094": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Rice", + "textureInfo": "rice_stage3", + "id": 1094, + "name": "Rice_stage2", + "stackable": true, + "meta": { + "rootName": "Rice_stage2", + "rootId": 1094, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1095": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Rice", + "textureInfo": "rice_stage4", + "id": 1095, + "name": "Rice_stage3", + "stackable": true, + "meta": { + "rootName": "Rice_stage3", + "rootId": 1095, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1096": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Rice", + "textureInfo": "rice_stage5", + "id": 1096, + "name": "Rice_stage4", + "stackable": true, + "meta": { + "rootName": "Rice_stage4", + "rootId": 1096, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1097": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Rice", + "textureInfo": "rice_stage6", + "id": 1097, + "name": "Rice_stage5", + "stackable": true, + "meta": { + "rootName": "Rice_stage5", + "rootId": 1097, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1098": { + "ttb": 400, + "textureInfo": "rice_stage7", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "onMinedAura": 5, + "id": 1098, + "name": "Rice|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Rice", + "rootId": 1092, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1099": { + "displayName": { + "translationKey": "item:cranberries" + }, + "ttb": 400, + "textureInfo": "berry_bush_stage0", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cranberries", + "description": { + "translationKey": "item:cranberriesDescription" + }, + "id": 1099, + "name": "Cranberries", + "stackable": true, + "meta": { + "rootName": "Cranberries", + "rootId": 1099, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1100": { + "ttb": 400, + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Cranberries", + "textureInfo": "berry_bush_stage1", + "id": 1100, + "name": "Cranberries_stage1", + "stackable": true, + "meta": { + "rootName": "Cranberries_stage1", + "rootId": 1100, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1101": { + "ttb": 400, + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Cranberries", + "textureInfo": "berry_bush_stage2", + "onMinedAura": 5, + "id": 1101, + "name": "Cranberries_stage2", + "stackable": true, + "meta": { + "rootName": "Cranberries_stage2", + "rootId": 1101, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1102": { + "displayName": { + "translationKey": "item:redMushroom" + }, + "ttb": 400, + "textureInfo": "red_mushroom", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "red_mushroom", + "id": 1102, + "name": "Red Mushroom", + "stackable": true, + "meta": { + "rootName": "Red Mushroom", + "rootId": 1102, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1103": { + "displayName": { + "translationKey": "item:brownMushroom" + }, + "ttb": 400, + "textureInfo": "brown_mushroom", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "brown_mushroom", + "id": 1103, + "name": "Brown Mushroom", + "stackable": true, + "meta": { + "rootName": "Brown Mushroom", + "rootId": 1103, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1104": { + "displayName": { + "translationKey": "item:cottonSeeds" + }, + "ttb": 400, + "textureInfo": "cotton_plant_stage0", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cotton_seeds", + "description": { + "translationKey": "item:cottonSeedsDescription" + }, + "id": 1104, + "name": "Cotton Seeds", + "stackable": true, + "meta": { + "rootName": "Cotton Seeds", + "rootId": 1104, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1105": { + "displayName": { + "translationKey": "item:cotton" + }, + "ttb": 400, + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Cotton Seeds", + "textureInfo": "cotton_plant_stage1", + "id": 1105, + "name": "Cotton_stage1", + "stackable": true, + "meta": { + "rootName": "Cotton_stage1", + "rootId": 1105, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1106": { + "displayName": { + "translationKey": "item:cotton" + }, + "ttb": 400, + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Cotton Seeds", + "textureInfo": "cotton_plant_stage2", + "id": 1106, + "name": "Cotton_stage2", + "stackable": true, + "meta": { + "rootName": "Cotton_stage2", + "rootId": 1106, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1107": { + "displayName": { + "translationKey": "item:cotton" + }, + "ttb": 400, + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Cotton Seeds", + "textureInfo": "cotton_plant_stage3", + "onMinedAura": 5, + "id": 1107, + "name": "Cotton_stage3", + "stackable": true, + "meta": { + "rootName": "Cotton_stage3", + "rootId": 1107, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1108": { + "displayName": { + "translationKey": "item:tribeProtector" + }, + "ttb": 5000, + "textureInfo": "protector_tribe", + "harvestType": "rock", + "description": { + "translationKey": "item:tribeProtectorDescription" + }, + "id": 1108, + "name": "Tribe Protector", + "stackable": true, + "meta": { + "rootName": "Tribe Protector", + "rootId": 1108, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 452 + }, + "1109": { + "displayName": { + "translationKey": "item:tallGrass" + }, + "ttb": 1, + "textureInfo": "tall_grass_bottom", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Tall Grass" + }, + "itemTexture": "tall_grass_bottom", + "canBePlacedOver": true, + "id": 1109, + "name": "Tall Grass", + "stackable": true, + "meta": { + "rootName": "Tall Grass", + "rootId": 1109, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1110": { + "ttb": 1, + "textureInfo": "tall_grass_top", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Tall Grass" + }, + "itemTexture": "tall_grass_top", + "canBePlacedOver": true, + "id": 1110, + "name": "Tall Grass|Top", + "stackable": true, + "meta": { + "rootName": "Tall Grass", + "rootId": 1109, + "metaStr": "Top", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1111": { + "ttb": 5000, + "textureInfo": "protector_faction", + "harvestType": "rock", + "description": "Prevents other factions from changing blocks and\nopening chests in the placed chunk", + "id": 1111, + "name": "Faction Protector", + "stackable": true, + "meta": { + "rootName": "Faction Protector", + "rootId": 1111, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 453 + }, + "1112": { + "displayName": { + "translationKey": "item:barklessPalmLog" + }, + "ttb": 2000, + "textureInfo": "stripped_palm_log", + "harvestType": "wood", + "id": 1112, + "name": "Barkless Palm Log", + "stackable": true, + "meta": { + "rootName": "Barkless Palm Log", + "rootId": 1112, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 454 + }, + "1113": { + "displayName": { + "translationKey": "item:barklessPearLog" + }, + "ttb": 2000, + "textureInfo": "stripped_pear_log", + "harvestType": "wood", + "id": 1113, + "name": "Barkless Pear Log", + "stackable": true, + "meta": { + "rootName": "Barkless Pear Log", + "rootId": 1113, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 455 + }, + "1114": { + "ttb": 2000, + "textureInfo": "stripped_maple_log", + "harvestType": "wood", + "drops": "Barkless Maple Log", + "id": 1114, + "name": "Barkless Maple Log|TreeBase|Maple", + "stackable": true, + "meta": { + "rootName": "Barkless Maple Log", + "rootId": 21, + "metaStr": "TreeBase|Maple", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Maple", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 96 + }, + "1115": { + "ttb": 2000, + "textureInfo": "stripped_plum_log", + "harvestType": "wood", + "drops": "Barkless Plum Log", + "id": 1115, + "name": "Barkless Plum Log|TreeBase|Plum", + "stackable": true, + "meta": { + "rootName": "Barkless Plum Log", + "rootId": 23, + "metaStr": "TreeBase|Plum", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Plum", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 98 + }, + "1116": { + "ttb": 2000, + "textureInfo": "stripped_cedar_log", + "harvestType": "wood", + "drops": "Barkless Cedar Log", + "id": 1116, + "name": "Barkless Cedar Log|TreeBase|Cedar", + "stackable": true, + "meta": { + "rootName": "Barkless Cedar Log", + "rootId": 26, + "metaStr": "TreeBase|Cedar", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cedar", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 101 + }, + "1117": { + "ttb": 2000, + "textureInfo": "stripped_aspen_log", + "harvestType": "wood", + "drops": "Barkless Aspen Log", + "id": 1117, + "name": "Barkless Aspen Log|TreeBase|Aspen", + "stackable": true, + "meta": { + "rootName": "Barkless Aspen Log", + "rootId": 22, + "metaStr": "TreeBase|Aspen", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Aspen", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 97 + }, + "1118": { + "ttb": 2000, + "textureInfo": "stripped_jungle_log", + "harvestType": "wood", + "drops": "Barkless Jungle Log", + "id": 1118, + "name": "Barkless Jungle Log|TreeBase|Jungle", + "stackable": true, + "meta": { + "rootName": "Barkless Jungle Log", + "rootId": 24, + "metaStr": "TreeBase|Jungle", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Jungle", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 99 + }, + "1119": { + "ttb": 2000, + "textureInfo": "stripped_pine_log", + "harvestType": "wood", + "drops": "Barkless Pine Log", + "id": 1119, + "name": "Barkless Pine Log|TreeBase|Pine", + "stackable": true, + "meta": { + "rootName": "Barkless Pine Log", + "rootId": 25, + "metaStr": "TreeBase|Pine", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pine", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 100 + }, + "1120": { + "ttb": 2000, + "textureInfo": "stripped_palm_log", + "harvestType": "wood", + "drops": "Barkless Palm Log", + "id": 1120, + "name": "Barkless Palm Log|TreeBase|Palm", + "stackable": true, + "meta": { + "rootName": "Barkless Palm Log", + "rootId": 1112, + "metaStr": "TreeBase|Palm", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Palm", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 454 + }, + "1121": { + "ttb": 2000, + "textureInfo": "stripped_pear_log", + "harvestType": "wood", + "drops": "Barkless Pear Log", + "id": 1121, + "name": "Barkless Pear Log|TreeBase|Pear", + "stackable": true, + "meta": { + "rootName": "Barkless Pear Log", + "rootId": 1113, + "metaStr": "TreeBase|Pear", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pear", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 455 + }, + "1122": { + "displayName": { + "translationKey": "item:mysteryBlock" + }, + "ttb": 1200, + "textureInfo": "mystery_block", + "harvestType": "rock", + "description": { + "translationKey": "item:mysteryBlockDescription" + }, + "id": 1122, + "name": "Mystery Block", + "stackable": true, + "meta": { + "rootName": "Mystery Block", + "rootId": 1122, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 456 + }, + "1123": { + "displayName": { + "translationKey": "item:rocket" + }, + "ttb": 1, + "textureInfo": "rocket_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1123, + "name": "Rocket", + "stackable": true, + "meta": { + "rootName": "Rocket", + "rootId": 1123, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 457 + }, + "1124": { + "displayName": { + "translationKey": "item:superRocket" + }, + "ttb": 1, + "textureInfo": "super_rocket_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1124, + "name": "Super Rocket", + "stackable": true, + "meta": { + "rootName": "Super Rocket", + "rootId": 1124, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 458 + }, + "1125": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Yellow Concrete Slab|meta|rot1|bot", + "id": 1125, + "name": "Yellow Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "1126": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1126, + "name": "Yellow Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "1127": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1127, + "name": "Yellow Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "1128": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1128, + "name": "Yellow Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "1129": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1129, + "name": "Yellow Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "1130": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1130, + "name": "Yellow Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "1131": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "White Concrete Slab|meta|rot1|bot", + "id": 1131, + "name": "White Concrete Slab", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "1132": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1132, + "name": "White Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "1133": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1133, + "name": "White Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "1134": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1134, + "name": "White Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "1135": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1135, + "name": "White Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "1136": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1136, + "name": "White Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "1137": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Red Concrete Slab|meta|rot1|bot", + "id": 1137, + "name": "Red Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "1138": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1138, + "name": "Red Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "1139": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1139, + "name": "Red Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "1140": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1140, + "name": "Red Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "1141": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1141, + "name": "Red Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "1142": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1142, + "name": "Red Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "1143": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Purple Concrete Slab|meta|rot1|bot", + "id": 1143, + "name": "Purple Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "1144": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1144, + "name": "Purple Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "1145": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1145, + "name": "Purple Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "1146": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1146, + "name": "Purple Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "1147": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1147, + "name": "Purple Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "1148": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1148, + "name": "Purple Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "1149": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Pink Concrete Slab|meta|rot1|bot", + "id": 1149, + "name": "Pink Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "1150": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1150, + "name": "Pink Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "1151": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1151, + "name": "Pink Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "1152": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1152, + "name": "Pink Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "1153": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1153, + "name": "Pink Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "1154": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1154, + "name": "Pink Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "1155": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Orange Concrete Slab|meta|rot1|bot", + "id": 1155, + "name": "Orange Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "1156": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1156, + "name": "Orange Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "1157": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1157, + "name": "Orange Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "1158": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1158, + "name": "Orange Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "1159": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1159, + "name": "Orange Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "1160": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1160, + "name": "Orange Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "1161": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Magenta Concrete Slab|meta|rot1|bot", + "id": 1161, + "name": "Magenta Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "1162": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1162, + "name": "Magenta Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "1163": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1163, + "name": "Magenta Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "1164": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1164, + "name": "Magenta Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "1165": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1165, + "name": "Magenta Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "1166": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1166, + "name": "Magenta Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "1167": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Lime Concrete Slab|meta|rot1|bot", + "id": 1167, + "name": "Lime Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "1168": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1168, + "name": "Lime Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "1169": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1169, + "name": "Lime Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "1170": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1170, + "name": "Lime Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "1171": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1171, + "name": "Lime Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "1172": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1172, + "name": "Lime Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "1173": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Light Gray Concrete Slab|meta|rot1|bot", + "id": 1173, + "name": "Light Gray Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "1174": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1174, + "name": "Light Gray Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "1175": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1175, + "name": "Light Gray Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "1176": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1176, + "name": "Light Gray Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "1177": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1177, + "name": "Light Gray Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "1178": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1178, + "name": "Light Gray Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "1179": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Light Blue Concrete Slab|meta|rot1|bot", + "id": 1179, + "name": "Light Blue Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "1180": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1180, + "name": "Light Blue Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "1181": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1181, + "name": "Light Blue Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "1182": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1182, + "name": "Light Blue Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "1183": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1183, + "name": "Light Blue Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "1184": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1184, + "name": "Light Blue Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "1185": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Green Concrete Slab|meta|rot1|bot", + "id": 1185, + "name": "Green Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "1186": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1186, + "name": "Green Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "1187": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1187, + "name": "Green Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "1188": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1188, + "name": "Green Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "1189": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1189, + "name": "Green Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "1190": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1190, + "name": "Green Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "1191": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Gray Concrete Slab|meta|rot1|bot", + "id": 1191, + "name": "Gray Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "1192": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1192, + "name": "Gray Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "1193": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1193, + "name": "Gray Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "1194": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1194, + "name": "Gray Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "1195": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1195, + "name": "Gray Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "1196": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1196, + "name": "Gray Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "1197": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Cyan Concrete Slab|meta|rot1|bot", + "id": 1197, + "name": "Cyan Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "1198": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1198, + "name": "Cyan Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "1199": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1199, + "name": "Cyan Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "1200": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1200, + "name": "Cyan Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "1201": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1201, + "name": "Cyan Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "1202": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1202, + "name": "Cyan Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "1203": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Brown Concrete Slab|meta|rot1|bot", + "id": 1203, + "name": "Brown Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "1204": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1204, + "name": "Brown Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "1205": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1205, + "name": "Brown Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "1206": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1206, + "name": "Brown Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "1207": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1207, + "name": "Brown Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "1208": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1208, + "name": "Brown Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "1209": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Blue Concrete Slab|meta|rot1|bot", + "id": 1209, + "name": "Blue Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "1210": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1210, + "name": "Blue Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "1211": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1211, + "name": "Blue Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "1212": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1212, + "name": "Blue Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "1213": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1213, + "name": "Blue Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "1214": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1214, + "name": "Blue Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "1215": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Black Concrete Slab|meta|rot1|bot", + "id": 1215, + "name": "Black Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "1216": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1216, + "name": "Black Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "1217": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1217, + "name": "Black Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "1218": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1218, + "name": "Black Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "1219": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1219, + "name": "Black Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "1220": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1220, + "name": "Black Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "1221": { + "displayName": { + "translationKey": "item:grenade" + }, + "ttb": 1, + "textureInfo": "grenade_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1221, + "name": "Grenade", + "stackable": true, + "meta": { + "rootName": "Grenade", + "rootId": 1221, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 459 + }, + "1222": { + "displayName": { + "translationKey": "item:cherryLog" + }, + "ttb": 2400, + "textureInfo": "log_cherry", + "harvestType": "wood", + "id": 1222, + "name": "Cherry Log", + "stackable": true, + "meta": { + "rootName": "Cherry Log", + "rootId": 1222, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 460 + }, + "1223": { + "displayName": { + "translationKey": "item:barklessCherryLog" + }, + "ttb": 2000, + "textureInfo": "stripped_cherry_log", + "harvestType": "wood", + "id": 1223, + "name": "Barkless Cherry Log", + "stackable": true, + "meta": { + "rootName": "Barkless Cherry Log", + "rootId": 1223, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 461 + }, + "1224": { + "ttb": 2000, + "textureInfo": "stripped_cherry_log", + "harvestType": "wood", + "drops": "Barkless Cherry Log", + "id": 1224, + "name": "Barkless Cherry Log|TreeBase|Cherry", + "stackable": true, + "meta": { + "rootName": "Barkless Cherry Log", + "rootId": 1223, + "metaStr": "TreeBase|Cherry", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cherry", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 461 + }, + "1225": { + "displayName": { + "translationKey": "item:cherryWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_cherry", + "harvestType": "wood", + "id": 1225, + "name": "Cherry Wood Planks", + "stackable": true, + "meta": { + "rootName": "Cherry Wood Planks", + "rootId": 1225, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 462 + }, + "1226": { + "displayName": { + "translationKey": "item:cherryLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_cherry", + "harvestType": "cuttable", + "id": 1226, + "name": "Cherry Leaves", + "stackable": true, + "meta": { + "rootName": "Cherry Leaves", + "rootId": 1226, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 463 + }, + "1227": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "rootMetaDesc": "Fallen Cherry Leaves|meta|rot1|bot", + "id": 1227, + "name": "Fallen Cherry Leaves", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "1228": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 1228, + "name": "Fallen Cherry Leaves|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "1229": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 1229, + "name": "Fallen Cherry Leaves|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "1230": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 1230, + "name": "Fallen Cherry Leaves|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "1231": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 1231, + "name": "Fallen Cherry Leaves|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "1232": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 1232, + "name": "Fallen Cherry Leaves|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "1233": { + "displayName": { + "translationKey": "item:cherryDoor" + }, + "ttb": 3600, + "itemTexture": "cherry_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Cherry Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Cherry Door", + "id": 1233, + "name": "Cherry Door", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1234": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1234, + "name": "Cherry Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1235": { + "ttb": 3600, + "harvestType": "wood", + "id": 1235, + "name": "Cherry Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1236": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1236, + "name": "Cherry Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1237": { + "ttb": 3600, + "harvestType": "wood", + "id": 1237, + "name": "Cherry Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1238": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1238, + "name": "Cherry Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1239": { + "ttb": 3600, + "harvestType": "wood", + "id": 1239, + "name": "Cherry Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1240": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1240, + "name": "Cherry Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1241": { + "ttb": 3600, + "itemTexture": "cherry_door", + "harvestType": "wood", + "model": "door", + "drops": "Cherry Door", + "rootMetaDesc": "_Cherry Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Cherry Door Top", + "id": 1241, + "name": "_Cherry Door Top", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1242": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "TB": false, + "id": 1242, + "name": "_Cherry Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1243": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "id": 1243, + "name": "_Cherry Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1244": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "TB": false, + "id": 1244, + "name": "_Cherry Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1245": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "id": 1245, + "name": "_Cherry Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1246": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "TB": false, + "id": 1246, + "name": "_Cherry Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1247": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "id": 1247, + "name": "_Cherry Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1248": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "TB": false, + "id": 1248, + "name": "_Cherry Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1249": { + "displayName": { + "translationKey": "item:cherryTrapdoor" + }, + "ttb": 2800, + "itemTexture": "cherry_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Cherry Trapdoor|meta|rot1|closed", + "blockModel": "Cherry Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 1249, + "name": "Cherry Trapdoor", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1250": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1250, + "name": "Cherry Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1251": { + "ttb": 2800, + "harvestType": "wood", + "id": 1251, + "name": "Cherry Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1252": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1252, + "name": "Cherry Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1253": { + "ttb": 2800, + "harvestType": "wood", + "id": 1253, + "name": "Cherry Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1254": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1254, + "name": "Cherry Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1255": { + "ttb": 2800, + "harvestType": "wood", + "id": 1255, + "name": "Cherry Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1256": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1256, + "name": "Cherry Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1257": { + "displayName": { + "translationKey": "item:cherrySapling" + }, + "ttb": 1, + "textureInfo": "cherry_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cherry_sapling", + "id": 1257, + "name": "Cherry Sapling", + "stackable": true, + "meta": { + "rootName": "Cherry Sapling", + "rootId": 1257, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1258": { + "ttb": 2400, + "textureInfo": "log_cherry", + "harvestType": "wood", + "drops": "Cherry Log", + "id": 1258, + "name": "Cherry Log|TreeBase|Cherry", + "stackable": true, + "meta": { + "rootName": "Cherry Log", + "rootId": 1222, + "metaStr": "TreeBase|Cherry", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cherry", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 460 + }, + "1259": { + "ttb": 350, + "textureInfo": "leaves_cherry", + "harvestType": "cuttable", + "drops": "Cherry Leaves", + "id": 1259, + "name": "Cherry Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Cherry Leaves", + "rootId": 1226, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 463 + }, + "1260": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Cherry Slab|meta|rot1|bot", + "id": 1260, + "name": "Cherry Slab", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "1261": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1261, + "name": "Cherry Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "1262": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1262, + "name": "Cherry Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "1263": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1263, + "name": "Cherry Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "1264": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1264, + "name": "Cherry Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "1265": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1265, + "name": "Cherry Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "1266": { + "displayName": { + "translationKey": "item:cherryLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cherry", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Cherry Ladder|meta|rot1", + "modelScale": 1, + "TB": false, + "blockModel": "Cherry Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1266, + "name": "Cherry Ladder", + "stackable": true, + "meta": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1267": { + "displayName": { + "translationKey": "item:cherryLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cherry", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Cherry Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1267, + "name": "Cherry Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1268": { + "displayName": { + "translationKey": "item:cherryLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cherry", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Cherry Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1268, + "name": "Cherry Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1269": { + "displayName": { + "translationKey": "item:cherryLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cherry", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Cherry Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1269, + "name": "Cherry Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1270": { + "displayName": { + "translationKey": "item:cherryBlock" + }, + "ttb": 600, + "textureInfo": [ + "cherry_block_side", + "cherry_block_top", + "cherry_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 1270, + "name": "Cherry Block", + "stackable": true, + "meta": { + "rootName": "Cherry Block", + "rootId": 1270, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 466, + 467, + 468 + ] + }, + "1271": { + "displayName": { + "translationKey": "item:bouncyBombBlock" + }, + "ttb": 1, + "textureInfo": "bouncy_bomb_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1271, + "name": "Bouncy Bomb Block", + "stackable": true, + "meta": { + "rootName": "Bouncy Bomb Block", + "rootId": 1271, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 469 + }, + "1272": { + "displayName": { + "translationKey": "item:rocket" + }, + "ttb": 1, + "textureInfo": "rocket_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1272, + "name": "Obby Rocket", + "stackable": true, + "meta": { + "rootName": "Obby Rocket", + "rootId": 1272, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 457 + }, + "1273": { + "displayName": { + "translationKey": "item:woodSpikes" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_wood", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Wood", + "description": { + "translationKey": "item:spikesDescription" + }, + "id": 1273, + "name": "Wood Spikes", + "stackable": true, + "meta": { + "rootName": "Wood Spikes", + "rootId": 1273, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1274": { + "displayName": { + "translationKey": "item:stoneSpikes" + }, + "ttb": 1200, + "harvestType": "rock", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_stone", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Stone", + "description": { + "translationKey": "item:spikesDescription" + }, + "id": 1274, + "name": "Stone Spikes", + "stackable": true, + "meta": { + "rootName": "Stone Spikes", + "rootId": 1274, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1275": { + "displayName": { + "translationKey": "item:ironSpikes" + }, + "ttb": 1200, + "harvestType": "rock", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_iron", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Iron", + "description": { + "translationKey": "item:spikesDescription" + }, + "id": 1275, + "name": "Iron Spikes", + "stackable": true, + "meta": { + "rootName": "Iron Spikes", + "rootId": 1275, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1276": { + "displayName": { + "translationKey": "item:goldSpikes" + }, + "ttb": 1200, + "harvestType": "rock", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_gold", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Gold", + "description": { + "translationKey": "item:spikesDescription" + }, + "id": 1276, + "name": "Gold Spikes", + "stackable": true, + "meta": { + "rootName": "Gold Spikes", + "rootId": 1276, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1277": { + "displayName": { + "translationKey": "item:diamondSpikes" + }, + "ttb": 1200, + "harvestType": "rock", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_diamond", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Diamond", + "description": { + "translationKey": "item:spikesDescription" + }, + "id": 1277, + "name": "Diamond Spikes", + "stackable": true, + "meta": { + "rootName": "Diamond Spikes", + "rootId": 1277, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1278": { + "displayName": { + "translationKey": "item:killSpikes" + }, + "ttb": 1200, + "harvestType": "rock", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_kill", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Kill", + "description": { + "translationKey": "item:killSpikesDescription" + }, + "id": 1278, + "name": "Kill Spikes", + "stackable": true, + "meta": { + "rootName": "Kill Spikes", + "rootId": 1278, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1279": { + "displayName": { + "translationKey": "item:cornBlock" + }, + "ttb": 600, + "textureInfo": [ + "corn_block_side", + "corn_block_top", + "corn_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 1279, + "name": "Corn Block", + "stackable": true, + "meta": { + "rootName": "Corn Block", + "rootId": 1279, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 470, + 471, + 472 + ] + }, + "1280": { + "displayName": { + "translationKey": "item:cornSeeds" + }, + "ttb": 400, + "textureInfo": "corn_stage0", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "corn_seeds", + "description": { + "translationKey": "item:cornSeedsDescription" + }, + "id": 1280, + "name": "Corn Seeds", + "stackable": true, + "meta": { + "rootName": "Corn Seeds", + "rootId": 1280, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1281": { + "displayName": { + "translationKey": "item:cornSeeds" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage1", + "id": 1281, + "name": "Corn Seeds_stage1", + "stackable": true, + "meta": { + "rootName": "Corn Seeds_stage1", + "rootId": 1281, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1282": { + "ttb": 400, + "textureInfo": "corn_stage2", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "id": 1282, + "name": "Corn Seeds|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Corn Seeds", + "rootId": 1280, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1283": { + "ttb": 400, + "textureInfo": "corn_stage2", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "id": 1283, + "name": "Corn Seeds|Growing", + "stackable": true, + "meta": { + "rootName": "Corn Seeds", + "rootId": 1280, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1284": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage0", + "id": 1284, + "name": "Corn Plant_stage1", + "stackable": true, + "meta": { + "rootName": "Corn Plant_stage1", + "rootId": 1284, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1285": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage1", + "id": 1285, + "name": "Corn Plant_stage2", + "stackable": true, + "meta": { + "rootName": "Corn Plant_stage2", + "rootId": 1285, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1286": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage2", + "id": 1286, + "name": "Corn Plant_stage3", + "stackable": true, + "meta": { + "rootName": "Corn Plant_stage3", + "rootId": 1286, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1287": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage3", + "id": 1287, + "name": "Corn Plant_stage4", + "stackable": true, + "meta": { + "rootName": "Corn Plant_stage4", + "rootId": 1287, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1288": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage4", + "id": 1288, + "name": "Corn Plant_stage5", + "stackable": true, + "meta": { + "rootName": "Corn Plant_stage5", + "rootId": 1288, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1289": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "textureInfo": "corn_stage5", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "id": 1289, + "name": "Corn Plant", + "stackable": true, + "meta": { + "rootName": "Corn Plant", + "rootId": 1289, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1290": { + "ttb": 400, + "textureInfo": "corn_stage5", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "onMinedAura": 10, + "id": 1290, + "name": "Corn Plant|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Corn Plant", + "rootId": 1289, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1291": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "rootMetaDesc": "Loot Chest|meta|rot1", + "drops": "Chest", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 1291, + "name": "Loot Chest", + "stackable": true, + "meta": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "1292": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "drops": "Chest", + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 1292, + "name": "Loot Chest|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "1293": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "drops": "Chest", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 1293, + "name": "Loot Chest|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "1294": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "drops": "Chest", + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 1294, + "name": "Loot Chest|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "1295": { + "displayName": { + "translationKey": "item:ice" + }, + "ttb": 1200, + "textureInfo": "ice", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "drops": "Ice", + "id": 1295, + "name": "Melting Ice", + "stackable": true, + "meta": { + "rootName": "Melting Ice", + "rootId": 1295, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 212 + }, + "1296": { + "ttb": 200, + "textureInfo": "melting_ice", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "drops": null, + "id": 1296, + "name": "Melting Ice|Breaking", + "stackable": true, + "meta": { + "rootName": "Melting Ice", + "rootId": 1295, + "metaStr": "Breaking", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 473 + }, + "1297": { + "textureInfo": [ + "explosive_paint_yellow_side", + "explosive_paint_yellow_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1297, + "name": "Yellow Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Yellow Paintball Explosive", + "rootId": 1297, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 474, + 475 + ] + }, + "1298": { + "textureInfo": [ + "explosive_paint_white_side", + "explosive_paint_white_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1298, + "name": "White Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "White Paintball Explosive", + "rootId": 1298, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 476, + 477 + ] + }, + "1299": { + "textureInfo": [ + "explosive_paint_red_side", + "explosive_paint_red_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1299, + "name": "Red Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Red Paintball Explosive", + "rootId": 1299, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 478, + 479 + ] + }, + "1300": { + "textureInfo": [ + "explosive_paint_purple_side", + "explosive_paint_purple_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1300, + "name": "Purple Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Purple Paintball Explosive", + "rootId": 1300, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 480, + 481 + ] + }, + "1301": { + "textureInfo": [ + "explosive_paint_pink_side", + "explosive_paint_pink_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1301, + "name": "Pink Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Pink Paintball Explosive", + "rootId": 1301, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 482, + 483 + ] + }, + "1302": { + "textureInfo": [ + "explosive_paint_orange_side", + "explosive_paint_orange_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1302, + "name": "Orange Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Orange Paintball Explosive", + "rootId": 1302, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 484, + 485 + ] + }, + "1303": { + "textureInfo": [ + "explosive_paint_magenta_side", + "explosive_paint_magenta_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1303, + "name": "Magenta Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Magenta Paintball Explosive", + "rootId": 1303, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 486, + 487 + ] + }, + "1304": { + "textureInfo": [ + "explosive_paint_lime_side", + "explosive_paint_lime_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1304, + "name": "Lime Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Lime Paintball Explosive", + "rootId": 1304, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 488, + 489 + ] + }, + "1305": { + "textureInfo": [ + "explosive_paint_light_gray_side", + "explosive_paint_light_gray_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1305, + "name": "Light Gray Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Gray Paintball Explosive", + "rootId": 1305, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 490, + 491 + ] + }, + "1306": { + "textureInfo": [ + "explosive_paint_light_blue_side", + "explosive_paint_light_blue_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1306, + "name": "Light Blue Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Blue Paintball Explosive", + "rootId": 1306, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 492, + 493 + ] + }, + "1307": { + "textureInfo": [ + "explosive_paint_green_side", + "explosive_paint_green_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1307, + "name": "Green Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Green Paintball Explosive", + "rootId": 1307, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 494, + 495 + ] + }, + "1308": { + "textureInfo": [ + "explosive_paint_gray_side", + "explosive_paint_gray_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1308, + "name": "Gray Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Gray Paintball Explosive", + "rootId": 1308, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 496, + 497 + ] + }, + "1309": { + "textureInfo": [ + "explosive_paint_cyan_side", + "explosive_paint_cyan_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1309, + "name": "Cyan Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Cyan Paintball Explosive", + "rootId": 1309, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 498, + 499 + ] + }, + "1310": { + "textureInfo": [ + "explosive_paint_brown_side", + "explosive_paint_brown_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1310, + "name": "Brown Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Brown Paintball Explosive", + "rootId": 1310, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 500, + 501 + ] + }, + "1311": { + "textureInfo": [ + "explosive_paint_blue_side", + "explosive_paint_blue_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1311, + "name": "Blue Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Blue Paintball Explosive", + "rootId": 1311, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 502, + 503 + ] + }, + "1312": { + "textureInfo": [ + "explosive_paint_black_side", + "explosive_paint_black_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1312, + "name": "Black Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Black Paintball Explosive", + "rootId": 1312, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 504, + 505 + ] + }, + "1313": { + "textureInfo": "explosive_paint_quick_yellow", + "harvestType": "cuttable", + "ttb": 50, + "id": 1313, + "name": "Yellow Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Yellow Quick Paintball Explosive", + "rootId": 1313, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 506 + }, + "1314": { + "textureInfo": "explosive_paint_quick_white", + "harvestType": "cuttable", + "ttb": 50, + "id": 1314, + "name": "White Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "White Quick Paintball Explosive", + "rootId": 1314, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 507 + }, + "1315": { + "textureInfo": "explosive_paint_quick_red", + "harvestType": "cuttable", + "ttb": 50, + "id": 1315, + "name": "Red Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Red Quick Paintball Explosive", + "rootId": 1315, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 508 + }, + "1316": { + "textureInfo": "explosive_paint_quick_purple", + "harvestType": "cuttable", + "ttb": 50, + "id": 1316, + "name": "Purple Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Purple Quick Paintball Explosive", + "rootId": 1316, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 509 + }, + "1317": { + "textureInfo": "explosive_paint_quick_pink", + "harvestType": "cuttable", + "ttb": 50, + "id": 1317, + "name": "Pink Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Pink Quick Paintball Explosive", + "rootId": 1317, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 510 + }, + "1318": { + "textureInfo": "explosive_paint_quick_orange", + "harvestType": "cuttable", + "ttb": 50, + "id": 1318, + "name": "Orange Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Orange Quick Paintball Explosive", + "rootId": 1318, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 511 + }, + "1319": { + "textureInfo": "explosive_paint_quick_magenta", + "harvestType": "cuttable", + "ttb": 50, + "id": 1319, + "name": "Magenta Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Magenta Quick Paintball Explosive", + "rootId": 1319, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 512 + }, + "1320": { + "textureInfo": "explosive_paint_quick_lime", + "harvestType": "cuttable", + "ttb": 50, + "id": 1320, + "name": "Lime Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Lime Quick Paintball Explosive", + "rootId": 1320, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 513 + }, + "1321": { + "textureInfo": "explosive_paint_quick_light_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1321, + "name": "Light Gray Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Gray Quick Paintball Explosive", + "rootId": 1321, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 514 + }, + "1322": { + "textureInfo": "explosive_paint_quick_light_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1322, + "name": "Light Blue Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Blue Quick Paintball Explosive", + "rootId": 1322, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 515 + }, + "1323": { + "textureInfo": "explosive_paint_quick_green", + "harvestType": "cuttable", + "ttb": 50, + "id": 1323, + "name": "Green Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Green Quick Paintball Explosive", + "rootId": 1323, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 516 + }, + "1324": { + "textureInfo": "explosive_paint_quick_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1324, + "name": "Gray Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Gray Quick Paintball Explosive", + "rootId": 1324, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 517 + }, + "1325": { + "textureInfo": "explosive_paint_quick_cyan", + "harvestType": "cuttable", + "ttb": 50, + "id": 1325, + "name": "Cyan Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Cyan Quick Paintball Explosive", + "rootId": 1325, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 518 + }, + "1326": { + "textureInfo": "explosive_paint_quick_brown", + "harvestType": "cuttable", + "ttb": 50, + "id": 1326, + "name": "Brown Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Brown Quick Paintball Explosive", + "rootId": 1326, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 519 + }, + "1327": { + "textureInfo": "explosive_paint_quick_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1327, + "name": "Blue Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Blue Quick Paintball Explosive", + "rootId": 1327, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 520 + }, + "1328": { + "textureInfo": "explosive_paint_quick_black", + "harvestType": "cuttable", + "ttb": 50, + "id": 1328, + "name": "Black Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Black Quick Paintball Explosive", + "rootId": 1328, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 521 + }, + "1329": { + "textureInfo": "explosive_paint_seeking_yellow", + "harvestType": "cuttable", + "ttb": 50, + "id": 1329, + "name": "Yellow Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Yellow Seeking Paintball Explosive", + "rootId": 1329, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 522 + }, + "1330": { + "textureInfo": "explosive_paint_seeking_white", + "harvestType": "cuttable", + "ttb": 50, + "id": 1330, + "name": "White Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "White Seeking Paintball Explosive", + "rootId": 1330, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 523 + }, + "1331": { + "textureInfo": "explosive_paint_seeking_red", + "harvestType": "cuttable", + "ttb": 50, + "id": 1331, + "name": "Red Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Red Seeking Paintball Explosive", + "rootId": 1331, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 524 + }, + "1332": { + "textureInfo": "explosive_paint_seeking_purple", + "harvestType": "cuttable", + "ttb": 50, + "id": 1332, + "name": "Purple Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Purple Seeking Paintball Explosive", + "rootId": 1332, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 525 + }, + "1333": { + "textureInfo": "explosive_paint_seeking_pink", + "harvestType": "cuttable", + "ttb": 50, + "id": 1333, + "name": "Pink Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Pink Seeking Paintball Explosive", + "rootId": 1333, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 526 + }, + "1334": { + "textureInfo": "explosive_paint_seeking_orange", + "harvestType": "cuttable", + "ttb": 50, + "id": 1334, + "name": "Orange Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Orange Seeking Paintball Explosive", + "rootId": 1334, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 527 + }, + "1335": { + "textureInfo": "explosive_paint_seeking_magenta", + "harvestType": "cuttable", + "ttb": 50, + "id": 1335, + "name": "Magenta Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Magenta Seeking Paintball Explosive", + "rootId": 1335, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 528 + }, + "1336": { + "textureInfo": "explosive_paint_seeking_lime", + "harvestType": "cuttable", + "ttb": 50, + "id": 1336, + "name": "Lime Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Lime Seeking Paintball Explosive", + "rootId": 1336, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 529 + }, + "1337": { + "textureInfo": "explosive_paint_seeking_light_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1337, + "name": "Light Gray Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Gray Seeking Paintball Explosive", + "rootId": 1337, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 530 + }, + "1338": { + "textureInfo": "explosive_paint_seeking_light_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1338, + "name": "Light Blue Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Blue Seeking Paintball Explosive", + "rootId": 1338, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 531 + }, + "1339": { + "textureInfo": "explosive_paint_seeking_green", + "harvestType": "cuttable", + "ttb": 50, + "id": 1339, + "name": "Green Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Green Seeking Paintball Explosive", + "rootId": 1339, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 532 + }, + "1340": { + "textureInfo": "explosive_paint_seeking_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1340, + "name": "Gray Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Gray Seeking Paintball Explosive", + "rootId": 1340, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 533 + }, + "1341": { + "textureInfo": "explosive_paint_seeking_cyan", + "harvestType": "cuttable", + "ttb": 50, + "id": 1341, + "name": "Cyan Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Cyan Seeking Paintball Explosive", + "rootId": 1341, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 534 + }, + "1342": { + "textureInfo": "explosive_paint_seeking_brown", + "harvestType": "cuttable", + "ttb": 50, + "id": 1342, + "name": "Brown Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Brown Seeking Paintball Explosive", + "rootId": 1342, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 535 + }, + "1343": { + "textureInfo": "explosive_paint_seeking_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1343, + "name": "Blue Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Blue Seeking Paintball Explosive", + "rootId": 1343, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 536 + }, + "1344": { + "textureInfo": "explosive_paint_seeking_black", + "harvestType": "cuttable", + "ttb": 50, + "id": 1344, + "name": "Black Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Black Seeking Paintball Explosive", + "rootId": 1344, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 537 + }, + "1345": { + "textureInfo": "explosive_paint_sticky_yellow", + "harvestType": "cuttable", + "ttb": 50, + "id": 1345, + "name": "Yellow Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Yellow Sticky Paintball Explosive", + "rootId": 1345, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 538 + }, + "1346": { + "textureInfo": "explosive_paint_sticky_white", + "harvestType": "cuttable", + "ttb": 50, + "id": 1346, + "name": "White Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "White Sticky Paintball Explosive", + "rootId": 1346, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 539 + }, + "1347": { + "textureInfo": "explosive_paint_sticky_red", + "harvestType": "cuttable", + "ttb": 50, + "id": 1347, + "name": "Red Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Red Sticky Paintball Explosive", + "rootId": 1347, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 540 + }, + "1348": { + "textureInfo": "explosive_paint_sticky_purple", + "harvestType": "cuttable", + "ttb": 50, + "id": 1348, + "name": "Purple Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Purple Sticky Paintball Explosive", + "rootId": 1348, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 541 + }, + "1349": { + "textureInfo": "explosive_paint_sticky_pink", + "harvestType": "cuttable", + "ttb": 50, + "id": 1349, + "name": "Pink Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Pink Sticky Paintball Explosive", + "rootId": 1349, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 542 + }, + "1350": { + "textureInfo": "explosive_paint_sticky_orange", + "harvestType": "cuttable", + "ttb": 50, + "id": 1350, + "name": "Orange Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Orange Sticky Paintball Explosive", + "rootId": 1350, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 543 + }, + "1351": { + "textureInfo": "explosive_paint_sticky_magenta", + "harvestType": "cuttable", + "ttb": 50, + "id": 1351, + "name": "Magenta Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Magenta Sticky Paintball Explosive", + "rootId": 1351, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 544 + }, + "1352": { + "textureInfo": "explosive_paint_sticky_lime", + "harvestType": "cuttable", + "ttb": 50, + "id": 1352, + "name": "Lime Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Lime Sticky Paintball Explosive", + "rootId": 1352, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 545 + }, + "1353": { + "textureInfo": "explosive_paint_sticky_light_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1353, + "name": "Light Gray Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Gray Sticky Paintball Explosive", + "rootId": 1353, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 546 + }, + "1354": { + "textureInfo": "explosive_paint_sticky_light_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1354, + "name": "Light Blue Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Blue Sticky Paintball Explosive", + "rootId": 1354, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 547 + }, + "1355": { + "textureInfo": "explosive_paint_sticky_green", + "harvestType": "cuttable", + "ttb": 50, + "id": 1355, + "name": "Green Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Green Sticky Paintball Explosive", + "rootId": 1355, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 548 + }, + "1356": { + "textureInfo": "explosive_paint_sticky_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1356, + "name": "Gray Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Gray Sticky Paintball Explosive", + "rootId": 1356, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 549 + }, + "1357": { + "textureInfo": "explosive_paint_sticky_cyan", + "harvestType": "cuttable", + "ttb": 50, + "id": 1357, + "name": "Cyan Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Cyan Sticky Paintball Explosive", + "rootId": 1357, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 550 + }, + "1358": { + "textureInfo": "explosive_paint_sticky_brown", + "harvestType": "cuttable", + "ttb": 50, + "id": 1358, + "name": "Brown Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Brown Sticky Paintball Explosive", + "rootId": 1358, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 551 + }, + "1359": { + "textureInfo": "explosive_paint_sticky_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1359, + "name": "Blue Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Blue Sticky Paintball Explosive", + "rootId": 1359, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 552 + }, + "1360": { + "textureInfo": "explosive_paint_sticky_black", + "harvestType": "cuttable", + "ttb": 50, + "id": 1360, + "name": "Black Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Black Sticky Paintball Explosive", + "rootId": 1360, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 553 + }, + "1361": { + "displayName": { + "translationKey": "item:whiteStrongbed" + }, + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "White Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Strongbed", + "id": 1361, + "name": "White Strongbed", + "stackable": true, + "meta": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1362": { + "displayName": { + "translationKey": "item:whiteStrongbed" + }, + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Strongbed", + "id": 1362, + "name": "White Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1363": { + "displayName": { + "translationKey": "item:whiteStrongbed" + }, + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Strongbed", + "id": 1363, + "name": "White Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1364": { + "displayName": { + "translationKey": "item:whiteStrongbed" + }, + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Strongbed", + "id": 1364, + "name": "White Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1365": { + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "White Strongbed", + "rootMetaDesc": "_White Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Strongbed Head", + "id": 1365, + "name": "_White Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1366": { + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "White Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Strongbed Head", + "id": 1366, + "name": "_White Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1367": { + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "White Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Strongbed Head", + "id": 1367, + "name": "_White Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1368": { + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "White Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Strongbed Head", + "id": 1368, + "name": "_White Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1369": { + "displayName": { + "translationKey": "item:orangeStrongbed" + }, + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Orange Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Strongbed", + "id": 1369, + "name": "Orange Strongbed", + "stackable": true, + "meta": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1370": { + "displayName": { + "translationKey": "item:orangeStrongbed" + }, + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Strongbed", + "id": 1370, + "name": "Orange Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1371": { + "displayName": { + "translationKey": "item:orangeStrongbed" + }, + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Strongbed", + "id": 1371, + "name": "Orange Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1372": { + "displayName": { + "translationKey": "item:orangeStrongbed" + }, + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Strongbed", + "id": 1372, + "name": "Orange Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1373": { + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Orange Strongbed", + "rootMetaDesc": "_Orange Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Strongbed Head", + "id": 1373, + "name": "_Orange Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1374": { + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Orange Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Strongbed Head", + "id": 1374, + "name": "_Orange Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1375": { + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Orange Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Strongbed Head", + "id": 1375, + "name": "_Orange Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1376": { + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Orange Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Strongbed Head", + "id": 1376, + "name": "_Orange Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1377": { + "displayName": { + "translationKey": "item:magentaStrongbed" + }, + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Magenta Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Strongbed", + "id": 1377, + "name": "Magenta Strongbed", + "stackable": true, + "meta": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1378": { + "displayName": { + "translationKey": "item:magentaStrongbed" + }, + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Strongbed", + "id": 1378, + "name": "Magenta Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1379": { + "displayName": { + "translationKey": "item:magentaStrongbed" + }, + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Strongbed", + "id": 1379, + "name": "Magenta Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1380": { + "displayName": { + "translationKey": "item:magentaStrongbed" + }, + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Strongbed", + "id": 1380, + "name": "Magenta Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1381": { + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Magenta Strongbed", + "rootMetaDesc": "_Magenta Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Strongbed Head", + "id": 1381, + "name": "_Magenta Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1382": { + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Magenta Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Strongbed Head", + "id": 1382, + "name": "_Magenta Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1383": { + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Magenta Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Strongbed Head", + "id": 1383, + "name": "_Magenta Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1384": { + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Magenta Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Strongbed Head", + "id": 1384, + "name": "_Magenta Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1385": { + "displayName": { + "translationKey": "item:lightBlueStrongbed" + }, + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Light Blue Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Strongbed", + "id": 1385, + "name": "Light Blue Strongbed", + "stackable": true, + "meta": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1386": { + "displayName": { + "translationKey": "item:lightBlueStrongbed" + }, + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Strongbed", + "id": 1386, + "name": "Light Blue Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1387": { + "displayName": { + "translationKey": "item:lightBlueStrongbed" + }, + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Strongbed", + "id": 1387, + "name": "Light Blue Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1388": { + "displayName": { + "translationKey": "item:lightBlueStrongbed" + }, + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Strongbed", + "id": 1388, + "name": "Light Blue Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1389": { + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Blue Strongbed", + "rootMetaDesc": "_Light Blue Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Strongbed Head", + "id": 1389, + "name": "_Light Blue Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1390": { + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Strongbed Head", + "id": 1390, + "name": "_Light Blue Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1391": { + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Strongbed Head", + "id": 1391, + "name": "_Light Blue Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1392": { + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Strongbed Head", + "id": 1392, + "name": "_Light Blue Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1393": { + "displayName": { + "translationKey": "item:yellowStrongbed" + }, + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Yellow Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Strongbed", + "id": 1393, + "name": "Yellow Strongbed", + "stackable": true, + "meta": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1394": { + "displayName": { + "translationKey": "item:yellowStrongbed" + }, + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Strongbed", + "id": 1394, + "name": "Yellow Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1395": { + "displayName": { + "translationKey": "item:yellowStrongbed" + }, + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Strongbed", + "id": 1395, + "name": "Yellow Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1396": { + "displayName": { + "translationKey": "item:yellowStrongbed" + }, + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Strongbed", + "id": 1396, + "name": "Yellow Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1397": { + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Yellow Strongbed", + "rootMetaDesc": "_Yellow Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Strongbed Head", + "id": 1397, + "name": "_Yellow Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1398": { + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Yellow Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Strongbed Head", + "id": 1398, + "name": "_Yellow Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1399": { + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Yellow Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Strongbed Head", + "id": 1399, + "name": "_Yellow Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1400": { + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Yellow Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Strongbed Head", + "id": 1400, + "name": "_Yellow Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1401": { + "displayName": { + "translationKey": "item:limeStrongbed" + }, + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Lime Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Strongbed", + "id": 1401, + "name": "Lime Strongbed", + "stackable": true, + "meta": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1402": { + "displayName": { + "translationKey": "item:limeStrongbed" + }, + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Strongbed", + "id": 1402, + "name": "Lime Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1403": { + "displayName": { + "translationKey": "item:limeStrongbed" + }, + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Strongbed", + "id": 1403, + "name": "Lime Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1404": { + "displayName": { + "translationKey": "item:limeStrongbed" + }, + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Strongbed", + "id": 1404, + "name": "Lime Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1405": { + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Lime Strongbed", + "rootMetaDesc": "_Lime Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Strongbed Head", + "id": 1405, + "name": "_Lime Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1406": { + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Lime Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Strongbed Head", + "id": 1406, + "name": "_Lime Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1407": { + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Lime Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Strongbed Head", + "id": 1407, + "name": "_Lime Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1408": { + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Lime Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Strongbed Head", + "id": 1408, + "name": "_Lime Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1409": { + "displayName": { + "translationKey": "item:pinkStrongbed" + }, + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Pink Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Strongbed", + "id": 1409, + "name": "Pink Strongbed", + "stackable": true, + "meta": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1410": { + "displayName": { + "translationKey": "item:pinkStrongbed" + }, + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Strongbed", + "id": 1410, + "name": "Pink Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1411": { + "displayName": { + "translationKey": "item:pinkStrongbed" + }, + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Strongbed", + "id": 1411, + "name": "Pink Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1412": { + "displayName": { + "translationKey": "item:pinkStrongbed" + }, + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Strongbed", + "id": 1412, + "name": "Pink Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1413": { + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Pink Strongbed", + "rootMetaDesc": "_Pink Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Strongbed Head", + "id": 1413, + "name": "_Pink Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1414": { + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Pink Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Strongbed Head", + "id": 1414, + "name": "_Pink Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1415": { + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Pink Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Strongbed Head", + "id": 1415, + "name": "_Pink Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1416": { + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Pink Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Strongbed Head", + "id": 1416, + "name": "_Pink Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1417": { + "displayName": { + "translationKey": "item:grayStrongbed" + }, + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Gray Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Strongbed", + "id": 1417, + "name": "Gray Strongbed", + "stackable": true, + "meta": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1418": { + "displayName": { + "translationKey": "item:grayStrongbed" + }, + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Strongbed", + "id": 1418, + "name": "Gray Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1419": { + "displayName": { + "translationKey": "item:grayStrongbed" + }, + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Strongbed", + "id": 1419, + "name": "Gray Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1420": { + "displayName": { + "translationKey": "item:grayStrongbed" + }, + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Strongbed", + "id": 1420, + "name": "Gray Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1421": { + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Gray Strongbed", + "rootMetaDesc": "_Gray Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Strongbed Head", + "id": 1421, + "name": "_Gray Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1422": { + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Strongbed Head", + "id": 1422, + "name": "_Gray Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1423": { + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Strongbed Head", + "id": 1423, + "name": "_Gray Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1424": { + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Strongbed Head", + "id": 1424, + "name": "_Gray Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1425": { + "displayName": { + "translationKey": "item:lightGrayStrongbed" + }, + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Light Gray Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Strongbed", + "id": 1425, + "name": "Light Gray Strongbed", + "stackable": true, + "meta": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1426": { + "displayName": { + "translationKey": "item:lightGrayStrongbed" + }, + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Strongbed", + "id": 1426, + "name": "Light Gray Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1427": { + "displayName": { + "translationKey": "item:lightGrayStrongbed" + }, + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Strongbed", + "id": 1427, + "name": "Light Gray Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1428": { + "displayName": { + "translationKey": "item:lightGrayStrongbed" + }, + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Strongbed", + "id": 1428, + "name": "Light Gray Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1429": { + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Gray Strongbed", + "rootMetaDesc": "_Light Gray Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Strongbed Head", + "id": 1429, + "name": "_Light Gray Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1430": { + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Strongbed Head", + "id": 1430, + "name": "_Light Gray Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1431": { + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Strongbed Head", + "id": 1431, + "name": "_Light Gray Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1432": { + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Strongbed Head", + "id": 1432, + "name": "_Light Gray Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1433": { + "displayName": { + "translationKey": "item:cyanStrongbed" + }, + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Cyan Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Strongbed", + "id": 1433, + "name": "Cyan Strongbed", + "stackable": true, + "meta": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1434": { + "displayName": { + "translationKey": "item:cyanStrongbed" + }, + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Strongbed", + "id": 1434, + "name": "Cyan Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1435": { + "displayName": { + "translationKey": "item:cyanStrongbed" + }, + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Strongbed", + "id": 1435, + "name": "Cyan Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1436": { + "displayName": { + "translationKey": "item:cyanStrongbed" + }, + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Strongbed", + "id": 1436, + "name": "Cyan Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1437": { + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Cyan Strongbed", + "rootMetaDesc": "_Cyan Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Strongbed Head", + "id": 1437, + "name": "_Cyan Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1438": { + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Cyan Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Strongbed Head", + "id": 1438, + "name": "_Cyan Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1439": { + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Cyan Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Strongbed Head", + "id": 1439, + "name": "_Cyan Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1440": { + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Cyan Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Strongbed Head", + "id": 1440, + "name": "_Cyan Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1441": { + "displayName": { + "translationKey": "item:purpleStrongbed" + }, + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Purple Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Strongbed", + "id": 1441, + "name": "Purple Strongbed", + "stackable": true, + "meta": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1442": { + "displayName": { + "translationKey": "item:purpleStrongbed" + }, + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Strongbed", + "id": 1442, + "name": "Purple Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1443": { + "displayName": { + "translationKey": "item:purpleStrongbed" + }, + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Strongbed", + "id": 1443, + "name": "Purple Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1444": { + "displayName": { + "translationKey": "item:purpleStrongbed" + }, + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Strongbed", + "id": 1444, + "name": "Purple Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1445": { + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Purple Strongbed", + "rootMetaDesc": "_Purple Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Strongbed Head", + "id": 1445, + "name": "_Purple Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1446": { + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Purple Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Strongbed Head", + "id": 1446, + "name": "_Purple Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1447": { + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Purple Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Strongbed Head", + "id": 1447, + "name": "_Purple Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1448": { + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Purple Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Strongbed Head", + "id": 1448, + "name": "_Purple Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1449": { + "displayName": { + "translationKey": "item:blueStrongbed" + }, + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Blue Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Strongbed", + "id": 1449, + "name": "Blue Strongbed", + "stackable": true, + "meta": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1450": { + "displayName": { + "translationKey": "item:blueStrongbed" + }, + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Strongbed", + "id": 1450, + "name": "Blue Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1451": { + "displayName": { + "translationKey": "item:blueStrongbed" + }, + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Strongbed", + "id": 1451, + "name": "Blue Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1452": { + "displayName": { + "translationKey": "item:blueStrongbed" + }, + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Strongbed", + "id": 1452, + "name": "Blue Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1453": { + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Blue Strongbed", + "rootMetaDesc": "_Blue Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Strongbed Head", + "id": 1453, + "name": "_Blue Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1454": { + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Strongbed Head", + "id": 1454, + "name": "_Blue Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1455": { + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Strongbed Head", + "id": 1455, + "name": "_Blue Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1456": { + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Strongbed Head", + "id": 1456, + "name": "_Blue Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1457": { + "displayName": { + "translationKey": "item:brownStrongbed" + }, + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Brown Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Strongbed", + "id": 1457, + "name": "Brown Strongbed", + "stackable": true, + "meta": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1458": { + "displayName": { + "translationKey": "item:brownStrongbed" + }, + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Strongbed", + "id": 1458, + "name": "Brown Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1459": { + "displayName": { + "translationKey": "item:brownStrongbed" + }, + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Strongbed", + "id": 1459, + "name": "Brown Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1460": { + "displayName": { + "translationKey": "item:brownStrongbed" + }, + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Strongbed", + "id": 1460, + "name": "Brown Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1461": { + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Brown Strongbed", + "rootMetaDesc": "_Brown Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Strongbed Head", + "id": 1461, + "name": "_Brown Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1462": { + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Brown Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Strongbed Head", + "id": 1462, + "name": "_Brown Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1463": { + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Brown Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Strongbed Head", + "id": 1463, + "name": "_Brown Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1464": { + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Brown Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Strongbed Head", + "id": 1464, + "name": "_Brown Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1465": { + "displayName": { + "translationKey": "item:greenStrongbed" + }, + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Green Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Strongbed", + "id": 1465, + "name": "Green Strongbed", + "stackable": true, + "meta": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1466": { + "displayName": { + "translationKey": "item:greenStrongbed" + }, + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Strongbed", + "id": 1466, + "name": "Green Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1467": { + "displayName": { + "translationKey": "item:greenStrongbed" + }, + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Strongbed", + "id": 1467, + "name": "Green Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1468": { + "displayName": { + "translationKey": "item:greenStrongbed" + }, + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Strongbed", + "id": 1468, + "name": "Green Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1469": { + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Green Strongbed", + "rootMetaDesc": "_Green Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Strongbed Head", + "id": 1469, + "name": "_Green Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1470": { + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Green Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Strongbed Head", + "id": 1470, + "name": "_Green Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1471": { + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Green Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Strongbed Head", + "id": 1471, + "name": "_Green Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1472": { + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Green Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Strongbed Head", + "id": 1472, + "name": "_Green Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1473": { + "displayName": { + "translationKey": "item:redStrongbed" + }, + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Red Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Strongbed", + "id": 1473, + "name": "Red Strongbed", + "stackable": true, + "meta": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1474": { + "displayName": { + "translationKey": "item:redStrongbed" + }, + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Strongbed", + "id": 1474, + "name": "Red Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1475": { + "displayName": { + "translationKey": "item:redStrongbed" + }, + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Strongbed", + "id": 1475, + "name": "Red Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1476": { + "displayName": { + "translationKey": "item:redStrongbed" + }, + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Strongbed", + "id": 1476, + "name": "Red Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1477": { + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Red Strongbed", + "rootMetaDesc": "_Red Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Strongbed Head", + "id": 1477, + "name": "_Red Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1478": { + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Red Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Strongbed Head", + "id": 1478, + "name": "_Red Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1479": { + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Red Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Strongbed Head", + "id": 1479, + "name": "_Red Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1480": { + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Red Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Strongbed Head", + "id": 1480, + "name": "_Red Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1481": { + "displayName": { + "translationKey": "item:blackStrongbed" + }, + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Black Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Strongbed", + "id": 1481, + "name": "Black Strongbed", + "stackable": true, + "meta": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1482": { + "displayName": { + "translationKey": "item:blackStrongbed" + }, + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Strongbed", + "id": 1482, + "name": "Black Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1483": { + "displayName": { + "translationKey": "item:blackStrongbed" + }, + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Strongbed", + "id": 1483, + "name": "Black Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1484": { + "displayName": { + "translationKey": "item:blackStrongbed" + }, + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Strongbed", + "id": 1484, + "name": "Black Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1485": { + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Black Strongbed", + "rootMetaDesc": "_Black Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Strongbed Head", + "id": 1485, + "name": "_Black Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1486": { + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Black Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Strongbed Head", + "id": 1486, + "name": "_Black Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1487": { + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Black Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Strongbed Head", + "id": 1487, + "name": "_Black Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1488": { + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Black Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Strongbed Head", + "id": 1488, + "name": "_Black Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1489": { + "ttb": 30000, + "itemTexture": "timed_spike_bomb", + "harvestType": "rock", + "drops": null, + "modelScale": 10, + "model": "CustomModel", + "blockModel": "Timed Spike Bomb Block", + "TB": false, + "id": 1489, + "name": "Timed Spike Bomb Block", + "stackable": true, + "meta": { + "rootName": "Timed Spike Bomb Block", + "rootId": 1489, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1490": { + "ttb": 30000, + "itemTexture": "timed_spike_bomb", + "harvestType": "rock", + "drops": null, + "modelScale": 10, + "model": "CustomModel", + "blockModel": "Timed Spike Bomb Block", + "TB": false, + "customModelInfo": { + "emissiveColor": [ + 255, + 255, + 255 + ] + }, + "id": 1490, + "name": "Timed Spike Bomb Block|Flashing", + "stackable": true, + "meta": { + "rootName": "Timed Spike Bomb Block", + "rootId": 1489, + "metaStr": "Flashing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1491": { + "displayName": { + "translationKey": "item:lava" + }, + "textureInfo": { + "colour": [ + 0.95, + 0.4, + 0.05, + 0.95 + ], + "animTextures": [ + "lava0", + "lava1", + "lava2", + "lava3", + "lava4", + "lava5", + "lava6", + "lava7" + ], + "animationInterval": 200 + }, + "xn": true, + "drops": null, + "harvestType": "rock", + "id": 1491, + "name": "Lava", + "stackable": true, + "meta": { + "rootName": "Lava", + "rootId": 1491, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 0, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + "1492": { + "displayName": { + "translationKey": "item:fatBrownMushroom" + }, + "ttb": 1200, + "itemTexture": "fatBrownMushroom", + "harvestType": "cuttable", + "blockModel": "Fat Brown Mushroom", + "blockModelItem": true, + "model": "CustomModel", + "modelScale": 10, + "heldItemScale": 10, + "description": { + "translationKey": "item:fatMushroomDescription" + }, + "id": 1492, + "name": "Fat Brown Mushroom", + "stackable": true, + "meta": { + "rootName": "Fat Brown Mushroom", + "rootId": 1492, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1493": { + "displayName": { + "translationKey": "item:fatRedMushroom" + }, + "ttb": 1200, + "itemTexture": "fatRedMushroom", + "harvestType": "cuttable", + "blockModel": "Fat Red Mushroom", + "blockModelItem": true, + "model": "CustomModel", + "modelScale": 10, + "heldItemScale": 10, + "description": { + "translationKey": "item:fatMushroomDescription" + }, + "id": 1493, + "name": "Fat Red Mushroom", + "stackable": true, + "meta": { + "rootName": "Fat Red Mushroom", + "rootId": 1493, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1494": { + "displayName": { + "translationKey": "item:chiliPepperBlock" + }, + "ttb": 600, + "textureInfo": [ + "chili_pepper_block_side", + "chili_pepper_block_top", + "chili_pepper_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 1494, + "name": "Chili Pepper Block", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Block", + "rootId": 1494, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 554, + 555, + 556 + ] + }, + "1495": { + "displayName": { + "translationKey": "item:chiliPepperSeeds" + }, + "ttb": 400, + "itemTexture": "chili_pepper_seeds", + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage0_model", + "description": { + "translationKey": "item:chiliPepperSeedsDescription" + }, + "id": 1495, + "name": "Chili Pepper Seeds", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Seeds", + "rootId": 1495, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1496": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage1_model", + "drops": "Chili Pepper Seeds", + "id": 1496, + "name": "Chili Pepper Plant_stage1", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage1", + "rootId": 1496, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1497": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage2_model", + "drops": "Chili Pepper Seeds", + "id": 1497, + "name": "Chili Pepper Plant_stage2", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage2", + "rootId": 1497, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1498": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage3_model", + "drops": "Chili Pepper Seeds", + "id": 1498, + "name": "Chili Pepper Plant_stage3", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage3", + "rootId": 1498, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1499": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage4_model", + "drops": "Chili Pepper Seeds", + "id": 1499, + "name": "Chili Pepper Plant_stage4", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage4", + "rootId": 1499, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1500": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage5_model", + "drops": "Chili Pepper Seeds", + "id": 1500, + "name": "Chili Pepper Plant", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant", + "rootId": 1500, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1501": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage5_model", + "drops": "Chili Pepper Seeds", + "onMinedAura": 10, + "id": 1501, + "name": "Chili Pepper Plant|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant", + "rootId": 1500, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1502": { + "displayName": { + "translationKey": "item:chiliPepperSeeds" + }, + "ttb": 400, + "itemTexture": "chili_pepper_seeds", + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage0_lava_model", + "description": { + "translationKey": "item:chiliPepperSeedsDescription" + }, + "drops": "Chili Pepper Seeds", + "id": 1502, + "name": "Chili Pepper Seeds|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Seeds", + "rootId": 1495, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1503": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage1_lava_model", + "drops": "Chili Pepper Seeds", + "id": 1503, + "name": "Chili Pepper Plant_stage1|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage1", + "rootId": 1496, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1504": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage2_lava_model", + "drops": "Chili Pepper Seeds", + "id": 1504, + "name": "Chili Pepper Plant_stage2|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage2", + "rootId": 1497, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1505": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage3_lava_model", + "drops": "Chili Pepper Seeds", + "id": 1505, + "name": "Chili Pepper Plant_stage3|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage3", + "rootId": 1498, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1506": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage4_lava_model", + "drops": "Chili Pepper Seeds", + "id": 1506, + "name": "Chili Pepper Plant_stage4|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage4", + "rootId": 1499, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1507": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage5_model", + "drops": "Chili Pepper Seeds", + "id": 1507, + "name": "Chili Pepper Plant_stage5", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage5", + "rootId": 1507, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1508": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage5_lava_model", + "drops": "Chili Pepper Seeds", + "id": 1508, + "name": "Chili Pepper Plant_stage5|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage5", + "rootId": 1507, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1509": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage6_lava_model", + "drops": "Chili Pepper Seeds", + "onMinedAura": 20, + "id": 1509, + "name": "Chili Pepper Plant|Lava|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant", + "rootId": 1500, + "metaStr": "Lava|FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1510": { + "displayName": { + "translationKey": "item:codeBlock" + }, + "ttb": 500000000000, + "textureInfo": "code_block", + "soundType": { + "break": "stone", + "place": "stone" + }, + "id": 1510, + "name": "Code Block", + "stackable": true, + "meta": { + "rootName": "Code Block", + "rootId": 1510, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 557 + }, + "1511": { + "displayName": { + "translationKey": "item:toxinBallBlock" + }, + "ttb": 1, + "textureInfo": "toxin_ball_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1511, + "name": "Toxin Ball Block", + "stackable": true, + "meta": { + "rootName": "Toxin Ball Block", + "rootId": 1511, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 558 + }, + "1512": { + "displayName": { + "translationKey": "item:yellowSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "yellow_spawn_block_top[rot[1", + "yellow_spawn_block_top[rot[2", + "yellow_spawn_block_top[rot[3", + "yellow_spawn_block_top[rot[4", + "yellow_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Yellow)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1512, + "name": "Spawn Block (Yellow)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 559, + 560, + 561, + 562, + 563 + ] + }, + "1513": { + "displayName": { + "translationKey": "item:whiteSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "white_spawn_block_top[rot[1", + "white_spawn_block_top[rot[2", + "white_spawn_block_top[rot[3", + "white_spawn_block_top[rot[4", + "white_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (White)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1513, + "name": "Spawn Block (White)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 564, + 565, + 566, + 567, + 568 + ] + }, + "1514": { + "displayName": { + "translationKey": "item:redSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "red_spawn_block_top[rot[1", + "red_spawn_block_top[rot[2", + "red_spawn_block_top[rot[3", + "red_spawn_block_top[rot[4", + "red_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Red)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1514, + "name": "Spawn Block (Red)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 569, + 570, + 571, + 572, + 573 + ] + }, + "1515": { + "displayName": { + "translationKey": "item:purpleSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "purple_spawn_block_top[rot[1", + "purple_spawn_block_top[rot[2", + "purple_spawn_block_top[rot[3", + "purple_spawn_block_top[rot[4", + "purple_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Purple)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1515, + "name": "Spawn Block (Purple)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 574, + 575, + 576, + 577, + 578 + ] + }, + "1516": { + "displayName": { + "translationKey": "item:pinkSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "pink_spawn_block_top[rot[1", + "pink_spawn_block_top[rot[2", + "pink_spawn_block_top[rot[3", + "pink_spawn_block_top[rot[4", + "pink_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Pink)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1516, + "name": "Spawn Block (Pink)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 579, + 580, + 581, + 582, + 583 + ] + }, + "1517": { + "displayName": { + "translationKey": "item:orangeSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "orange_spawn_block_top[rot[1", + "orange_spawn_block_top[rot[2", + "orange_spawn_block_top[rot[3", + "orange_spawn_block_top[rot[4", + "orange_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Orange)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1517, + "name": "Spawn Block (Orange)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 584, + 585, + 586, + 587, + 588 + ] + }, + "1518": { + "displayName": { + "translationKey": "item:magentaSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "magenta_spawn_block_top[rot[1", + "magenta_spawn_block_top[rot[2", + "magenta_spawn_block_top[rot[3", + "magenta_spawn_block_top[rot[4", + "magenta_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Magenta)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1518, + "name": "Spawn Block (Magenta)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 589, + 590, + 591, + 592, + 593 + ] + }, + "1519": { + "displayName": { + "translationKey": "item:limeSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "lime_spawn_block_top[rot[1", + "lime_spawn_block_top[rot[2", + "lime_spawn_block_top[rot[3", + "lime_spawn_block_top[rot[4", + "lime_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Lime)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1519, + "name": "Spawn Block (Lime)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 594, + 595, + 596, + 597, + 598 + ] + }, + "1520": { + "displayName": { + "translationKey": "item:lightGraySpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "light_gray_spawn_block_top[rot[1", + "light_gray_spawn_block_top[rot[2", + "light_gray_spawn_block_top[rot[3", + "light_gray_spawn_block_top[rot[4", + "light_gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Light Gray)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1520, + "name": "Spawn Block (Light Gray)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 599, + 600, + 601, + 602, + 603 + ] + }, + "1521": { + "displayName": { + "translationKey": "item:lightBlueSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "light_blue_spawn_block_top[rot[1", + "light_blue_spawn_block_top[rot[2", + "light_blue_spawn_block_top[rot[3", + "light_blue_spawn_block_top[rot[4", + "light_blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Light Blue)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1521, + "name": "Spawn Block (Light Blue)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 604, + 605, + 606, + 607, + 608 + ] + }, + "1522": { + "displayName": { + "translationKey": "item:greenSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "green_spawn_block_top[rot[1", + "green_spawn_block_top[rot[2", + "green_spawn_block_top[rot[3", + "green_spawn_block_top[rot[4", + "green_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Green)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1522, + "name": "Spawn Block (Green)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 609, + 610, + 611, + 612, + 613 + ] + }, + "1523": { + "displayName": { + "translationKey": "item:graySpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "gray_spawn_block_top[rot[1", + "gray_spawn_block_top[rot[2", + "gray_spawn_block_top[rot[3", + "gray_spawn_block_top[rot[4", + "gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Gray)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1523, + "name": "Spawn Block (Gray)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 614, + 615, + 616, + 617, + 618 + ] + }, + "1524": { + "displayName": { + "translationKey": "item:cyanSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "cyan_spawn_block_top[rot[1", + "cyan_spawn_block_top[rot[2", + "cyan_spawn_block_top[rot[3", + "cyan_spawn_block_top[rot[4", + "cyan_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Cyan)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1524, + "name": "Spawn Block (Cyan)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 619, + 620, + 621, + 622, + 623 + ] + }, + "1525": { + "displayName": { + "translationKey": "item:brownSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "brown_spawn_block_top[rot[1", + "brown_spawn_block_top[rot[2", + "brown_spawn_block_top[rot[3", + "brown_spawn_block_top[rot[4", + "brown_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Brown)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1525, + "name": "Spawn Block (Brown)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 624, + 625, + 626, + 627, + 628 + ] + }, + "1526": { + "displayName": { + "translationKey": "item:blueSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "blue_spawn_block_top[rot[1", + "blue_spawn_block_top[rot[2", + "blue_spawn_block_top[rot[3", + "blue_spawn_block_top[rot[4", + "blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Blue)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1526, + "name": "Spawn Block (Blue)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 629, + 630, + 631, + 632, + 633 + ] + }, + "1527": { + "displayName": { + "translationKey": "item:blackSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "black_spawn_block_top[rot[1", + "black_spawn_block_top[rot[2", + "black_spawn_block_top[rot[3", + "black_spawn_block_top[rot[4", + "black_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Black)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1527, + "name": "Spawn Block (Black)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 634, + 635, + 636, + 637, + 638 + ] + }, + "1528": { + "ttb": 1500, + "textureInfo": [ + "yellow_spawn_block_top[rot[1", + "yellow_spawn_block_top[rot[2", + "yellow_spawn_block_top[rot[3", + "yellow_spawn_block_top[rot[4", + "yellow_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1528, + "name": "Spawn Block (Yellow)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 559, + 560, + 561, + 562, + 563 + ] + }, + "1529": { + "ttb": 1500, + "textureInfo": [ + "white_spawn_block_top[rot[1", + "white_spawn_block_top[rot[2", + "white_spawn_block_top[rot[3", + "white_spawn_block_top[rot[4", + "white_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1529, + "name": "Spawn Block (White)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 564, + 565, + 566, + 567, + 568 + ] + }, + "1530": { + "ttb": 1500, + "textureInfo": [ + "red_spawn_block_top[rot[1", + "red_spawn_block_top[rot[2", + "red_spawn_block_top[rot[3", + "red_spawn_block_top[rot[4", + "red_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1530, + "name": "Spawn Block (Red)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 569, + 570, + 571, + 572, + 573 + ] + }, + "1531": { + "ttb": 1500, + "textureInfo": [ + "purple_spawn_block_top[rot[1", + "purple_spawn_block_top[rot[2", + "purple_spawn_block_top[rot[3", + "purple_spawn_block_top[rot[4", + "purple_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1531, + "name": "Spawn Block (Purple)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 574, + 575, + 576, + 577, + 578 + ] + }, + "1532": { + "ttb": 1500, + "textureInfo": [ + "pink_spawn_block_top[rot[1", + "pink_spawn_block_top[rot[2", + "pink_spawn_block_top[rot[3", + "pink_spawn_block_top[rot[4", + "pink_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1532, + "name": "Spawn Block (Pink)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 579, + 580, + 581, + 582, + 583 + ] + }, + "1533": { + "ttb": 1500, + "textureInfo": [ + "orange_spawn_block_top[rot[1", + "orange_spawn_block_top[rot[2", + "orange_spawn_block_top[rot[3", + "orange_spawn_block_top[rot[4", + "orange_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1533, + "name": "Spawn Block (Orange)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 584, + 585, + 586, + 587, + 588 + ] + }, + "1534": { + "ttb": 1500, + "textureInfo": [ + "magenta_spawn_block_top[rot[1", + "magenta_spawn_block_top[rot[2", + "magenta_spawn_block_top[rot[3", + "magenta_spawn_block_top[rot[4", + "magenta_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1534, + "name": "Spawn Block (Magenta)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 589, + 590, + 591, + 592, + 593 + ] + }, + "1535": { + "ttb": 1500, + "textureInfo": [ + "lime_spawn_block_top[rot[1", + "lime_spawn_block_top[rot[2", + "lime_spawn_block_top[rot[3", + "lime_spawn_block_top[rot[4", + "lime_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1535, + "name": "Spawn Block (Lime)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 594, + 595, + 596, + 597, + 598 + ] + }, + "1536": { + "ttb": 1500, + "textureInfo": [ + "light_gray_spawn_block_top[rot[1", + "light_gray_spawn_block_top[rot[2", + "light_gray_spawn_block_top[rot[3", + "light_gray_spawn_block_top[rot[4", + "light_gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1536, + "name": "Spawn Block (Light Gray)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 599, + 600, + 601, + 602, + 603 + ] + }, + "1537": { + "ttb": 1500, + "textureInfo": [ + "light_blue_spawn_block_top[rot[1", + "light_blue_spawn_block_top[rot[2", + "light_blue_spawn_block_top[rot[3", + "light_blue_spawn_block_top[rot[4", + "light_blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1537, + "name": "Spawn Block (Light Blue)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 604, + 605, + 606, + 607, + 608 + ] + }, + "1538": { + "ttb": 1500, + "textureInfo": [ + "green_spawn_block_top[rot[1", + "green_spawn_block_top[rot[2", + "green_spawn_block_top[rot[3", + "green_spawn_block_top[rot[4", + "green_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1538, + "name": "Spawn Block (Green)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 609, + 610, + 611, + 612, + 613 + ] + }, + "1539": { + "ttb": 1500, + "textureInfo": [ + "gray_spawn_block_top[rot[1", + "gray_spawn_block_top[rot[2", + "gray_spawn_block_top[rot[3", + "gray_spawn_block_top[rot[4", + "gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1539, + "name": "Spawn Block (Gray)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 614, + 615, + 616, + 617, + 618 + ] + }, + "1540": { + "ttb": 1500, + "textureInfo": [ + "cyan_spawn_block_top[rot[1", + "cyan_spawn_block_top[rot[2", + "cyan_spawn_block_top[rot[3", + "cyan_spawn_block_top[rot[4", + "cyan_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1540, + "name": "Spawn Block (Cyan)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 619, + 620, + 621, + 622, + 623 + ] + }, + "1541": { + "ttb": 1500, + "textureInfo": [ + "brown_spawn_block_top[rot[1", + "brown_spawn_block_top[rot[2", + "brown_spawn_block_top[rot[3", + "brown_spawn_block_top[rot[4", + "brown_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1541, + "name": "Spawn Block (Brown)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 624, + 625, + 626, + 627, + 628 + ] + }, + "1542": { + "ttb": 1500, + "textureInfo": [ + "blue_spawn_block_top[rot[1", + "blue_spawn_block_top[rot[2", + "blue_spawn_block_top[rot[3", + "blue_spawn_block_top[rot[4", + "blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1542, + "name": "Spawn Block (Blue)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 629, + 630, + 631, + 632, + 633 + ] + }, + "1543": { + "ttb": 1500, + "textureInfo": [ + "black_spawn_block_top[rot[1", + "black_spawn_block_top[rot[2", + "black_spawn_block_top[rot[3", + "black_spawn_block_top[rot[4", + "black_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1543, + "name": "Spawn Block (Black)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 634, + 635, + 636, + 637, + 638 + ] + }, + "1544": { + "ttb": 1500, + "textureInfo": [ + "yellow_spawn_block_top[rot[1", + "yellow_spawn_block_top[rot[2", + "yellow_spawn_block_top[rot[3", + "yellow_spawn_block_top[rot[4", + "yellow_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1544, + "name": "Spawn Block (Yellow)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 559, + 560, + 561, + 562, + 563 + ] + }, + "1545": { + "ttb": 1500, + "textureInfo": [ + "white_spawn_block_top[rot[1", + "white_spawn_block_top[rot[2", + "white_spawn_block_top[rot[3", + "white_spawn_block_top[rot[4", + "white_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1545, + "name": "Spawn Block (White)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 564, + 565, + 566, + 567, + 568 + ] + }, + "1546": { + "ttb": 1500, + "textureInfo": [ + "red_spawn_block_top[rot[1", + "red_spawn_block_top[rot[2", + "red_spawn_block_top[rot[3", + "red_spawn_block_top[rot[4", + "red_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1546, + "name": "Spawn Block (Red)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 569, + 570, + 571, + 572, + 573 + ] + }, + "1547": { + "ttb": 1500, + "textureInfo": [ + "purple_spawn_block_top[rot[1", + "purple_spawn_block_top[rot[2", + "purple_spawn_block_top[rot[3", + "purple_spawn_block_top[rot[4", + "purple_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1547, + "name": "Spawn Block (Purple)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 574, + 575, + 576, + 577, + 578 + ] + }, + "1548": { + "ttb": 1500, + "textureInfo": [ + "pink_spawn_block_top[rot[1", + "pink_spawn_block_top[rot[2", + "pink_spawn_block_top[rot[3", + "pink_spawn_block_top[rot[4", + "pink_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1548, + "name": "Spawn Block (Pink)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 579, + 580, + 581, + 582, + 583 + ] + }, + "1549": { + "ttb": 1500, + "textureInfo": [ + "orange_spawn_block_top[rot[1", + "orange_spawn_block_top[rot[2", + "orange_spawn_block_top[rot[3", + "orange_spawn_block_top[rot[4", + "orange_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1549, + "name": "Spawn Block (Orange)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 584, + 585, + 586, + 587, + 588 + ] + }, + "1550": { + "ttb": 1500, + "textureInfo": [ + "magenta_spawn_block_top[rot[1", + "magenta_spawn_block_top[rot[2", + "magenta_spawn_block_top[rot[3", + "magenta_spawn_block_top[rot[4", + "magenta_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1550, + "name": "Spawn Block (Magenta)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 589, + 590, + 591, + 592, + 593 + ] + }, + "1551": { + "ttb": 1500, + "textureInfo": [ + "lime_spawn_block_top[rot[1", + "lime_spawn_block_top[rot[2", + "lime_spawn_block_top[rot[3", + "lime_spawn_block_top[rot[4", + "lime_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1551, + "name": "Spawn Block (Lime)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 594, + 595, + 596, + 597, + 598 + ] + }, + "1552": { + "ttb": 1500, + "textureInfo": [ + "light_gray_spawn_block_top[rot[1", + "light_gray_spawn_block_top[rot[2", + "light_gray_spawn_block_top[rot[3", + "light_gray_spawn_block_top[rot[4", + "light_gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1552, + "name": "Spawn Block (Light Gray)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 599, + 600, + 601, + 602, + 603 + ] + }, + "1553": { + "ttb": 1500, + "textureInfo": [ + "light_blue_spawn_block_top[rot[1", + "light_blue_spawn_block_top[rot[2", + "light_blue_spawn_block_top[rot[3", + "light_blue_spawn_block_top[rot[4", + "light_blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1553, + "name": "Spawn Block (Light Blue)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 604, + 605, + 606, + 607, + 608 + ] + }, + "1554": { + "ttb": 1500, + "textureInfo": [ + "green_spawn_block_top[rot[1", + "green_spawn_block_top[rot[2", + "green_spawn_block_top[rot[3", + "green_spawn_block_top[rot[4", + "green_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1554, + "name": "Spawn Block (Green)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 609, + 610, + 611, + 612, + 613 + ] + }, + "1555": { + "ttb": 1500, + "textureInfo": [ + "gray_spawn_block_top[rot[1", + "gray_spawn_block_top[rot[2", + "gray_spawn_block_top[rot[3", + "gray_spawn_block_top[rot[4", + "gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1555, + "name": "Spawn Block (Gray)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 614, + 615, + 616, + 617, + 618 + ] + }, + "1556": { + "ttb": 1500, + "textureInfo": [ + "cyan_spawn_block_top[rot[1", + "cyan_spawn_block_top[rot[2", + "cyan_spawn_block_top[rot[3", + "cyan_spawn_block_top[rot[4", + "cyan_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1556, + "name": "Spawn Block (Cyan)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 619, + 620, + 621, + 622, + 623 + ] + }, + "1557": { + "ttb": 1500, + "textureInfo": [ + "brown_spawn_block_top[rot[1", + "brown_spawn_block_top[rot[2", + "brown_spawn_block_top[rot[3", + "brown_spawn_block_top[rot[4", + "brown_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1557, + "name": "Spawn Block (Brown)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 624, + 625, + 626, + 627, + 628 + ] + }, + "1558": { + "ttb": 1500, + "textureInfo": [ + "blue_spawn_block_top[rot[1", + "blue_spawn_block_top[rot[2", + "blue_spawn_block_top[rot[3", + "blue_spawn_block_top[rot[4", + "blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1558, + "name": "Spawn Block (Blue)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 629, + 630, + 631, + 632, + 633 + ] + }, + "1559": { + "ttb": 1500, + "textureInfo": [ + "black_spawn_block_top[rot[1", + "black_spawn_block_top[rot[2", + "black_spawn_block_top[rot[3", + "black_spawn_block_top[rot[4", + "black_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1559, + "name": "Spawn Block (Black)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 634, + 635, + 636, + 637, + 638 + ] + }, + "1560": { + "ttb": 1500, + "textureInfo": [ + "yellow_spawn_block_top[rot[1", + "yellow_spawn_block_top[rot[2", + "yellow_spawn_block_top[rot[3", + "yellow_spawn_block_top[rot[4", + "yellow_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1560, + "name": "Spawn Block (Yellow)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 559, + 560, + 561, + 562, + 563 + ] + }, + "1561": { + "ttb": 1500, + "textureInfo": [ + "white_spawn_block_top[rot[1", + "white_spawn_block_top[rot[2", + "white_spawn_block_top[rot[3", + "white_spawn_block_top[rot[4", + "white_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1561, + "name": "Spawn Block (White)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 564, + 565, + 566, + 567, + 568 + ] + }, + "1562": { + "ttb": 1500, + "textureInfo": [ + "red_spawn_block_top[rot[1", + "red_spawn_block_top[rot[2", + "red_spawn_block_top[rot[3", + "red_spawn_block_top[rot[4", + "red_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1562, + "name": "Spawn Block (Red)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 569, + 570, + 571, + 572, + 573 + ] + }, + "1563": { + "ttb": 1500, + "textureInfo": [ + "purple_spawn_block_top[rot[1", + "purple_spawn_block_top[rot[2", + "purple_spawn_block_top[rot[3", + "purple_spawn_block_top[rot[4", + "purple_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1563, + "name": "Spawn Block (Purple)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 574, + 575, + 576, + 577, + 578 + ] + }, + "1564": { + "ttb": 1500, + "textureInfo": [ + "pink_spawn_block_top[rot[1", + "pink_spawn_block_top[rot[2", + "pink_spawn_block_top[rot[3", + "pink_spawn_block_top[rot[4", + "pink_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1564, + "name": "Spawn Block (Pink)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 579, + 580, + 581, + 582, + 583 + ] + }, + "1565": { + "ttb": 1500, + "textureInfo": [ + "orange_spawn_block_top[rot[1", + "orange_spawn_block_top[rot[2", + "orange_spawn_block_top[rot[3", + "orange_spawn_block_top[rot[4", + "orange_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1565, + "name": "Spawn Block (Orange)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 584, + 585, + 586, + 587, + 588 + ] + }, + "1566": { + "ttb": 1500, + "textureInfo": [ + "magenta_spawn_block_top[rot[1", + "magenta_spawn_block_top[rot[2", + "magenta_spawn_block_top[rot[3", + "magenta_spawn_block_top[rot[4", + "magenta_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1566, + "name": "Spawn Block (Magenta)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 589, + 590, + 591, + 592, + 593 + ] + }, + "1567": { + "ttb": 1500, + "textureInfo": [ + "lime_spawn_block_top[rot[1", + "lime_spawn_block_top[rot[2", + "lime_spawn_block_top[rot[3", + "lime_spawn_block_top[rot[4", + "lime_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1567, + "name": "Spawn Block (Lime)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 594, + 595, + 596, + 597, + 598 + ] + }, + "1568": { + "ttb": 1500, + "textureInfo": [ + "light_gray_spawn_block_top[rot[1", + "light_gray_spawn_block_top[rot[2", + "light_gray_spawn_block_top[rot[3", + "light_gray_spawn_block_top[rot[4", + "light_gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1568, + "name": "Spawn Block (Light Gray)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 599, + 600, + 601, + 602, + 603 + ] + }, + "1569": { + "ttb": 1500, + "textureInfo": [ + "light_blue_spawn_block_top[rot[1", + "light_blue_spawn_block_top[rot[2", + "light_blue_spawn_block_top[rot[3", + "light_blue_spawn_block_top[rot[4", + "light_blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1569, + "name": "Spawn Block (Light Blue)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 604, + 605, + 606, + 607, + 608 + ] + }, + "1570": { + "ttb": 1500, + "textureInfo": [ + "green_spawn_block_top[rot[1", + "green_spawn_block_top[rot[2", + "green_spawn_block_top[rot[3", + "green_spawn_block_top[rot[4", + "green_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1570, + "name": "Spawn Block (Green)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 609, + 610, + 611, + 612, + 613 + ] + }, + "1571": { + "ttb": 1500, + "textureInfo": [ + "gray_spawn_block_top[rot[1", + "gray_spawn_block_top[rot[2", + "gray_spawn_block_top[rot[3", + "gray_spawn_block_top[rot[4", + "gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1571, + "name": "Spawn Block (Gray)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 614, + 615, + 616, + 617, + 618 + ] + }, + "1572": { + "ttb": 1500, + "textureInfo": [ + "cyan_spawn_block_top[rot[1", + "cyan_spawn_block_top[rot[2", + "cyan_spawn_block_top[rot[3", + "cyan_spawn_block_top[rot[4", + "cyan_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1572, + "name": "Spawn Block (Cyan)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 619, + 620, + 621, + 622, + 623 + ] + }, + "1573": { + "ttb": 1500, + "textureInfo": [ + "brown_spawn_block_top[rot[1", + "brown_spawn_block_top[rot[2", + "brown_spawn_block_top[rot[3", + "brown_spawn_block_top[rot[4", + "brown_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1573, + "name": "Spawn Block (Brown)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 624, + 625, + 626, + 627, + 628 + ] + }, + "1574": { + "ttb": 1500, + "textureInfo": [ + "blue_spawn_block_top[rot[1", + "blue_spawn_block_top[rot[2", + "blue_spawn_block_top[rot[3", + "blue_spawn_block_top[rot[4", + "blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1574, + "name": "Spawn Block (Blue)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 629, + 630, + 631, + 632, + 633 + ] + }, + "1575": { + "ttb": 1500, + "textureInfo": [ + "black_spawn_block_top[rot[1", + "black_spawn_block_top[rot[2", + "black_spawn_block_top[rot[3", + "black_spawn_block_top[rot[4", + "black_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1575, + "name": "Spawn Block (Black)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 634, + 635, + 636, + 637, + 638 + ] + }, + "1576": { + "displayName": { + "translationKey": "item:checkpointBlock" + }, + "ttb": 1500, + "textureInfo": [ + "checkpoint_block[rot[1", + "checkpoint_block[rot[2", + "checkpoint_block[rot[3", + "checkpoint_block[rot[4" + ], + "harvestType": "rock", + "rootMetaDesc": "Checkpoint Block|meta|rot1", + "description": { + "translationKey": "item:checkpointBlockDescription" + }, + "texturePerSide": [ + 0, + 0, + 2, + 0, + 0, + 0 + ], + "id": 1576, + "name": "Checkpoint Block", + "stackable": true, + "meta": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 639, + 640, + 641, + 642 + ] + }, + "1577": { + "displayName": { + "translationKey": "item:checkpointBlock" + }, + "ttb": 1500, + "textureInfo": [ + "checkpoint_block[rot[1", + "checkpoint_block[rot[2", + "checkpoint_block[rot[3", + "checkpoint_block[rot[4" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:checkpointBlockDescription" + }, + "texturePerSide": [ + 0, + 0, + 3, + 0, + 0, + 0 + ], + "id": 1577, + "name": "Checkpoint Block|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 639, + 640, + 641, + 642 + ] + }, + "1578": { + "displayName": { + "translationKey": "item:checkpointBlock" + }, + "ttb": 1500, + "textureInfo": [ + "checkpoint_block[rot[1", + "checkpoint_block[rot[2", + "checkpoint_block[rot[3", + "checkpoint_block[rot[4" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:checkpointBlockDescription" + }, + "texturePerSide": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "id": 1578, + "name": "Checkpoint Block|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 639, + 640, + 641, + 642 + ] + }, + "1579": { + "displayName": { + "translationKey": "item:checkpointBlock" + }, + "ttb": 1500, + "textureInfo": [ + "checkpoint_block[rot[1", + "checkpoint_block[rot[2", + "checkpoint_block[rot[3", + "checkpoint_block[rot[4" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:checkpointBlockDescription" + }, + "texturePerSide": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "id": 1579, + "name": "Checkpoint Block|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 639, + 640, + 641, + 642 + ] + }, + "1580": { + "displayName": { + "translationKey": "item:customLobbyBlock" + }, + "ttb": 1500, + "textureInfo": [ + "custom_lobby_block_top[rot[1", + "custom_lobby_block_top[rot[2", + "custom_lobby_block_top[rot[3", + "custom_lobby_block_top[rot[4", + "custom_lobby_block_side" + ], + "harvestType": "rock", + "rootMetaDesc": "Custom Lobby Block|meta|rot1", + "description": { + "translationKey": "item:customLobbyBlockDescription" + }, + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "id": 1580, + "name": "Custom Lobby Block", + "stackable": true, + "meta": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 643, + 644, + 645, + 646, + 647 + ] + }, + "1581": { + "displayName": { + "translationKey": "item:customLobbyBlock" + }, + "ttb": 1500, + "textureInfo": [ + "custom_lobby_block_top[rot[1", + "custom_lobby_block_top[rot[2", + "custom_lobby_block_top[rot[3", + "custom_lobby_block_top[rot[4", + "custom_lobby_block_side" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:customLobbyBlockDescription" + }, + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "id": 1581, + "name": "Custom Lobby Block|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 643, + 644, + 645, + 646, + 647 + ] + }, + "1582": { + "displayName": { + "translationKey": "item:customLobbyBlock" + }, + "ttb": 1500, + "textureInfo": [ + "custom_lobby_block_top[rot[1", + "custom_lobby_block_top[rot[2", + "custom_lobby_block_top[rot[3", + "custom_lobby_block_top[rot[4", + "custom_lobby_block_side" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:customLobbyBlockDescription" + }, + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "id": 1582, + "name": "Custom Lobby Block|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 643, + 644, + 645, + 646, + 647 + ] + }, + "1583": { + "displayName": { + "translationKey": "item:customLobbyBlock" + }, + "ttb": 1500, + "textureInfo": [ + "custom_lobby_block_top[rot[1", + "custom_lobby_block_top[rot[2", + "custom_lobby_block_top[rot[3", + "custom_lobby_block_top[rot[4", + "custom_lobby_block_side" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:customLobbyBlockDescription" + }, + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "id": 1583, + "name": "Custom Lobby Block|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 643, + 644, + 645, + 646, + 647 + ] + }, + "1584": { + "displayName": { + "translationKey": "item:redGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "red_gen_spawn_top", + "red_gen_spawn_coal", + "red_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1584, + "name": "Generator Spawn Block (Red)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Red)", + "rootId": 1584, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 648, + 649, + 650 + ] + }, + "1585": { + "displayName": { + "translationKey": "item:blueGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "blue_gen_spawn_top", + "blue_gen_spawn_coal", + "blue_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1585, + "name": "Generator Spawn Block (Blue)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Blue)", + "rootId": 1585, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 651, + 652, + 653 + ] + }, + "1586": { + "displayName": { + "translationKey": "item:limeGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "lime_gen_spawn_top", + "lime_gen_spawn_coal", + "lime_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1586, + "name": "Generator Spawn Block (Lime)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Lime)", + "rootId": 1586, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 654, + 655, + 656 + ] + }, + "1587": { + "displayName": { + "translationKey": "item:yellowGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "yellow_gen_spawn_top", + "yellow_gen_spawn_coal", + "yellow_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1587, + "name": "Generator Spawn Block (Yellow)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Yellow)", + "rootId": 1587, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 657, + 658, + 659 + ] + }, + "1588": { + "displayName": { + "translationKey": "item:cyanGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "cyan_gen_spawn_top", + "cyan_gen_spawn_coal", + "cyan_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1588, + "name": "Generator Spawn Block (Cyan)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Cyan)", + "rootId": 1588, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 660, + 661, + 662 + ] + }, + "1589": { + "displayName": { + "translationKey": "item:whiteGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "white_gen_spawn_top", + "white_gen_spawn_coal", + "white_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1589, + "name": "Generator Spawn Block (White)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (White)", + "rootId": 1589, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 663, + 664, + 665 + ] + }, + "1590": { + "displayName": { + "translationKey": "item:pinkGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "pink_gen_spawn_top", + "pink_gen_spawn_coal", + "pink_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1590, + "name": "Generator Spawn Block (Pink)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Pink)", + "rootId": 1590, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 666, + 667, + 668 + ] + }, + "1591": { + "displayName": { + "translationKey": "item:grayGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "gray_gen_spawn_top", + "gray_gen_spawn_coal", + "gray_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1591, + "name": "Generator Spawn Block (Gray)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Gray)", + "rootId": 1591, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 669, + 670, + 671 + ] + }, + "1592": { + "displayName": { + "translationKey": "item:traderShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_trader_spawn_top[rot[1", + "shop_trader_spawn_top[rot[2", + "shop_trader_spawn_top[rot[3", + "shop_trader_spawn_top[rot[4", + "shop_trader_spawn_side", + "shop_trader_spawn_face" + ], + "harvestType": "rock", + "rootMetaDesc": "Trader Shop Spawn Block|meta|rot1", + "description": { + "translationKey": "item:traderShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 2, + 4, + 4, + 4 + ], + "id": 1592, + "name": "Trader Shop Spawn Block", + "stackable": true, + "meta": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 672, + 673, + 674, + 675, + 676, + 677 + ] + }, + "1593": { + "displayName": { + "translationKey": "item:traderShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_trader_spawn_top[rot[1", + "shop_trader_spawn_top[rot[2", + "shop_trader_spawn_top[rot[3", + "shop_trader_spawn_top[rot[4", + "shop_trader_spawn_side", + "shop_trader_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:traderShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 3, + 4, + 4, + 4 + ], + "id": 1593, + "name": "Trader Shop Spawn Block|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 672, + 673, + 674, + 675, + 676, + 677 + ] + }, + "1594": { + "displayName": { + "translationKey": "item:traderShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_trader_spawn_top[rot[1", + "shop_trader_spawn_top[rot[2", + "shop_trader_spawn_top[rot[3", + "shop_trader_spawn_top[rot[4", + "shop_trader_spawn_side", + "shop_trader_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:traderShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 0, + 4, + 4, + 4 + ], + "id": 1594, + "name": "Trader Shop Spawn Block|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 672, + 673, + 674, + 675, + 676, + 677 + ] + }, + "1595": { + "displayName": { + "translationKey": "item:traderShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_trader_spawn_top[rot[1", + "shop_trader_spawn_top[rot[2", + "shop_trader_spawn_top[rot[3", + "shop_trader_spawn_top[rot[4", + "shop_trader_spawn_side", + "shop_trader_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:traderShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 1, + 4, + 4, + 4 + ], + "id": 1595, + "name": "Trader Shop Spawn Block|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 672, + 673, + 674, + 675, + 676, + 677 + ] + }, + "1596": { + "displayName": { + "translationKey": "item:wizardShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_wizard_spawn_top[rot[1", + "shop_wizard_spawn_top[rot[2", + "shop_wizard_spawn_top[rot[3", + "shop_wizard_spawn_top[rot[4", + "shop_wizard_spawn_side", + "shop_wizard_spawn_face" + ], + "harvestType": "rock", + "rootMetaDesc": "Wizard Shop Spawn Block|meta|rot1", + "description": { + "translationKey": "item:wizardShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 2, + 4, + 4, + 4 + ], + "id": 1596, + "name": "Wizard Shop Spawn Block", + "stackable": true, + "meta": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 678, + 679, + 680, + 681, + 682, + 683 + ] + }, + "1597": { + "displayName": { + "translationKey": "item:wizardShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_wizard_spawn_top[rot[1", + "shop_wizard_spawn_top[rot[2", + "shop_wizard_spawn_top[rot[3", + "shop_wizard_spawn_top[rot[4", + "shop_wizard_spawn_side", + "shop_wizard_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:wizardShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 3, + 4, + 4, + 4 + ], + "id": 1597, + "name": "Wizard Shop Spawn Block|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 678, + 679, + 680, + 681, + 682, + 683 + ] + }, + "1598": { + "displayName": { + "translationKey": "item:wizardShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_wizard_spawn_top[rot[1", + "shop_wizard_spawn_top[rot[2", + "shop_wizard_spawn_top[rot[3", + "shop_wizard_spawn_top[rot[4", + "shop_wizard_spawn_side", + "shop_wizard_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:wizardShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 0, + 4, + 4, + 4 + ], + "id": 1598, + "name": "Wizard Shop Spawn Block|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 678, + 679, + 680, + 681, + 682, + 683 + ] + }, + "1599": { + "displayName": { + "translationKey": "item:wizardShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_wizard_spawn_top[rot[1", + "shop_wizard_spawn_top[rot[2", + "shop_wizard_spawn_top[rot[3", + "shop_wizard_spawn_top[rot[4", + "shop_wizard_spawn_side", + "shop_wizard_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:wizardShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 1, + 4, + 4, + 4 + ], + "id": 1599, + "name": "Wizard Shop Spawn Block|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 678, + 679, + 680, + 681, + 682, + 683 + ] + }, + "1600": { + "displayName": { + "translationKey": "item:diamondGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "diamond_gen_spawn_top", + "diamond_gen_spawn_side" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:diamondGeneratorSpawnBlockDescription" + }, + "id": 1600, + "name": "Generator Spawn Block (Diamond)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Diamond)", + "rootId": 1600, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 684, + 685 + ] + }, + "1601": { + "displayName": { + "translationKey": "item:moonstoneGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "moonstone_gen_spawn_top", + "moonstone_gen_spawn_side" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:moonstoneGeneratorSpawnBlockDescription" + }, + "id": 1601, + "name": "Generator Spawn Block (Moonstone)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Moonstone)", + "rootId": 1601, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 686, + 687 + ] + }, + "1602": { + "displayName": { + "translationKey": "item:oreGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "ore_gen_spawn_top", + "ore_gen_spawn_side" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:oreGeneratorSpawnBlockDescription" + }, + "id": 1602, + "name": "Generator Spawn Block (Ore)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Ore)", + "rootId": 1602, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 688, + 689 + ] + }, + "1603": { + "displayName": { + "translationKey": "item:redGoalBlock" + }, + "ttb": 1500, + "textureInfo": [ + "explosive_paint_red_top", + "red_spawn_block_top[rot[3" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:goalBlockDescription" + }, + "id": 1603, + "name": "Goal Block (Red)", + "stackable": true, + "meta": { + "rootName": "Goal Block (Red)", + "rootId": 1603, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 479, + 571 + ] + }, + "1604": { + "displayName": { + "translationKey": "item:blueGoalBlock" + }, + "ttb": 1500, + "textureInfo": [ + "explosive_paint_blue_top", + "blue_spawn_block_top[rot[3" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:goalBlockDescription" + }, + "id": 1604, + "name": "Goal Block (Blue)", + "stackable": true, + "meta": { + "rootName": "Goal Block (Blue)", + "rootId": 1604, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 503, + 631 + ] + }, + "1605": { + "displayName": { + "translationKey": "item:finishBlock" + }, + "ttb": 1500, + "textureInfo": "finish_block", + "harvestType": "rock", + "description": { + "translationKey": "item:finishBlockDescription" + }, + "id": 1605, + "name": "Finish Block", + "stackable": true, + "meta": { + "rootName": "Finish Block", + "rootId": 1605, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 690 + }, + "1606": { + "displayName": { + "translationKey": "item:dropLocationBlock" + }, + "ttb": 1500, + "textureInfo": [ + "drop_location_block_top", + "drop_location_block_side" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:dropLocationBlockDescription" + }, + "id": 1606, + "name": "Drop Location Block", + "stackable": true, + "meta": { + "rootName": "Drop Location Block", + "rootId": 1606, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 691, + 692 + ] + }, + "1607": { + "displayName": { + "translationKey": "item:obbyDeathBlock" + }, + "ttb": 1500, + "textureInfo": "obby_death_block", + "harvestType": "rock", + "description": { + "translationKey": "item:obbyDeathBlockDescription" + }, + "id": 1607, + "name": "Obby Death Block", + "stackable": true, + "meta": { + "rootName": "Obby Death Block", + "rootId": 1607, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 693 + }, + "1608": { + "displayName": { + "translationKey": "item:obbyAbsorbBlock" + }, + "ttb": 1500, + "textureInfo": "obby_absorb_block", + "harvestType": "rock", + "description": { + "translationKey": "item:obbyAbsorbBlockDescription" + }, + "id": 1608, + "name": "Obby Absorb Block", + "stackable": true, + "meta": { + "rootName": "Obby Absorb Block", + "rootId": 1608, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 694 + }, + "1609": { + "displayName": { + "translationKey": "item:obbyAbsorbDeathBlock" + }, + "ttb": 1500, + "textureInfo": "obby_absorb_death_block", + "harvestType": "rock", + "description": { + "translationKey": "item:obbyAbsorbDeathBlockDescription" + }, + "id": 1609, + "name": "Obby Absorb Death Block", + "stackable": true, + "meta": { + "rootName": "Obby Absorb Death Block", + "rootId": 1609, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 695 + }, + "1610": { + "displayName": { + "translationKey": "item:boneBlock" + }, + "ttb": 960, + "textureInfo": [ + "bone_block_side", + "bone_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "rock", + "id": 1610, + "name": "Bone Block", + "stackable": true, + "meta": { + "rootName": "Bone Block", + "rootId": 1610, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 696, + 697 + ] + }, + "1611": { + "displayName": { + "translationKey": "item:pigMobSpawnerBlock" + }, + "description": { + "translationKey": "item:pigMobSpawnerBlockDescription" + }, + "itemTexture": "pig_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_passive_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Pig Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1611, + "name": "Pig Spawner Block", + "stackable": true, + "meta": { + "rootName": "Pig Spawner Block", + "rootId": 1611, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 698, + 699 + ] + }, + "1612": { + "displayName": { + "translationKey": "item:cowMobSpawnerBlock" + }, + "description": { + "translationKey": "item:cowMobSpawnerBlockDescription" + }, + "itemTexture": "cow_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_passive_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Cow Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1612, + "name": "Cow Spawner Block", + "stackable": true, + "meta": { + "rootName": "Cow Spawner Block", + "rootId": 1612, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 698, + 699 + ] + }, + "1613": { + "displayName": { + "translationKey": "item:sheepMobSpawnerBlock" + }, + "description": { + "translationKey": "item:sheepMobSpawnerBlockDescription" + }, + "itemTexture": "sheep_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_passive_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Sheep Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1613, + "name": "Sheep Spawner Block", + "stackable": true, + "meta": { + "rootName": "Sheep Spawner Block", + "rootId": 1613, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 698, + 699 + ] + }, + "1614": { + "displayName": { + "translationKey": "item:caveGolemMobSpawnerBlock" + }, + "description": { + "translationKey": "item:caveGolemMobSpawnerBlockDescription" + }, + "itemTexture": "cave_golem_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Cave Golem Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1614, + "name": "Cave Golem Spawner Block", + "stackable": true, + "meta": { + "rootName": "Cave Golem Spawner Block", + "rootId": 1614, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "1615": { + "displayName": { + "translationKey": "item:draugrZombieMobSpawnerBlock" + }, + "description": { + "translationKey": "item:draugrZombieMobSpawnerBlockDescription" + }, + "itemTexture": "draugr_zombie_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Draugr Zombie Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1615, + "name": "Draugr Zombie Spawner Block", + "stackable": true, + "meta": { + "rootName": "Draugr Zombie Spawner Block", + "rootId": 1615, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "1616": { + "displayName": { + "translationKey": "item:draugrSkeletonMobSpawnerBlock" + }, + "description": { + "translationKey": "item:draugrSkeletonMobSpawnerBlockDescription" + }, + "itemTexture": "draugr_skeleton_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Draugr Skeleton Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1616, + "name": "Draugr Skeleton Spawner Block", + "stackable": true, + "meta": { + "rootName": "Draugr Skeleton Spawner Block", + "rootId": 1616, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "1617": { + "displayName": { + "translationKey": "item:emptyMobSpawnerBlock" + }, + "description": { + "translationKey": "item:emptyMobSpawnerBlockDescription" + }, + "itemTexture": "empty_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_block_empty_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Empty Spawner Block" + }, + "particlesIgnoreBlack": true, + "twoDBlockItem": true, + "id": 1617, + "name": "Empty Spawner Block", + "stackable": true, + "meta": { + "rootName": "Empty Spawner Block", + "rootId": 1617, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 701, + 699 + ] + }, + "1618": { + "displayName": { + "translationKey": "item:frostGolemMobSpawnerBlock" + }, + "description": { + "translationKey": "item:frostGolemMobSpawnerBlockDescription" + }, + "itemTexture": "frost_golem_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Frost Golem Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1618, + "name": "Frost Golem Spawner Block", + "stackable": true, + "meta": { + "rootName": "Frost Golem Spawner Block", + "rootId": 1618, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "1619": { + "displayName": { + "translationKey": "item:frostZombieMobSpawnerBlock" + }, + "description": { + "translationKey": "item:frostZombieMobSpawnerBlockDescription" + }, + "itemTexture": "frost_zombie_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Frost Zombie Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1619, + "name": "Frost Zombie Spawner Block", + "stackable": true, + "meta": { + "rootName": "Frost Zombie Spawner Block", + "rootId": 1619, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "1620": { + "displayName": { + "translationKey": "item:frostSkeletonMobSpawnerBlock" + }, + "description": { + "translationKey": "item:frostSkeletonMobSpawnerBlockDescription" + }, + "itemTexture": "frost_skeleton_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Frost Skeleton Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1620, + "name": "Frost Skeleton Spawner Block", + "stackable": true, + "meta": { + "rootName": "Frost Skeleton Spawner Block", + "rootId": 1620, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "1621": { + "displayName": { + "translationKey": "item:snowyMessyStone" + }, + "ttb": 1800, + "textureInfo": "snowy_messy_stone", + "harvestType": "rock", + "id": 1621, + "name": "Snowy Messy Stone", + "stackable": true, + "meta": { + "rootName": "Snowy Messy Stone", + "rootId": 1621, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 702 + }, + "1622": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Snowy Stone Slab|meta|rot1|bot", + "id": 1622, + "name": "Snowy Stone Slab", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "1623": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 1623, + "name": "Snowy Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "1624": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 1624, + "name": "Snowy Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "1625": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 1625, + "name": "Snowy Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "1626": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 1626, + "name": "Snowy Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "1627": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 1627, + "name": "Snowy Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "1628": { + "displayName": { + "translationKey": "item:draugrKnightMobSpawnerBlock" + }, + "description": { + "translationKey": "item:draugrKnightMobSpawnerBlockDescription" + }, + "itemTexture": "draugr_knight_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Draugr Knight Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1628, + "name": "Draugr Knight Spawner Block", + "stackable": true, + "meta": { + "rootName": "Draugr Knight Spawner Block", + "rootId": 1628, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "1629": { + "displayName": { + "translationKey": "item:packedSnow" + }, + "ttb": 1800, + "textureInfo": "packed_snow", + "harvestType": "granule", + "soundType": { + "break": "snow", + "place": "snow" + }, + "id": 1629, + "name": "Packed Snow", + "stackable": true, + "meta": { + "rootName": "Packed Snow", + "rootId": 1629, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 704 + }, + "1630": { + "displayName": { + "translationKey": "item:carvedMessyStone" + }, + "ttb": 1800, + "textureInfo": "carved_messy_stone", + "harvestType": "rock", + "id": 1630, + "name": "Carved Messy Stone", + "stackable": true, + "meta": { + "rootName": "Carved Messy Stone", + "rootId": 1630, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 705 + }, + "1631": { + "displayName": { + "translationKey": "item:spectralGrass" + }, + "ttb": 1, + "textureInfo": "spectral_grass", + "model": "CentreCross", + "TB": false, + "drops": null, + "harvestType": "cuttable", + "specialToolDrop": { + "tool": "Shears", + "drops": "Spectral Grass" + }, + "canBePlacedOver": true, + "id": 1631, + "name": "Spectral Grass", + "stackable": true, + "meta": { + "rootName": "Spectral Grass", + "rootId": 1631, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1632": { + "displayName": { + "translationKey": "item:spectralLog" + }, + "ttb": 2400, + "textureInfo": "log_spectral", + "harvestType": "wood", + "id": 1632, + "name": "Spectral Log", + "stackable": true, + "meta": { + "rootName": "Spectral Log", + "rootId": 1632, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 706 + }, + "1633": { + "displayName": { + "translationKey": "item:barklessSpectralLog" + }, + "ttb": 2000, + "textureInfo": "stripped_spectral_log", + "harvestType": "wood", + "id": 1633, + "name": "Barkless Spectral Log", + "stackable": true, + "meta": { + "rootName": "Barkless Spectral Log", + "rootId": 1633, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 707 + }, + "1634": { + "ttb": 2000, + "textureInfo": "stripped_spectral_log", + "harvestType": "wood", + "drops": "Barkless Spectral Log", + "id": 1634, + "name": "Barkless Spectral Log|TreeBase|Spectral", + "stackable": true, + "meta": { + "rootName": "Barkless Spectral Log", + "rootId": 1633, + "metaStr": "TreeBase|Spectral", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Spectral", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 707 + }, + "1635": { + "displayName": { + "translationKey": "item:spectralWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_spectral", + "harvestType": "wood", + "id": 1635, + "name": "Spectral Wood Planks", + "stackable": true, + "meta": { + "rootName": "Spectral Wood Planks", + "rootId": 1635, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 708 + }, + "1636": { + "displayName": { + "translationKey": "item:spectralLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_spectral", + "harvestType": "cuttable", + "id": 1636, + "name": "Spectral Leaves", + "stackable": true, + "meta": { + "rootName": "Spectral Leaves", + "rootId": 1636, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 709 + }, + "1637": { + "displayName": { + "translationKey": "item:spectralDoor" + }, + "ttb": 3600, + "itemTexture": "spectral_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Spectral Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Spectral Door", + "id": 1637, + "name": "Spectral Door", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1638": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1638, + "name": "Spectral Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1639": { + "ttb": 3600, + "harvestType": "wood", + "id": 1639, + "name": "Spectral Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1640": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1640, + "name": "Spectral Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1641": { + "ttb": 3600, + "harvestType": "wood", + "id": 1641, + "name": "Spectral Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1642": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1642, + "name": "Spectral Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1643": { + "ttb": 3600, + "harvestType": "wood", + "id": 1643, + "name": "Spectral Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1644": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1644, + "name": "Spectral Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1645": { + "ttb": 3600, + "itemTexture": "spectral_door", + "harvestType": "wood", + "model": "door", + "drops": "Spectral Door", + "rootMetaDesc": "_Spectral Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Spectral Door Top", + "id": 1645, + "name": "_Spectral Door Top", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1646": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "TB": false, + "id": 1646, + "name": "_Spectral Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1647": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "id": 1647, + "name": "_Spectral Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1648": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "TB": false, + "id": 1648, + "name": "_Spectral Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1649": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "id": 1649, + "name": "_Spectral Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1650": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "TB": false, + "id": 1650, + "name": "_Spectral Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1651": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "id": 1651, + "name": "_Spectral Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1652": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "TB": false, + "id": 1652, + "name": "_Spectral Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1653": { + "displayName": { + "translationKey": "item:spectralTrapdoor" + }, + "ttb": 2800, + "itemTexture": "spectral_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Spectral Trapdoor|meta|rot1|closed", + "blockModel": "Spectral Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 1653, + "name": "Spectral Trapdoor", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1654": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1654, + "name": "Spectral Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1655": { + "ttb": 2800, + "harvestType": "wood", + "id": 1655, + "name": "Spectral Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1656": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1656, + "name": "Spectral Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1657": { + "ttb": 2800, + "harvestType": "wood", + "id": 1657, + "name": "Spectral Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1658": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1658, + "name": "Spectral Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1659": { + "ttb": 2800, + "harvestType": "wood", + "id": 1659, + "name": "Spectral Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1660": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1660, + "name": "Spectral Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1661": { + "displayName": { + "translationKey": "item:spectralSapling" + }, + "ttb": 1, + "textureInfo": "spectral_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "spectral_sapling", + "id": 1661, + "name": "Spectral Sapling", + "stackable": true, + "meta": { + "rootName": "Spectral Sapling", + "rootId": 1661, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1662": { + "ttb": 2400, + "textureInfo": "log_spectral", + "harvestType": "wood", + "drops": "Spectral Log", + "id": 1662, + "name": "Spectral Log|TreeBase|Spectral", + "stackable": true, + "meta": { + "rootName": "Spectral Log", + "rootId": 1632, + "metaStr": "TreeBase|Spectral", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Spectral", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 706 + }, + "1663": { + "ttb": 350, + "textureInfo": "leaves_spectral", + "harvestType": "cuttable", + "drops": "Spectral Leaves", + "id": 1663, + "name": "Spectral Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Spectral Leaves", + "rootId": 1636, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 709 + }, + "1664": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Spectral Slab|meta|rot1|bot", + "id": 1664, + "name": "Spectral Slab", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "1665": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1665, + "name": "Spectral Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "1666": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1666, + "name": "Spectral Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "1667": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1667, + "name": "Spectral Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "1668": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1668, + "name": "Spectral Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "1669": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1669, + "name": "Spectral Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "1670": { + "displayName": { + "translationKey": "item:spectralLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_spectral", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Spectral Ladder|meta|rot1", + "modelScale": 1, + "TB": false, + "blockModel": "Spectral Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1670, + "name": "Spectral Ladder", + "stackable": true, + "meta": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1671": { + "displayName": { + "translationKey": "item:spectralLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_spectral", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Spectral Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1671, + "name": "Spectral Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1672": { + "displayName": { + "translationKey": "item:spectralLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_spectral", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Spectral Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1672, + "name": "Spectral Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1673": { + "displayName": { + "translationKey": "item:spectralLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_spectral", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Spectral Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1673, + "name": "Spectral Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1674": { + "displayName": { + "translationKey": "item:woodEnchantingTable" + }, + "ttb": 800, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "wood_enchanting_table", + "rootMetaDesc": "Wood Enchanting Table|meta|rot1", + "modelScale": 10, + "blockModel": "Wood Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1674, + "name": "Wood Enchanting Table", + "stackable": true, + "meta": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1675": { + "displayName": { + "translationKey": "item:woodEnchantingTable" + }, + "ttb": 800, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "wood_enchanting_table", + "modelScale": 10, + "blockModel": "Wood Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1675, + "name": "Wood Enchanting Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1676": { + "displayName": { + "translationKey": "item:woodEnchantingTable" + }, + "ttb": 800, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "wood_enchanting_table", + "modelScale": 10, + "blockModel": "Wood Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1676, + "name": "Wood Enchanting Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1677": { + "displayName": { + "translationKey": "item:woodEnchantingTable" + }, + "ttb": 800, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "wood_enchanting_table", + "modelScale": 10, + "blockModel": "Wood Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1677, + "name": "Wood Enchanting Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1678": { + "displayName": { + "translationKey": "item:stoneEnchantingTable" + }, + "ttb": 1000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "stone_enchanting_table", + "rootMetaDesc": "Stone Enchanting Table|meta|rot1", + "modelScale": 10, + "blockModel": "Stone Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1678, + "name": "Stone Enchanting Table", + "stackable": true, + "meta": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1679": { + "displayName": { + "translationKey": "item:stoneEnchantingTable" + }, + "ttb": 1000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "stone_enchanting_table", + "modelScale": 10, + "blockModel": "Stone Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1679, + "name": "Stone Enchanting Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1680": { + "displayName": { + "translationKey": "item:stoneEnchantingTable" + }, + "ttb": 1000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "stone_enchanting_table", + "modelScale": 10, + "blockModel": "Stone Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1680, + "name": "Stone Enchanting Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1681": { + "displayName": { + "translationKey": "item:stoneEnchantingTable" + }, + "ttb": 1000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "stone_enchanting_table", + "modelScale": 10, + "blockModel": "Stone Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1681, + "name": "Stone Enchanting Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1682": { + "displayName": { + "translationKey": "item:ironEnchantingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "iron_enchanting_table", + "rootMetaDesc": "Iron Enchanting Table|meta|rot1", + "modelScale": 10, + "blockModel": "Iron Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1682, + "name": "Iron Enchanting Table", + "stackable": true, + "meta": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1683": { + "displayName": { + "translationKey": "item:ironEnchantingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "iron_enchanting_table", + "modelScale": 10, + "blockModel": "Iron Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1683, + "name": "Iron Enchanting Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1684": { + "displayName": { + "translationKey": "item:ironEnchantingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "iron_enchanting_table", + "modelScale": 10, + "blockModel": "Iron Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1684, + "name": "Iron Enchanting Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1685": { + "displayName": { + "translationKey": "item:ironEnchantingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "iron_enchanting_table", + "modelScale": 10, + "blockModel": "Iron Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1685, + "name": "Iron Enchanting Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1686": { + "displayName": { + "translationKey": "item:goldEnchantingTable" + }, + "ttb": 1500, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "gold_enchanting_table", + "rootMetaDesc": "Gold Enchanting Table|meta|rot1", + "modelScale": 10, + "blockModel": "Gold Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1686, + "name": "Gold Enchanting Table", + "stackable": true, + "meta": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1687": { + "displayName": { + "translationKey": "item:goldEnchantingTable" + }, + "ttb": 1500, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "gold_enchanting_table", + "modelScale": 10, + "blockModel": "Gold Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1687, + "name": "Gold Enchanting Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1688": { + "displayName": { + "translationKey": "item:goldEnchantingTable" + }, + "ttb": 1500, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "gold_enchanting_table", + "modelScale": 10, + "blockModel": "Gold Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1688, + "name": "Gold Enchanting Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1689": { + "displayName": { + "translationKey": "item:goldEnchantingTable" + }, + "ttb": 1500, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "gold_enchanting_table", + "modelScale": 10, + "blockModel": "Gold Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1689, + "name": "Gold Enchanting Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1690": { + "displayName": { + "translationKey": "item:diamondEnchantingTable" + }, + "ttb": 2000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "diamond_enchanting_table", + "rootMetaDesc": "Diamond Enchanting Table|meta|rot1", + "modelScale": 10, + "blockModel": "Diamond Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1690, + "name": "Diamond Enchanting Table", + "stackable": true, + "meta": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1691": { + "displayName": { + "translationKey": "item:diamondEnchantingTable" + }, + "ttb": 2000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "diamond_enchanting_table", + "modelScale": 10, + "blockModel": "Diamond Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1691, + "name": "Diamond Enchanting Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1692": { + "displayName": { + "translationKey": "item:diamondEnchantingTable" + }, + "ttb": 2000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "diamond_enchanting_table", + "modelScale": 10, + "blockModel": "Diamond Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1692, + "name": "Diamond Enchanting Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1693": { + "displayName": { + "translationKey": "item:diamondEnchantingTable" + }, + "ttb": 2000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "diamond_enchanting_table", + "modelScale": 10, + "blockModel": "Diamond Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1693, + "name": "Diamond Enchanting Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1694": { + "displayName": { + "translationKey": "item:pineGrassBlock" + }, + "ttb": 720, + "textureInfo": "pine_grass_block", + "harvestType": "granule", + "soundType": { + "break": "grass", + "place": "grass" + }, + "id": 1694, + "name": "Pine Grass Block", + "stackable": true, + "meta": { + "rootName": "Pine Grass Block", + "rootId": 1694, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 711 + }, + "1695": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "rootMetaDesc": "Pine Grass Slab|meta|rot1|bot", + "id": 1695, + "name": "Pine Grass Slab", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "1696": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1696, + "name": "Pine Grass Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "1697": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1697, + "name": "Pine Grass Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "1698": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1698, + "name": "Pine Grass Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "1699": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1699, + "name": "Pine Grass Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "1700": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1700, + "name": "Pine Grass Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "1701": { + "displayName": { + "translationKey": "item:pineGrass" + }, + "ttb": 1, + "textureInfo": "pine_grass", + "model": "CentreCross", + "TB": false, + "drops": null, + "harvestType": "cuttable", + "specialToolDrop": { + "tool": "Shears", + "drops": "Pine Grass" + }, + "canBePlacedOver": true, + "id": 1701, + "name": "Pine Grass", + "stackable": true, + "meta": { + "rootName": "Pine Grass", + "rootId": 1701, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1702": { + "displayName": { + "translationKey": "item:pineFern" + }, + "ttb": 1, + "textureInfo": "pine_fern", + "model": "CentreCross", + "TB": false, + "drops": null, + "harvestType": "cuttable", + "specialToolDrop": { + "tool": "Shears", + "drops": "Pine Fern" + }, + "canBePlacedOver": true, + "id": 1702, + "name": "Pine Fern", + "stackable": true, + "meta": { + "rootName": "Pine Fern", + "rootId": 1702, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1703": { + "displayName": { + "translationKey": "item:fallenPineCone" + }, + "ttb": 1, + "textureInfo": "fallen_pine_cone", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "id": 1703, + "name": "Fallen Pine Cone", + "stackable": true, + "meta": { + "rootName": "Fallen Pine Cone", + "rootId": 1703, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1704": { + "displayName": { + "translationKey": "item:pineConeBlock" + }, + "ttb": 600, + "textureInfo": [ + "pine_cone_block_side", + "pine_cone_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "id": 1704, + "name": "Pine Cone Block", + "stackable": true, + "meta": { + "rootName": "Pine Cone Block", + "rootId": 1704, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 713, + 714 + ] + }, + "1705": { + "displayName": { + "translationKey": "item:wolfMobSpawnerBlock" + }, + "description": { + "translationKey": "item:wolfMobSpawnerBlockDescription" + }, + "itemTexture": "wolf_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_neutral_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Wolf Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1705, + "name": "Wolf Spawner Block", + "stackable": true, + "meta": { + "rootName": "Wolf Spawner Block", + "rootId": 1705, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 715, + 699 + ] + }, + "1706": { + "displayName": { + "translationKey": "item:bearMobSpawnerBlock" + }, + "description": { + "translationKey": "item:bearMobSpawnerBlockDescription" + }, + "itemTexture": "bear_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Bear Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1706, + "name": "Bear Spawner Block", + "stackable": true, + "meta": { + "rootName": "Bear Spawner Block", + "rootId": 1706, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "1707": { + "displayName": { + "translationKey": "item:deerMobSpawnerBlock" + }, + "description": { + "translationKey": "item:deerMobSpawnerBlockDescription" + }, + "itemTexture": "deer_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_passive_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Deer Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1707, + "name": "Deer Spawner Block", + "stackable": true, + "meta": { + "rootName": "Deer Spawner Block", + "rootId": 1707, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 698, + 699 + ] + }, + "1708": { + "displayName": { + "translationKey": "item:stagMobSpawnerBlock" + }, + "description": { + "translationKey": "item:stagMobSpawnerBlockDescription" + }, + "itemTexture": "stag_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Stag Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1708, + "name": "Stag Spawner Block", + "stackable": true, + "meta": { + "rootName": "Stag Spawner Block", + "rootId": 1708, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "1709": { + "displayName": { + "translationKey": "item:boneAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "bone_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "rootMetaDesc": "Bone Antlers|meta|rot1", + "TB": false, + "blockModel": "bone_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1709, + "name": "Bone Antlers", + "stackable": true, + "meta": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1710": { + "displayName": { + "translationKey": "item:boneAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "bone_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "bone_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1710, + "name": "Bone Antlers|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1711": { + "displayName": { + "translationKey": "item:boneAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "bone_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "bone_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1711, + "name": "Bone Antlers|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1712": { + "displayName": { + "translationKey": "item:boneAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "bone_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "bone_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1712, + "name": "Bone Antlers|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1713": { + "displayName": { + "translationKey": "item:goldAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "gold_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "rootMetaDesc": "Gold Antlers|meta|rot1", + "TB": false, + "blockModel": "gold_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1713, + "name": "Gold Antlers", + "stackable": true, + "meta": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1714": { + "displayName": { + "translationKey": "item:goldAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "gold_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "gold_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1714, + "name": "Gold Antlers|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1715": { + "displayName": { + "translationKey": "item:goldAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "gold_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "gold_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1715, + "name": "Gold Antlers|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1716": { + "displayName": { + "translationKey": "item:goldAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "gold_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "gold_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1716, + "name": "Gold Antlers|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1717": { + "displayName": { + "translationKey": "item:goldWatermelonStagMobSpawnerBlock" + }, + "description": { + "translationKey": "item:goldWatermelonStagMobSpawnerBlockDescription" + }, + "itemTexture": "gold_watermelon_stag_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Gold Watermelon Stag Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1717, + "name": "Gold Watermelon Stag Spawner Block", + "stackable": true, + "meta": { + "rootName": "Gold Watermelon Stag Spawner Block", + "rootId": 1717, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "1718": { + "displayName": { + "translationKey": "item:salvagingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "salvaging_table", + "TB": false, + "rootMetaDesc": "Salvaging Table|meta|rot1", + "modelScale": 10, + "blockModel": "Salvaging Table", + "description": { + "translationKey": "item:salvagingTableDescription" + }, + "id": 1718, + "name": "Salvaging Table", + "stackable": true, + "meta": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1719": { + "displayName": { + "translationKey": "item:salvagingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "salvaging_table", + "TB": false, + "modelScale": 10, + "blockModel": "Salvaging Table", + "description": { + "translationKey": "item:salvagingTableDescription" + }, + "id": 1719, + "name": "Salvaging Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1720": { + "displayName": { + "translationKey": "item:salvagingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "salvaging_table", + "TB": false, + "modelScale": 10, + "blockModel": "Salvaging Table", + "description": { + "translationKey": "item:salvagingTableDescription" + }, + "id": 1720, + "name": "Salvaging Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1721": { + "displayName": { + "translationKey": "item:salvagingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "salvaging_table", + "TB": false, + "modelScale": 10, + "blockModel": "Salvaging Table", + "description": { + "translationKey": "item:salvagingTableDescription" + }, + "id": 1721, + "name": "Salvaging Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1722": { + "displayName": { + "translationKey": "item:chalk" + }, + "description": { + "translationKey": "item:chalkDescription" + }, + "ttb": 850, + "textureInfo": "chalk", + "harvestType": "rock", + "id": 1722, + "name": "Chalk", + "stackable": true, + "meta": { + "rootName": "Chalk", + "rootId": 1722, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 716 + }, + "1723": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "ttb": 850, + "textureInfo": "chalk_yellow", + "harvestType": "rock", + "id": 1723, + "name": "Yellow Chalk", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk", + "rootId": 1723, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "1724": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "ttb": 850, + "textureInfo": "chalk_white", + "harvestType": "rock", + "id": 1724, + "name": "White Chalk", + "stackable": true, + "meta": { + "rootName": "White Chalk", + "rootId": 1724, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "1725": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "ttb": 850, + "textureInfo": "chalk_red", + "harvestType": "rock", + "id": 1725, + "name": "Red Chalk", + "stackable": true, + "meta": { + "rootName": "Red Chalk", + "rootId": 1725, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "1726": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "ttb": 850, + "textureInfo": "chalk_purple", + "harvestType": "rock", + "id": 1726, + "name": "Purple Chalk", + "stackable": true, + "meta": { + "rootName": "Purple Chalk", + "rootId": 1726, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "1727": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "ttb": 850, + "textureInfo": "chalk_pink", + "harvestType": "rock", + "id": 1727, + "name": "Pink Chalk", + "stackable": true, + "meta": { + "rootName": "Pink Chalk", + "rootId": 1727, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "1728": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "ttb": 850, + "textureInfo": "chalk_orange", + "harvestType": "rock", + "id": 1728, + "name": "Orange Chalk", + "stackable": true, + "meta": { + "rootName": "Orange Chalk", + "rootId": 1728, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "1729": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "ttb": 850, + "textureInfo": "chalk_magenta", + "harvestType": "rock", + "id": 1729, + "name": "Magenta Chalk", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk", + "rootId": 1729, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "1730": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "ttb": 850, + "textureInfo": "chalk_lime", + "harvestType": "rock", + "id": 1730, + "name": "Lime Chalk", + "stackable": true, + "meta": { + "rootName": "Lime Chalk", + "rootId": 1730, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "1731": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "ttb": 850, + "textureInfo": "chalk_light_gray", + "harvestType": "rock", + "id": 1731, + "name": "Light Gray Chalk", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk", + "rootId": 1731, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "1732": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "ttb": 850, + "textureInfo": "chalk_light_blue", + "harvestType": "rock", + "id": 1732, + "name": "Light Blue Chalk", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk", + "rootId": 1732, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "1733": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "ttb": 850, + "textureInfo": "chalk_green", + "harvestType": "rock", + "id": 1733, + "name": "Green Chalk", + "stackable": true, + "meta": { + "rootName": "Green Chalk", + "rootId": 1733, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "1734": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "ttb": 850, + "textureInfo": "chalk_gray", + "harvestType": "rock", + "id": 1734, + "name": "Gray Chalk", + "stackable": true, + "meta": { + "rootName": "Gray Chalk", + "rootId": 1734, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "1735": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "ttb": 850, + "textureInfo": "chalk_cyan", + "harvestType": "rock", + "id": 1735, + "name": "Cyan Chalk", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk", + "rootId": 1735, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "1736": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "ttb": 850, + "textureInfo": "chalk_brown", + "harvestType": "rock", + "id": 1736, + "name": "Brown Chalk", + "stackable": true, + "meta": { + "rootName": "Brown Chalk", + "rootId": 1736, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "1737": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "ttb": 850, + "textureInfo": "chalk_blue", + "harvestType": "rock", + "id": 1737, + "name": "Blue Chalk", + "stackable": true, + "meta": { + "rootName": "Blue Chalk", + "rootId": 1737, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "1738": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "ttb": 850, + "textureInfo": "chalk_black", + "harvestType": "rock", + "id": 1738, + "name": "Black Chalk", + "stackable": true, + "meta": { + "rootName": "Black Chalk", + "rootId": 1738, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "1739": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_yellow", + "harvestType": "rock", + "id": 1739, + "name": "Yellow Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks", + "rootId": 1739, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 733 + }, + "1740": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_white", + "harvestType": "rock", + "id": 1740, + "name": "White Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks", + "rootId": 1740, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 734 + }, + "1741": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_red", + "harvestType": "rock", + "id": 1741, + "name": "Red Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks", + "rootId": 1741, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 735 + }, + "1742": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_purple", + "harvestType": "rock", + "id": 1742, + "name": "Purple Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks", + "rootId": 1742, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 736 + }, + "1743": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_pink", + "harvestType": "rock", + "id": 1743, + "name": "Pink Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks", + "rootId": 1743, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 737 + }, + "1744": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_orange", + "harvestType": "rock", + "id": 1744, + "name": "Orange Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks", + "rootId": 1744, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 738 + }, + "1745": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_magenta", + "harvestType": "rock", + "id": 1745, + "name": "Magenta Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks", + "rootId": 1745, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 739 + }, + "1746": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_lime", + "harvestType": "rock", + "id": 1746, + "name": "Lime Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks", + "rootId": 1746, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 740 + }, + "1747": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_light_gray", + "harvestType": "rock", + "id": 1747, + "name": "Light Gray Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks", + "rootId": 1747, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 741 + }, + "1748": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_light_blue", + "harvestType": "rock", + "id": 1748, + "name": "Light Blue Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks", + "rootId": 1748, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 742 + }, + "1749": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_green", + "harvestType": "rock", + "id": 1749, + "name": "Green Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks", + "rootId": 1749, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 743 + }, + "1750": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_gray", + "harvestType": "rock", + "id": 1750, + "name": "Gray Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks", + "rootId": 1750, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 744 + }, + "1751": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_cyan", + "harvestType": "rock", + "id": 1751, + "name": "Cyan Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks", + "rootId": 1751, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 745 + }, + "1752": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_brown", + "harvestType": "rock", + "id": 1752, + "name": "Brown Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks", + "rootId": 1752, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 746 + }, + "1753": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_blue", + "harvestType": "rock", + "id": 1753, + "name": "Blue Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks", + "rootId": 1753, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 747 + }, + "1754": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_black", + "harvestType": "rock", + "id": 1754, + "name": "Black Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks", + "rootId": 1754, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 748 + }, + "1755": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "rootMetaDesc": "Yellow Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1755, + "name": "Yellow Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "1756": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "ttb": 550, + "harvestType": "rock", + "id": 1756, + "name": "Yellow Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "1757": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "ttb": 550, + "harvestType": "rock", + "id": 1757, + "name": "Yellow Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "1758": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "ttb": 550, + "harvestType": "rock", + "id": 1758, + "name": "Yellow Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "1759": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "ttb": 550, + "harvestType": "rock", + "id": 1759, + "name": "Yellow Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "1760": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "ttb": 550, + "harvestType": "rock", + "id": 1760, + "name": "Yellow Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "1761": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "rootMetaDesc": "White Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1761, + "name": "White Chalk Slab", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "1762": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "ttb": 550, + "harvestType": "rock", + "id": 1762, + "name": "White Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "1763": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "ttb": 550, + "harvestType": "rock", + "id": 1763, + "name": "White Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "1764": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "ttb": 550, + "harvestType": "rock", + "id": 1764, + "name": "White Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "1765": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "ttb": 550, + "harvestType": "rock", + "id": 1765, + "name": "White Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "1766": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "ttb": 550, + "harvestType": "rock", + "id": 1766, + "name": "White Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "1767": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "rootMetaDesc": "Red Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1767, + "name": "Red Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "1768": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "ttb": 550, + "harvestType": "rock", + "id": 1768, + "name": "Red Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "1769": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "ttb": 550, + "harvestType": "rock", + "id": 1769, + "name": "Red Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "1770": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "ttb": 550, + "harvestType": "rock", + "id": 1770, + "name": "Red Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "1771": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "ttb": 550, + "harvestType": "rock", + "id": 1771, + "name": "Red Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "1772": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "ttb": 550, + "harvestType": "rock", + "id": 1772, + "name": "Red Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "1773": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "rootMetaDesc": "Purple Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1773, + "name": "Purple Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "1774": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "ttb": 550, + "harvestType": "rock", + "id": 1774, + "name": "Purple Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "1775": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "ttb": 550, + "harvestType": "rock", + "id": 1775, + "name": "Purple Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "1776": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "ttb": 550, + "harvestType": "rock", + "id": 1776, + "name": "Purple Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "1777": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "ttb": 550, + "harvestType": "rock", + "id": 1777, + "name": "Purple Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "1778": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "ttb": 550, + "harvestType": "rock", + "id": 1778, + "name": "Purple Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "1779": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "rootMetaDesc": "Pink Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1779, + "name": "Pink Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "1780": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "ttb": 550, + "harvestType": "rock", + "id": 1780, + "name": "Pink Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "1781": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "ttb": 550, + "harvestType": "rock", + "id": 1781, + "name": "Pink Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "1782": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "ttb": 550, + "harvestType": "rock", + "id": 1782, + "name": "Pink Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "1783": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "ttb": 550, + "harvestType": "rock", + "id": 1783, + "name": "Pink Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "1784": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "ttb": 550, + "harvestType": "rock", + "id": 1784, + "name": "Pink Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "1785": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "rootMetaDesc": "Orange Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1785, + "name": "Orange Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "1786": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "ttb": 550, + "harvestType": "rock", + "id": 1786, + "name": "Orange Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "1787": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "ttb": 550, + "harvestType": "rock", + "id": 1787, + "name": "Orange Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "1788": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "ttb": 550, + "harvestType": "rock", + "id": 1788, + "name": "Orange Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "1789": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "ttb": 550, + "harvestType": "rock", + "id": 1789, + "name": "Orange Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "1790": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "ttb": 550, + "harvestType": "rock", + "id": 1790, + "name": "Orange Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "1791": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "rootMetaDesc": "Magenta Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1791, + "name": "Magenta Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "1792": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "ttb": 550, + "harvestType": "rock", + "id": 1792, + "name": "Magenta Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "1793": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "ttb": 550, + "harvestType": "rock", + "id": 1793, + "name": "Magenta Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "1794": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "ttb": 550, + "harvestType": "rock", + "id": 1794, + "name": "Magenta Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "1795": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "ttb": 550, + "harvestType": "rock", + "id": 1795, + "name": "Magenta Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "1796": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "ttb": 550, + "harvestType": "rock", + "id": 1796, + "name": "Magenta Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "1797": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "rootMetaDesc": "Lime Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1797, + "name": "Lime Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "1798": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "ttb": 550, + "harvestType": "rock", + "id": 1798, + "name": "Lime Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "1799": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "ttb": 550, + "harvestType": "rock", + "id": 1799, + "name": "Lime Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "1800": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "ttb": 550, + "harvestType": "rock", + "id": 1800, + "name": "Lime Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "1801": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "ttb": 550, + "harvestType": "rock", + "id": 1801, + "name": "Lime Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "1802": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "ttb": 550, + "harvestType": "rock", + "id": 1802, + "name": "Lime Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "1803": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "rootMetaDesc": "Light Gray Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1803, + "name": "Light Gray Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "1804": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1804, + "name": "Light Gray Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "1805": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1805, + "name": "Light Gray Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "1806": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1806, + "name": "Light Gray Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "1807": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1807, + "name": "Light Gray Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "1808": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1808, + "name": "Light Gray Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "1809": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "rootMetaDesc": "Light Blue Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1809, + "name": "Light Blue Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "1810": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1810, + "name": "Light Blue Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "1811": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1811, + "name": "Light Blue Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "1812": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1812, + "name": "Light Blue Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "1813": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1813, + "name": "Light Blue Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "1814": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1814, + "name": "Light Blue Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "1815": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "rootMetaDesc": "Green Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1815, + "name": "Green Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "1816": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "ttb": 550, + "harvestType": "rock", + "id": 1816, + "name": "Green Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "1817": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "ttb": 550, + "harvestType": "rock", + "id": 1817, + "name": "Green Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "1818": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "ttb": 550, + "harvestType": "rock", + "id": 1818, + "name": "Green Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "1819": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "ttb": 550, + "harvestType": "rock", + "id": 1819, + "name": "Green Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "1820": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "ttb": 550, + "harvestType": "rock", + "id": 1820, + "name": "Green Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "1821": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "rootMetaDesc": "Gray Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1821, + "name": "Gray Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "1822": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1822, + "name": "Gray Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "1823": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1823, + "name": "Gray Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "1824": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1824, + "name": "Gray Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "1825": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1825, + "name": "Gray Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "1826": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1826, + "name": "Gray Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "1827": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "rootMetaDesc": "Cyan Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1827, + "name": "Cyan Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "1828": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "ttb": 550, + "harvestType": "rock", + "id": 1828, + "name": "Cyan Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "1829": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "ttb": 550, + "harvestType": "rock", + "id": 1829, + "name": "Cyan Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "1830": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "ttb": 550, + "harvestType": "rock", + "id": 1830, + "name": "Cyan Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "1831": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "ttb": 550, + "harvestType": "rock", + "id": 1831, + "name": "Cyan Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "1832": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "ttb": 550, + "harvestType": "rock", + "id": 1832, + "name": "Cyan Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "1833": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "rootMetaDesc": "Brown Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1833, + "name": "Brown Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "1834": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "ttb": 550, + "harvestType": "rock", + "id": 1834, + "name": "Brown Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "1835": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "ttb": 550, + "harvestType": "rock", + "id": 1835, + "name": "Brown Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "1836": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "ttb": 550, + "harvestType": "rock", + "id": 1836, + "name": "Brown Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "1837": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "ttb": 550, + "harvestType": "rock", + "id": 1837, + "name": "Brown Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "1838": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "ttb": 550, + "harvestType": "rock", + "id": 1838, + "name": "Brown Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "1839": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "rootMetaDesc": "Blue Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1839, + "name": "Blue Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "1840": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1840, + "name": "Blue Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "1841": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1841, + "name": "Blue Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "1842": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1842, + "name": "Blue Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "1843": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1843, + "name": "Blue Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "1844": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1844, + "name": "Blue Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "1845": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "rootMetaDesc": "Black Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1845, + "name": "Black Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "1846": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "ttb": 550, + "harvestType": "rock", + "id": 1846, + "name": "Black Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "1847": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "ttb": 550, + "harvestType": "rock", + "id": 1847, + "name": "Black Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "1848": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "ttb": 550, + "harvestType": "rock", + "id": 1848, + "name": "Black Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "1849": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "ttb": 550, + "harvestType": "rock", + "id": 1849, + "name": "Black Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "1850": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "ttb": 550, + "harvestType": "rock", + "id": 1850, + "name": "Black Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "1851": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Yellow Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1851, + "name": "Yellow Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "1852": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1852, + "name": "Yellow Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "1853": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1853, + "name": "Yellow Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "1854": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1854, + "name": "Yellow Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "1855": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1855, + "name": "Yellow Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "1856": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1856, + "name": "Yellow Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "1857": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "White Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1857, + "name": "White Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "1858": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1858, + "name": "White Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "1859": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1859, + "name": "White Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "1860": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1860, + "name": "White Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "1861": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1861, + "name": "White Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "1862": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1862, + "name": "White Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "1863": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Red Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1863, + "name": "Red Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "1864": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1864, + "name": "Red Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "1865": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1865, + "name": "Red Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "1866": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1866, + "name": "Red Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "1867": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1867, + "name": "Red Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "1868": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1868, + "name": "Red Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "1869": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Purple Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1869, + "name": "Purple Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "1870": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1870, + "name": "Purple Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "1871": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1871, + "name": "Purple Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "1872": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1872, + "name": "Purple Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "1873": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1873, + "name": "Purple Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "1874": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1874, + "name": "Purple Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "1875": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Pink Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1875, + "name": "Pink Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "1876": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1876, + "name": "Pink Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "1877": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1877, + "name": "Pink Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "1878": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1878, + "name": "Pink Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "1879": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1879, + "name": "Pink Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "1880": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1880, + "name": "Pink Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "1881": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Orange Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1881, + "name": "Orange Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "1882": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1882, + "name": "Orange Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "1883": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1883, + "name": "Orange Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "1884": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1884, + "name": "Orange Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "1885": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1885, + "name": "Orange Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "1886": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1886, + "name": "Orange Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "1887": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Magenta Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1887, + "name": "Magenta Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "1888": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1888, + "name": "Magenta Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "1889": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1889, + "name": "Magenta Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "1890": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1890, + "name": "Magenta Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "1891": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1891, + "name": "Magenta Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "1892": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1892, + "name": "Magenta Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "1893": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Lime Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1893, + "name": "Lime Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "1894": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1894, + "name": "Lime Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "1895": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1895, + "name": "Lime Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "1896": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1896, + "name": "Lime Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "1897": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1897, + "name": "Lime Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "1898": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1898, + "name": "Lime Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "1899": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Light Gray Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1899, + "name": "Light Gray Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "1900": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1900, + "name": "Light Gray Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "1901": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1901, + "name": "Light Gray Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "1902": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1902, + "name": "Light Gray Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "1903": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1903, + "name": "Light Gray Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "1904": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1904, + "name": "Light Gray Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "1905": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Light Blue Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1905, + "name": "Light Blue Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "1906": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1906, + "name": "Light Blue Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "1907": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1907, + "name": "Light Blue Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "1908": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1908, + "name": "Light Blue Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "1909": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1909, + "name": "Light Blue Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "1910": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1910, + "name": "Light Blue Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "1911": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Green Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1911, + "name": "Green Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "1912": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1912, + "name": "Green Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "1913": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1913, + "name": "Green Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "1914": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1914, + "name": "Green Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "1915": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1915, + "name": "Green Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "1916": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1916, + "name": "Green Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "1917": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Gray Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1917, + "name": "Gray Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "1918": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1918, + "name": "Gray Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "1919": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1919, + "name": "Gray Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "1920": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1920, + "name": "Gray Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "1921": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1921, + "name": "Gray Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "1922": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1922, + "name": "Gray Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "1923": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Cyan Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1923, + "name": "Cyan Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "1924": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1924, + "name": "Cyan Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "1925": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1925, + "name": "Cyan Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "1926": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1926, + "name": "Cyan Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "1927": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1927, + "name": "Cyan Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "1928": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1928, + "name": "Cyan Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "1929": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Brown Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1929, + "name": "Brown Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "1930": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1930, + "name": "Brown Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "1931": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1931, + "name": "Brown Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "1932": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1932, + "name": "Brown Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "1933": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1933, + "name": "Brown Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "1934": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1934, + "name": "Brown Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "1935": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Blue Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1935, + "name": "Blue Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "1936": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1936, + "name": "Blue Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "1937": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1937, + "name": "Blue Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "1938": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1938, + "name": "Blue Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "1939": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1939, + "name": "Blue Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "1940": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1940, + "name": "Blue Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "1941": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Black Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1941, + "name": "Black Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "1942": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1942, + "name": "Black Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "1943": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1943, + "name": "Black Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "1944": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1944, + "name": "Black Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "1945": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1945, + "name": "Black Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "1946": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1946, + "name": "Black Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "1947": { + "displayName": { + "translationKey": "item:leafBed" + }, + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Leaf Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1947, + "name": "Leaf Bed", + "stackable": true, + "meta": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1948": { + "displayName": { + "translationKey": "item:leafBed" + }, + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1948, + "name": "Leaf Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1949": { + "displayName": { + "translationKey": "item:leafBed" + }, + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1949, + "name": "Leaf Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1950": { + "displayName": { + "translationKey": "item:leafBed" + }, + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1950, + "name": "Leaf Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1951": { + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Leaf Bed", + "rootMetaDesc": "_Leaf Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1951, + "name": "_Leaf Bed Head", + "stackable": true, + "meta": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1952": { + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Leaf Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1952, + "name": "_Leaf Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1953": { + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Leaf Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1953, + "name": "_Leaf Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1954": { + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Leaf Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1954, + "name": "_Leaf Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1955": { + "displayName": { + "translationKey": "item:jungleGrassBlock" + }, + "ttb": 720, + "textureInfo": "jungle_grass_block", + "harvestType": "granule", + "soundType": { + "break": "grass", + "place": "grass" + }, + "id": 1955, + "name": "Jungle Grass Block", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Block", + "rootId": 1955, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 765 + }, + "1956": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "rootMetaDesc": "Jungle Grass Slab|meta|rot1|bot", + "id": 1956, + "name": "Jungle Grass Slab", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "1957": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1957, + "name": "Jungle Grass Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "1958": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1958, + "name": "Jungle Grass Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "1959": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1959, + "name": "Jungle Grass Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "1960": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1960, + "name": "Jungle Grass Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "1961": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1961, + "name": "Jungle Grass Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "1962": { + "displayName": { + "translationKey": "item:jungleTallGrass" + }, + "ttb": 1, + "textureInfo": "jungle_tall_grass_bottom", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Jungle Tall Grass" + }, + "itemTexture": "jungle_tall_grass_bottom", + "canBePlacedOver": true, + "id": 1962, + "name": "Jungle Tall Grass", + "stackable": true, + "meta": { + "rootName": "Jungle Tall Grass", + "rootId": 1962, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1963": { + "ttb": 1, + "textureInfo": "jungle_tall_grass_top", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Jungle Tall Grass" + }, + "itemTexture": "jungle_tall_grass_top", + "canBePlacedOver": true, + "id": 1963, + "name": "Jungle Tall Grass|Top", + "stackable": true, + "meta": { + "rootName": "Jungle Tall Grass", + "rootId": 1962, + "metaStr": "Top", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1964": { + "displayName": { + "translationKey": "item:catnip" + }, + "ttb": 1, + "textureInfo": "catnip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "drops": null, + "harvestType": "cuttable", + "specialToolDrop": { + "tool": "Shears", + "drops": "Catnip" + }, + "canBePlacedOver": true, + "id": 1964, + "name": "Catnip", + "stackable": true, + "meta": { + "rootName": "Catnip", + "rootId": 1964, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1965": { + "displayName": { + "translationKey": "item:mangoLog" + }, + "ttb": 2400, + "textureInfo": "log_mango", + "harvestType": "wood", + "id": 1965, + "name": "Mango Log", + "stackable": true, + "meta": { + "rootName": "Mango Log", + "rootId": 1965, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 767 + }, + "1966": { + "displayName": { + "translationKey": "item:barklessMangoLog" + }, + "ttb": 2000, + "textureInfo": "stripped_mango_log", + "harvestType": "wood", + "id": 1966, + "name": "Barkless Mango Log", + "stackable": true, + "meta": { + "rootName": "Barkless Mango Log", + "rootId": 1966, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 768 + }, + "1967": { + "ttb": 2000, + "textureInfo": "stripped_mango_log", + "harvestType": "wood", + "drops": "Barkless Mango Log", + "id": 1967, + "name": "Barkless Mango Log|TreeBase|Mango", + "stackable": true, + "meta": { + "rootName": "Barkless Mango Log", + "rootId": 1966, + "metaStr": "TreeBase|Mango", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Mango", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 768 + }, + "1968": { + "displayName": { + "translationKey": "item:mangoWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_mango", + "harvestType": "wood", + "id": 1968, + "name": "Mango Wood Planks", + "stackable": true, + "meta": { + "rootName": "Mango Wood Planks", + "rootId": 1968, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 769 + }, + "1969": { + "displayName": { + "translationKey": "item:mangoLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_mango", + "harvestType": "cuttable", + "id": 1969, + "name": "Mango Leaves", + "stackable": true, + "meta": { + "rootName": "Mango Leaves", + "rootId": 1969, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 770 + }, + "1970": { + "displayName": { + "translationKey": "item:mangoDoor" + }, + "ttb": 3600, + "itemTexture": "mango_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Mango Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Mango Door", + "id": 1970, + "name": "Mango Door", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1971": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1971, + "name": "Mango Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1972": { + "ttb": 3600, + "harvestType": "wood", + "id": 1972, + "name": "Mango Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1973": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1973, + "name": "Mango Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1974": { + "ttb": 3600, + "harvestType": "wood", + "id": 1974, + "name": "Mango Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1975": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1975, + "name": "Mango Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1976": { + "ttb": 3600, + "harvestType": "wood", + "id": 1976, + "name": "Mango Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1977": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1977, + "name": "Mango Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1978": { + "ttb": 3600, + "itemTexture": "mango_door", + "harvestType": "wood", + "model": "door", + "drops": "Mango Door", + "rootMetaDesc": "_Mango Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Mango Door Top", + "id": 1978, + "name": "_Mango Door Top", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1979": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "TB": false, + "id": 1979, + "name": "_Mango Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1980": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "id": 1980, + "name": "_Mango Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1981": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "TB": false, + "id": 1981, + "name": "_Mango Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1982": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "id": 1982, + "name": "_Mango Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1983": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "TB": false, + "id": 1983, + "name": "_Mango Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1984": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "id": 1984, + "name": "_Mango Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1985": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "TB": false, + "id": 1985, + "name": "_Mango Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1986": { + "displayName": { + "translationKey": "item:mangoTrapdoor" + }, + "ttb": 2800, + "itemTexture": "mango_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Mango Trapdoor|meta|rot1|closed", + "blockModel": "Mango Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 1986, + "name": "Mango Trapdoor", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1987": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1987, + "name": "Mango Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1988": { + "ttb": 2800, + "harvestType": "wood", + "id": 1988, + "name": "Mango Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1989": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1989, + "name": "Mango Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1990": { + "ttb": 2800, + "harvestType": "wood", + "id": 1990, + "name": "Mango Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1991": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1991, + "name": "Mango Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1992": { + "ttb": 2800, + "harvestType": "wood", + "id": 1992, + "name": "Mango Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1993": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1993, + "name": "Mango Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1994": { + "displayName": { + "translationKey": "item:mangoSapling" + }, + "ttb": 1, + "textureInfo": "mango_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "mango_sapling", + "id": 1994, + "name": "Mango Sapling", + "stackable": true, + "meta": { + "rootName": "Mango Sapling", + "rootId": 1994, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "1995": { + "ttb": 2400, + "textureInfo": "log_mango", + "harvestType": "wood", + "drops": "Mango Log", + "id": 1995, + "name": "Mango Log|TreeBase|Mango", + "stackable": true, + "meta": { + "rootName": "Mango Log", + "rootId": 1965, + "metaStr": "TreeBase|Mango", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Mango", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 767 + }, + "1996": { + "ttb": 350, + "textureInfo": "leaves_mango", + "harvestType": "cuttable", + "drops": "Mango Leaves", + "id": 1996, + "name": "Mango Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Mango Leaves", + "rootId": 1969, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 770 + }, + "1997": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Mango Slab|meta|rot1|bot", + "id": 1997, + "name": "Mango Slab", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "1998": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1998, + "name": "Mango Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "1999": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1999, + "name": "Mango Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "2000": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 2000, + "name": "Mango Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "2001": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 2001, + "name": "Mango Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "2002": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 2002, + "name": "Mango Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "2003": { + "displayName": { + "translationKey": "item:mangoLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_mango", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Mango Ladder|meta|rot1", + "modelScale": 1, + "TB": false, + "blockModel": "Mango Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 2003, + "name": "Mango Ladder", + "stackable": true, + "meta": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2004": { + "displayName": { + "translationKey": "item:mangoLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_mango", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Mango Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 2004, + "name": "Mango Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2005": { + "displayName": { + "translationKey": "item:mangoLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_mango", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Mango Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 2005, + "name": "Mango Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2006": { + "displayName": { + "translationKey": "item:mangoLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_mango", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Mango Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 2006, + "name": "Mango Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2007": { + "displayName": { + "translationKey": "item:mangoBlock" + }, + "ttb": 600, + "textureInfo": [ + "mango_block_side", + "mango_block_top", + "mango_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 2007, + "name": "Mango Block", + "stackable": true, + "meta": { + "rootName": "Mango Block", + "rootId": 2007, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 772, + 773, + 774 + ] + }, + "2008": { + "displayName": { + "translationKey": "item:bananaBlock" + }, + "ttb": 1200, + "textureInfo": [ + "banana_block_side", + "banana_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "id": 2008, + "name": "Banana Block", + "stackable": true, + "meta": { + "rootName": "Banana Block", + "rootId": 2008, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 775, + 776 + ] + }, + "2009": { + "displayName": { + "translationKey": "item:bananaSeeds" + }, + "ttb": 400, + "textureInfo": "banana_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "banana_seeds", + "description": { + "translationKey": "item:bananaSeedsDescription" + }, + "id": 2009, + "name": "Banana Seeds", + "stackable": true, + "meta": { + "rootName": "Banana Seeds", + "rootId": 2009, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2010": { + "ttb": 400, + "textureInfo": "banana_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Banana Seeds", + "id": 2010, + "name": "Banana Seeds|Growing", + "stackable": true, + "meta": { + "rootName": "Banana Seeds", + "rootId": 2009, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2011": { + "displayName": { + "translationKey": "item:attachedBananaStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_banana_stem_wrapper", + "attached_banana_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Banana Seeds", + "rootMetaDesc": "Attached Banana Stem|meta|rot1", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 2011, + "name": "Attached Banana Stem", + "stackable": true, + "meta": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2012": { + "displayName": { + "translationKey": "item:attachedBananaStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_banana_stem_wrapper", + "attached_banana_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Banana Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 2012, + "name": "Attached Banana Stem|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2013": { + "displayName": { + "translationKey": "item:attachedBananaStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_banana_stem_wrapper", + "attached_banana_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Banana Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 2013, + "name": "Attached Banana Stem|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2014": { + "displayName": { + "translationKey": "item:attachedBananaStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_banana_stem_wrapper", + "attached_banana_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Banana Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 2014, + "name": "Attached Banana Stem|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2015": { + "displayName": { + "translationKey": "item:danglingRope" + }, + "ttb": 225, + "itemTexture": "dangling_rope", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "Dangling Rope", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375, + "Re": true + }, + "description": { + "translationKey": "item:ceilingClimbableDescription" + }, + "id": 2015, + "name": "Dangling Rope", + "stackable": true, + "meta": { + "rootName": "Dangling Rope", + "rootId": 2015, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2016": { + "displayName": { + "translationKey": "item:danglingVine" + }, + "ttb": 225, + "itemTexture": "dangling_vine", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "Dangling Vine", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375, + "Re": true + }, + "description": { + "translationKey": "item:ceilingClimbableDescription" + }, + "id": 2016, + "name": "Dangling Vine", + "stackable": true, + "meta": { + "rootName": "Dangling Vine", + "rootId": 2016, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "2017": { + "displayName": { + "translationKey": "item:gorillaMobSpawnerBlock" + }, + "description": { + "translationKey": "item:gorillaMobSpawnerBlockDescription" + }, + "itemTexture": "gorilla_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Gorilla Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 2017, + "name": "Gorilla Spawner Block", + "stackable": true, + "meta": { + "rootName": "Gorilla Spawner Block", + "rootId": 2017, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "2018": { + "displayName": { + "translationKey": "item:wildcatMobSpawnerBlock" + }, + "description": { + "translationKey": "item:wildcatMobSpawnerBlockDescription" + }, + "itemTexture": "wildcat_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_neutral_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Wildcat Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 2018, + "name": "Wildcat Spawner Block", + "stackable": true, + "meta": { + "rootName": "Wildcat Spawner Block", + "rootId": 2018, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 715, + 699 + ] + }, + "2019": { + "displayName": { + "translationKey": "item:fruityMapleLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_maple_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Maple Leaves" + }, + "id": 2019, + "name": "Fruity Maple Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Maple Leaves", + "rootId": 2019, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 777 + }, + "2020": { + "displayName": { + "translationKey": "item:pineConeLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_pine_cone", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Pine Cone Leaves" + }, + "id": 2020, + "name": "Pine Cone Leaves", + "stackable": true, + "meta": { + "rootName": "Pine Cone Leaves", + "rootId": 2020, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 778 + }, + "2021": { + "displayName": { + "translationKey": "item:fruityPlumLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_plum_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Plum Leaves" + }, + "id": 2021, + "name": "Fruity Plum Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Plum Leaves", + "rootId": 2021, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 779 + }, + "2022": { + "displayName": { + "translationKey": "item:fruityPalmLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_palm_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Palm Leaves" + }, + "id": 2022, + "name": "Fruity Palm Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Palm Leaves", + "rootId": 2022, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 780 + }, + "2023": { + "displayName": { + "translationKey": "item:fruityPearLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_pear_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Pear Leaves" + }, + "id": 2023, + "name": "Fruity Pear Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Pear Leaves", + "rootId": 2023, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 781 + }, + "2024": { + "displayName": { + "translationKey": "item:fruityCherryLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_cherry_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Cherry Leaves" + }, + "id": 2024, + "name": "Fruity Cherry Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Cherry Leaves", + "rootId": 2024, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 782 + }, + "2025": { + "displayName": { + "translationKey": "item:fruityMangoLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_mango_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Mango Leaves" + }, + "id": 2025, + "name": "Fruity Mango Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Mango Leaves", + "rootId": 2025, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 783 + }, + "2026": { + "displayName": { + "translationKey": "item:draugrHuntressMobSpawnerBlock" + }, + "description": { + "translationKey": "item:draugrHuntressMobSpawnerBlockDescription" + }, + "itemTexture": "draugr_huntress_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Draugr Huntress Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 2026, + "name": "Draugr Huntress Spawner Block", + "stackable": true, + "meta": { + "rootName": "Draugr Huntress Spawner Block", + "rootId": 2026, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "2027": { + "displayName": { + "translationKey": "item:magmaGolemMobSpawnerBlock" + }, + "description": { + "translationKey": "item:magmaGolemMobSpawnerBlockDescription" + }, + "itemTexture": "magma_golem_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Magma Golem Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 2027, + "name": "Magma Golem Spawner Block", + "stackable": true, + "meta": { + "rootName": "Magma Golem Spawner Block", + "rootId": 2027, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "2028": { + "displayName": { + "translationKey": "item:blackPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "black_portal0", + "black_portal1", + "black_portal2", + "black_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2028, + "name": "Black Portal", + "stackable": true, + "meta": { + "rootName": "Black Portal", + "rootId": 2028, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 1, + 25, + 26, + 27 + ] + }, + "2029": { + "displayName": { + "translationKey": "item:bluePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "blue_portal0", + "blue_portal1", + "blue_portal2", + "blue_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2029, + "name": "Blue Portal", + "stackable": true, + "meta": { + "rootName": "Blue Portal", + "rootId": 2029, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 2, + 28, + 29, + 30 + ] + }, + "2030": { + "displayName": { + "translationKey": "item:brownPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "brown_portal0", + "brown_portal1", + "brown_portal2", + "brown_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2030, + "name": "Brown Portal", + "stackable": true, + "meta": { + "rootName": "Brown Portal", + "rootId": 2030, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 3, + 31, + 32, + 33 + ] + }, + "2031": { + "displayName": { + "translationKey": "item:cyanPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "cyan_portal0", + "cyan_portal1", + "cyan_portal2", + "cyan_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2031, + "name": "Cyan Portal", + "stackable": true, + "meta": { + "rootName": "Cyan Portal", + "rootId": 2031, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 4, + 34, + 35, + 36 + ] + }, + "2032": { + "displayName": { + "translationKey": "item:grayPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "gray_portal0", + "gray_portal1", + "gray_portal2", + "gray_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2032, + "name": "Gray Portal", + "stackable": true, + "meta": { + "rootName": "Gray Portal", + "rootId": 2032, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 5, + 37, + 38, + 39 + ] + }, + "2033": { + "displayName": { + "translationKey": "item:greenPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "green_portal0", + "green_portal1", + "green_portal2", + "green_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2033, + "name": "Green Portal", + "stackable": true, + "meta": { + "rootName": "Green Portal", + "rootId": 2033, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 6, + 40, + 41, + 42 + ] + }, + "2034": { + "displayName": { + "translationKey": "item:greyPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "grey_portal0", + "grey_portal1", + "grey_portal2", + "grey_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2034, + "name": "Grey Portal", + "stackable": true, + "meta": { + "rootName": "Grey Portal", + "rootId": 2034, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 7, + 43, + 44, + 45 + ] + }, + "2035": { + "displayName": { + "translationKey": "item:lightbluePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "lightblue_portal0", + "lightblue_portal1", + "lightblue_portal2", + "lightblue_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2035, + "name": "Light Blue Portal", + "stackable": true, + "meta": { + "rootName": "Light Blue Portal", + "rootId": 2035, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 8, + 46, + 47, + 48 + ] + }, + "2036": { + "displayName": { + "translationKey": "item:lightgrayPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "lightgray_portal0", + "lightgray_portal1", + "lightgray_portal2", + "lightgray_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2036, + "name": "Light Gray Portal", + "stackable": true, + "meta": { + "rootName": "Light Gray Portal", + "rootId": 2036, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 9, + 49, + 50, + 51 + ] + }, + "2037": { + "displayName": { + "translationKey": "item:limePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "lime_portal0", + "lime_portal1", + "lime_portal2", + "lime_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2037, + "name": "Lime Portal", + "stackable": true, + "meta": { + "rootName": "Lime Portal", + "rootId": 2037, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 10, + 52, + 53, + 54 + ] + }, + "2038": { + "displayName": { + "translationKey": "item:magentaPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "magenta_portal0", + "magenta_portal1", + "magenta_portal2", + "magenta_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2038, + "name": "Magenta Portal", + "stackable": true, + "meta": { + "rootName": "Magenta Portal", + "rootId": 2038, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 11, + 55, + 56, + 57 + ] + }, + "2039": { + "displayName": { + "translationKey": "item:orangePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "orange_portal0", + "orange_portal1", + "orange_portal2", + "orange_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2039, + "name": "Orange Portal", + "stackable": true, + "meta": { + "rootName": "Orange Portal", + "rootId": 2039, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 12, + 58, + 59, + 60 + ] + }, + "2040": { + "displayName": { + "translationKey": "item:pinkPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "pink_portal0", + "pink_portal1", + "pink_portal2", + "pink_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2040, + "name": "Pink Portal", + "stackable": true, + "meta": { + "rootName": "Pink Portal", + "rootId": 2040, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 13, + 61, + 62, + 63 + ] + }, + "2041": { + "displayName": { + "translationKey": "item:purplePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "purple_portal0", + "purple_portal1", + "purple_portal2", + "purple_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2041, + "name": "Purple Portal", + "stackable": true, + "meta": { + "rootName": "Purple Portal", + "rootId": 2041, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 14, + 64, + 65, + 66 + ] + }, + "2042": { + "displayName": { + "translationKey": "item:redPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "red_portal0", + "red_portal1", + "red_portal2", + "red_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2042, + "name": "Red Portal", + "stackable": true, + "meta": { + "rootName": "Red Portal", + "rootId": 2042, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 15, + 67, + 68, + 69 + ] + }, + "2043": { + "displayName": { + "translationKey": "item:whitePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "white_portal0", + "white_portal1", + "white_portal2", + "white_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2043, + "name": "White Portal", + "stackable": true, + "meta": { + "rootName": "White Portal", + "rootId": 2043, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 16, + 70, + 71, + 72 + ] + }, + "2044": { + "displayName": { + "translationKey": "item:yellowPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "yellow_portal0", + "yellow_portal1", + "yellow_portal2", + "yellow_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2044, + "name": "Yellow Portal", + "stackable": true, + "meta": { + "rootName": "Yellow Portal", + "rootId": 2044, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 17, + 73, + 74, + 75 + ] + }, + "Unloaded": { + "ttb": 100, + "textureInfo": "unloaded", + "harvestType": "granule", + "id": 1, + "name": "Unloaded", + "stackable": true, + "meta": { + "rootName": "Unloaded", + "rootId": 1, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 76 + }, + "Dirt": { + "displayName": { + "translationKey": "item:dirt" + }, + "ttb": 600, + "textureInfo": "dirt", + "harvestType": "granule", + "id": 2, + "name": "Dirt", + "stackable": true, + "meta": { + "rootName": "Dirt", + "rootId": 2, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 77 + }, + "Messy Dirt": { + "displayName": { + "translationKey": "item:messyDirt" + }, + "ttb": 600, + "textureInfo": "coarse_dirt", + "harvestType": "granule", + "id": 3, + "name": "Messy Dirt", + "stackable": true, + "meta": { + "rootName": "Messy Dirt", + "rootId": 3, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 78 + }, + "Grass Block": { + "displayName": { + "translationKey": "item:grassBlock" + }, + "ttb": 720, + "textureInfo": "grass_top", + "harvestType": "granule", + "soundType": { + "break": "grass", + "place": "grass" + }, + "id": 4, + "name": "Grass Block", + "stackable": true, + "meta": { + "rootName": "Grass Block", + "rootId": 4, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 79 + }, + "Sand": { + "displayName": { + "translationKey": "item:sand" + }, + "ttb": 600, + "textureInfo": "sand", + "harvestType": "granule", + "soundType": { + "break": "sand", + "place": "sand" + }, + "id": 5, + "name": "Sand", + "stackable": true, + "meta": { + "rootName": "Sand", + "rootId": 5, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 80 + }, + "Clay": { + "displayName": { + "translationKey": "item:clay" + }, + "ttb": 720, + "textureInfo": "clay", + "harvestType": "granule", + "id": 6, + "name": "Clay", + "stackable": true, + "meta": { + "rootName": "Clay", + "rootId": 6, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 81 + }, + "Gravel": { + "displayName": { + "translationKey": "item:gravel" + }, + "ttb": 720, + "textureInfo": "gravel", + "harvestType": "granule", + "id": 7, + "name": "Gravel", + "stackable": true, + "meta": { + "rootName": "Gravel", + "rootId": 7, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 82 + }, + "Snow": { + "displayName": { + "translationKey": "item:snow" + }, + "ttb": 600, + "textureInfo": "snow", + "harvestType": "granule", + "soundType": { + "break": "snow", + "place": "snow" + }, + "id": 8, + "name": "Snow", + "stackable": true, + "meta": { + "rootName": "Snow", + "rootId": 8, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 83 + }, + "Maple Log": { + "displayName": { + "translationKey": "item:mapleLog" + }, + "ttb": 2400, + "textureInfo": "log_maple", + "harvestType": "wood", + "id": 9, + "name": "Maple Log", + "stackable": true, + "meta": { + "rootName": "Maple Log", + "rootId": 9, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 84 + }, + "Pine Log": { + "displayName": { + "translationKey": "item:pineLog" + }, + "ttb": 2400, + "textureInfo": "log_pine", + "harvestType": "wood", + "id": 10, + "name": "Pine Log", + "stackable": true, + "meta": { + "rootName": "Pine Log", + "rootId": 10, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 85 + }, + "Plum Log": { + "displayName": { + "translationKey": "item:plumLog" + }, + "ttb": 2400, + "textureInfo": "log_plum", + "harvestType": "wood", + "id": 11, + "name": "Plum Log", + "stackable": true, + "meta": { + "rootName": "Plum Log", + "rootId": 11, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 86 + }, + "Cedar Log": { + "displayName": { + "translationKey": "item:cedarLog" + }, + "ttb": 2400, + "textureInfo": "log_cedar", + "harvestType": "wood", + "id": 12, + "name": "Cedar Log", + "stackable": true, + "meta": { + "rootName": "Cedar Log", + "rootId": 12, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 87 + }, + "Aspen Log": { + "displayName": { + "translationKey": "item:aspenLog" + }, + "ttb": 2400, + "textureInfo": "log_aspen", + "harvestType": "wood", + "id": 13, + "name": "Aspen Log", + "stackable": true, + "meta": { + "rootName": "Aspen Log", + "rootId": 13, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 88 + }, + "Jungle Log": { + "displayName": { + "translationKey": "item:jungleLog" + }, + "ttb": 2400, + "textureInfo": "log_jungle", + "harvestType": "wood", + "id": 14, + "name": "Jungle Log", + "stackable": true, + "meta": { + "rootName": "Jungle Log", + "rootId": 14, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 89 + }, + "Maple Wood Planks": { + "displayName": { + "translationKey": "item:mapleWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_maple", + "harvestType": "wood", + "id": 15, + "name": "Maple Wood Planks", + "stackable": true, + "meta": { + "rootName": "Maple Wood Planks", + "rootId": 15, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 90 + }, + "Aspen Wood Planks": { + "displayName": { + "translationKey": "item:aspenWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_aspen", + "harvestType": "wood", + "id": 16, + "name": "Aspen Wood Planks", + "stackable": true, + "meta": { + "rootName": "Aspen Wood Planks", + "rootId": 16, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 91 + }, + "Plum Wood Planks": { + "displayName": { + "translationKey": "item:plumWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_plum", + "harvestType": "wood", + "id": 17, + "name": "Plum Wood Planks", + "stackable": true, + "meta": { + "rootName": "Plum Wood Planks", + "rootId": 17, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 92 + }, + "Jungle Wood Planks": { + "displayName": { + "translationKey": "item:jungleWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_jungle", + "harvestType": "wood", + "id": 18, + "name": "Jungle Wood Planks", + "stackable": true, + "meta": { + "rootName": "Jungle Wood Planks", + "rootId": 18, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 93 + }, + "Pine Wood Planks": { + "displayName": { + "translationKey": "item:pineWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_pine", + "harvestType": "wood", + "id": 19, + "name": "Pine Wood Planks", + "stackable": true, + "meta": { + "rootName": "Pine Wood Planks", + "rootId": 19, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 94 + }, + "Cedar Wood Planks": { + "displayName": { + "translationKey": "item:cedarWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_cedar", + "harvestType": "wood", + "id": 20, + "name": "Cedar Wood Planks", + "stackable": true, + "meta": { + "rootName": "Cedar Wood Planks", + "rootId": 20, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 95 + }, + "Barkless Maple Log": { + "displayName": { + "translationKey": "item:barklessMapleLog" + }, + "ttb": 2000, + "textureInfo": "stripped_maple_log", + "harvestType": "wood", + "id": 21, + "name": "Barkless Maple Log", + "stackable": true, + "meta": { + "rootName": "Barkless Maple Log", + "rootId": 21, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 96 + }, + "Barkless Aspen Log": { + "displayName": { + "translationKey": "item:barklessAspenLog" + }, + "ttb": 2000, + "textureInfo": "stripped_aspen_log", + "harvestType": "wood", + "id": 22, + "name": "Barkless Aspen Log", + "stackable": true, + "meta": { + "rootName": "Barkless Aspen Log", + "rootId": 22, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 97 + }, + "Barkless Plum Log": { + "displayName": { + "translationKey": "item:barklessPlumLog" + }, + "ttb": 2000, + "textureInfo": "stripped_plum_log", + "harvestType": "wood", + "id": 23, + "name": "Barkless Plum Log", + "stackable": true, + "meta": { + "rootName": "Barkless Plum Log", + "rootId": 23, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 98 + }, + "Barkless Jungle Log": { + "displayName": { + "translationKey": "item:barklessJungleLog" + }, + "ttb": 2000, + "textureInfo": "stripped_jungle_log", + "harvestType": "wood", + "id": 24, + "name": "Barkless Jungle Log", + "stackable": true, + "meta": { + "rootName": "Barkless Jungle Log", + "rootId": 24, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 99 + }, + "Barkless Pine Log": { + "displayName": { + "translationKey": "item:barklessPineLog" + }, + "ttb": 2000, + "textureInfo": "stripped_pine_log", + "harvestType": "wood", + "id": 25, + "name": "Barkless Pine Log", + "stackable": true, + "meta": { + "rootName": "Barkless Pine Log", + "rootId": 25, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 100 + }, + "Barkless Cedar Log": { + "displayName": { + "translationKey": "item:barklessCedarLog" + }, + "ttb": 2000, + "textureInfo": "stripped_cedar_log", + "harvestType": "wood", + "id": 26, + "name": "Barkless Cedar Log", + "stackable": true, + "meta": { + "rootName": "Barkless Cedar Log", + "rootId": 26, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 101 + }, + "free_placeholder2": { + "ttb": 1800, + "textureInfo": "messy_stone", + "harvestType": "rock", + "id": 27, + "name": "free_placeholder2", + "stackable": true, + "meta": { + "rootName": "free_placeholder2", + "rootId": 27, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 102 + }, + "Stone": { + "displayName": { + "translationKey": "item:stone" + }, + "ttb": 1800, + "textureInfo": "stone", + "harvestType": "rock", + "drops": "Messy Stone", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Stone" + }, + "id": 28, + "name": "Stone", + "stackable": true, + "meta": { + "rootName": "Stone", + "rootId": 28, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 103 + }, + "Messy Stone": { + "displayName": { + "translationKey": "item:messyStone" + }, + "ttb": 1800, + "textureInfo": "messy_stone", + "harvestType": "rock", + "id": 29, + "name": "Messy Stone", + "stackable": true, + "meta": { + "rootName": "Messy Stone", + "rootId": 29, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 102 + }, + "free_placeholder": { + "ttb": 1800, + "textureInfo": "messy_stone", + "harvestType": "rock", + "id": 30, + "name": "free_placeholder", + "stackable": true, + "meta": { + "rootName": "free_placeholder", + "rootId": 30, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 102 + }, + "Smooth Stone": { + "displayName": { + "translationKey": "item:smoothStone" + }, + "ttb": 1800, + "textureInfo": "smooth_stone", + "harvestType": "rock", + "id": 31, + "name": "Smooth Stone", + "stackable": true, + "meta": { + "rootName": "Smooth Stone", + "rootId": 31, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 104 + }, + "Diorite": { + "displayName": { + "translationKey": "item:diorite" + }, + "ttb": 1800, + "textureInfo": "stone_diorite", + "harvestType": "rock", + "id": 32, + "name": "Diorite", + "stackable": true, + "meta": { + "rootName": "Diorite", + "rootId": 32, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 105 + }, + "Smooth Diorite": { + "displayName": { + "translationKey": "item:smoothDiorite" + }, + "ttb": 1800, + "textureInfo": "stone_diorite_smooth", + "harvestType": "rock", + "id": 33, + "name": "Smooth Diorite", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite", + "rootId": 33, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 106 + }, + "Andesite": { + "displayName": { + "translationKey": "item:andesite" + }, + "ttb": 1800, + "textureInfo": "stone_andesite", + "harvestType": "rock", + "id": 34, + "name": "Andesite", + "stackable": true, + "meta": { + "rootName": "Andesite", + "rootId": 34, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 107 + }, + "Smooth Andesite": { + "displayName": { + "translationKey": "item:smoothAndesite" + }, + "ttb": 1800, + "textureInfo": "stone_andesite_smooth", + "harvestType": "rock", + "id": 35, + "name": "Smooth Andesite", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite", + "rootId": 35, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 108 + }, + "Granite": { + "displayName": { + "translationKey": "item:granite" + }, + "ttb": 1800, + "textureInfo": "stone_granite", + "harvestType": "rock", + "id": 36, + "name": "Granite", + "stackable": true, + "meta": { + "rootName": "Granite", + "rootId": 36, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 109 + }, + "Smooth Granite": { + "displayName": { + "translationKey": "item:smoothGranite" + }, + "ttb": 1800, + "textureInfo": "stone_granite_smooth", + "harvestType": "rock", + "id": 37, + "name": "Smooth Granite", + "stackable": true, + "meta": { + "rootName": "Smooth Granite", + "rootId": 37, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 110 + }, + "Sandstone": { + "displayName": { + "translationKey": "item:sandstone" + }, + "ttb": 960, + "textureInfo": "sandstone_normal", + "harvestType": "rock", + "id": 38, + "name": "Sandstone", + "stackable": true, + "meta": { + "rootName": "Sandstone", + "rootId": 38, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 111 + }, + "Yellowstone": { + "displayName": { + "translationKey": "item:yellowstone" + }, + "ttb": 3600, + "textureInfo": "end_stone", + "harvestType": "rock", + "id": 39, + "name": "Yellowstone", + "stackable": true, + "meta": { + "rootName": "Yellowstone", + "rootId": 39, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 112 + }, + "Coal Ore": { + "displayName": { + "translationKey": "item:coalOre" + }, + "ttb": 3000, + "textureInfo": "coal_ore", + "harvestType": "rock", + "drops": "Coal", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Coal Ore" + }, + "specialToolBonusDrops": { + "Golem Pickaxe": [ + { + "bonusDrop": "Iron Fragment", + "probabilityOfDrop": 0.3333333333333333 + }, + { + "bonusDrop": "Gold Fragment", + "probabilityOfDrop": 0.25 + }, + { + "bonusDrop": "Diamond Fragment", + "probabilityOfDrop": 0.2 + }, + { + "bonusDrop": "Moonstone Fragment", + "probabilityOfDrop": 0.16666666666666666 + }, + { + "bonusDrop": "Coal", + "probabilityOfDrop": 0.14285714285714285 + } + ] + }, + "description": { + "translationKey": "item:coalOreDescription" + }, + "onMinedAura": 5, + "id": 40, + "name": "Coal Ore", + "stackable": true, + "meta": { + "rootName": "Coal Ore", + "rootId": 40, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 113 + }, + "Iron Ore": { + "displayName": { + "translationKey": "item:ironOre" + }, + "ttb": 3600, + "textureInfo": "iron_ore", + "harvestType": "rock", + "drops": "Raw Iron", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Iron Ore" + }, + "specialToolBonusDrops": { + "Golem Pickaxe": [ + { + "bonusDrop": "Iron Fragment", + "probabilityOfDrop": 0.3333333333333333 + }, + { + "bonusDrop": "Gold Fragment", + "probabilityOfDrop": 0.25 + }, + { + "bonusDrop": "Diamond Fragment", + "probabilityOfDrop": 0.2 + }, + { + "bonusDrop": "Moonstone Fragment", + "probabilityOfDrop": 0.16666666666666666 + }, + { + "bonusDrop": "Coal", + "probabilityOfDrop": 0.14285714285714285 + } + ] + }, + "harvestLevel": 2, + "onMinedAura": 15, + "id": 41, + "name": "Iron Ore", + "stackable": true, + "meta": { + "rootName": "Iron Ore", + "rootId": 41, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 114 + }, + "Gold Ore": { + "displayName": { + "translationKey": "item:goldOre" + }, + "ttb": 4200, + "textureInfo": "gold_ore", + "harvestType": "rock", + "drops": "Raw Gold", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Gold Ore" + }, + "specialToolBonusDrops": { + "Golem Pickaxe": [ + { + "bonusDrop": "Iron Fragment", + "probabilityOfDrop": 0.3333333333333333 + }, + { + "bonusDrop": "Gold Fragment", + "probabilityOfDrop": 0.25 + }, + { + "bonusDrop": "Diamond Fragment", + "probabilityOfDrop": 0.2 + }, + { + "bonusDrop": "Moonstone Fragment", + "probabilityOfDrop": 0.16666666666666666 + }, + { + "bonusDrop": "Coal", + "probabilityOfDrop": 0.14285714285714285 + } + ] + }, + "harvestLevel": 3, + "onMinedAura": 30, + "id": 42, + "name": "Gold Ore", + "stackable": true, + "meta": { + "rootName": "Gold Ore", + "rootId": 42, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 115 + }, + "Lapis Lazuli Ore": { + "displayName": { + "translationKey": "item:lapisLazuliOre" + }, + "ttb": 4200, + "textureInfo": "lapis_ore", + "harvestType": "rock", + "harvestLevel": 3, + "id": 43, + "name": "Lapis Lazuli Ore", + "stackable": true, + "meta": { + "rootName": "Lapis Lazuli Ore", + "rootId": 43, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 116 + }, + "Emerald Ore": { + "displayName": { + "translationKey": "item:emeraldOre" + }, + "ttb": 4500, + "textureInfo": "emerald_ore", + "harvestType": "rock", + "harvestLevel": 3, + "id": 44, + "name": "Emerald Ore", + "stackable": true, + "meta": { + "rootName": "Emerald Ore", + "rootId": 44, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 117 + }, + "Diamond Ore": { + "displayName": { + "translationKey": "item:diamondOre" + }, + "ttb": 5000, + "textureInfo": "diamond_ore", + "harvestType": "rock", + "harvestLevel": 3, + "drops": "Diamond", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Diamond Ore" + }, + "specialToolBonusDrops": { + "Golem Pickaxe": [ + { + "bonusDrop": "Iron Fragment", + "probabilityOfDrop": 0.3333333333333333 + }, + { + "bonusDrop": "Gold Fragment", + "probabilityOfDrop": 0.25 + }, + { + "bonusDrop": "Diamond Fragment", + "probabilityOfDrop": 0.2 + }, + { + "bonusDrop": "Moonstone Fragment", + "probabilityOfDrop": 0.16666666666666666 + }, + { + "bonusDrop": "Coal", + "probabilityOfDrop": 0.14285714285714285 + } + ] + }, + "description": { + "translationKey": "item:diamondOreDescription" + }, + "onMinedAura": 40, + "id": 45, + "name": "Diamond Ore", + "stackable": true, + "meta": { + "rootName": "Diamond Ore", + "rootId": 45, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 118 + }, + "Block of Coal": { + "displayName": { + "translationKey": "item:blockOfCoal" + }, + "ttb": 4500, + "textureInfo": "coal_block", + "harvestType": "rock", + "id": 46, + "name": "Block of Coal", + "stackable": true, + "meta": { + "rootName": "Block of Coal", + "rootId": 46, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 119 + }, + "Block of Iron": { + "displayName": { + "translationKey": "item:blockOfIron" + }, + "ttb": 5400, + "textureInfo": "iron_block", + "harvestType": "rock", + "id": 47, + "name": "Block of Iron", + "stackable": true, + "meta": { + "rootName": "Block of Iron", + "rootId": 47, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 120 + }, + "Block of Gold": { + "displayName": { + "translationKey": "item:blockOfGold" + }, + "ttb": 6300, + "textureInfo": "gold_block", + "harvestType": "rock", + "id": 48, + "name": "Block of Gold", + "stackable": true, + "meta": { + "rootName": "Block of Gold", + "rootId": 48, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 121 + }, + "Block of Lapis Lazuli": { + "displayName": { + "translationKey": "item:blockOfLapisLazuli" + }, + "ttb": 6300, + "textureInfo": "lapis_block", + "harvestType": "rock", + "id": 49, + "name": "Block of Lapis Lazuli", + "stackable": true, + "meta": { + "rootName": "Block of Lapis Lazuli", + "rootId": 49, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 122 + }, + "Block of Emerald": { + "displayName": { + "translationKey": "item:blockOfEmerald" + }, + "ttb": 6750, + "textureInfo": "emerald_block", + "harvestType": "rock", + "id": 50, + "name": "Block of Emerald", + "stackable": true, + "meta": { + "rootName": "Block of Emerald", + "rootId": 50, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 123 + }, + "White Wool": { + "displayName": { + "translationKey": "item:whiteWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_white", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 51, + "name": "White Wool", + "stackable": true, + "meta": { + "rootName": "White Wool", + "rootId": 51, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 124 + }, + "Orange Wool": { + "displayName": { + "translationKey": "item:orangeWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_orange", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 52, + "name": "Orange Wool", + "stackable": true, + "meta": { + "rootName": "Orange Wool", + "rootId": 52, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 125 + }, + "Magenta Wool": { + "displayName": { + "translationKey": "item:magentaWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_magenta", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 53, + "name": "Magenta Wool", + "stackable": true, + "meta": { + "rootName": "Magenta Wool", + "rootId": 53, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 126 + }, + "Light Blue Wool": { + "displayName": { + "translationKey": "item:lightBlueWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_light_blue", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 54, + "name": "Light Blue Wool", + "stackable": true, + "meta": { + "rootName": "Light Blue Wool", + "rootId": 54, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 127 + }, + "Yellow Wool": { + "displayName": { + "translationKey": "item:yellowWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_yellow", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 55, + "name": "Yellow Wool", + "stackable": true, + "meta": { + "rootName": "Yellow Wool", + "rootId": 55, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 128 + }, + "Lime Wool": { + "displayName": { + "translationKey": "item:limeWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_lime", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 56, + "name": "Lime Wool", + "stackable": true, + "meta": { + "rootName": "Lime Wool", + "rootId": 56, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 129 + }, + "Pink Wool": { + "displayName": { + "translationKey": "item:pinkWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_pink", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 57, + "name": "Pink Wool", + "stackable": true, + "meta": { + "rootName": "Pink Wool", + "rootId": 57, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 130 + }, + "Gray Wool": { + "displayName": { + "translationKey": "item:grayWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_gray", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 58, + "name": "Gray Wool", + "stackable": true, + "meta": { + "rootName": "Gray Wool", + "rootId": 58, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 131 + }, + "Light Gray Wool": { + "displayName": { + "translationKey": "item:lightGrayWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_light_grey", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 59, + "name": "Light Gray Wool", + "stackable": true, + "meta": { + "rootName": "Light Gray Wool", + "rootId": 59, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 132 + }, + "Cyan Wool": { + "displayName": { + "translationKey": "item:cyanWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_cyan", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 60, + "name": "Cyan Wool", + "stackable": true, + "meta": { + "rootName": "Cyan Wool", + "rootId": 60, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 133 + }, + "Purple Wool": { + "displayName": { + "translationKey": "item:purpleWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_purple", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 61, + "name": "Purple Wool", + "stackable": true, + "meta": { + "rootName": "Purple Wool", + "rootId": 61, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 134 + }, + "Blue Wool": { + "displayName": { + "translationKey": "item:blueWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_blue", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 62, + "name": "Blue Wool", + "stackable": true, + "meta": { + "rootName": "Blue Wool", + "rootId": 62, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 135 + }, + "Brown Wool": { + "displayName": { + "translationKey": "item:brownWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_brown", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 63, + "name": "Brown Wool", + "stackable": true, + "meta": { + "rootName": "Brown Wool", + "rootId": 63, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 136 + }, + "Green Wool": { + "displayName": { + "translationKey": "item:greenWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_green", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 64, + "name": "Green Wool", + "stackable": true, + "meta": { + "rootName": "Green Wool", + "rootId": 64, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 137 + }, + "Red Wool": { + "displayName": { + "translationKey": "item:redWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_red", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 65, + "name": "Red Wool", + "stackable": true, + "meta": { + "rootName": "Red Wool", + "rootId": 65, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 138 + }, + "Black Wool": { + "displayName": { + "translationKey": "item:blackWool" + }, + "ttb": 960, + "textureInfo": "wool_colored_black", + "harvestType": "cuttable", + "soundType": { + "break": "cloth", + "place": "cloth" + }, + "id": 66, + "name": "Black Wool", + "stackable": true, + "meta": { + "rootName": "Black Wool", + "rootId": 66, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 139 + }, + "Baked Clay": { + "displayName": { + "translationKey": "item:bakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay", + "harvestType": "rock", + "id": 67, + "name": "Baked Clay", + "stackable": true, + "meta": { + "rootName": "Baked Clay", + "rootId": 67, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 140 + }, + "White Baked Clay": { + "displayName": { + "translationKey": "item:whiteBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_white", + "harvestType": "rock", + "id": 68, + "name": "White Baked Clay", + "stackable": true, + "meta": { + "rootName": "White Baked Clay", + "rootId": 68, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 141 + }, + "Orange Baked Clay": { + "displayName": { + "translationKey": "item:orangeBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_orange", + "harvestType": "rock", + "id": 69, + "name": "Orange Baked Clay", + "stackable": true, + "meta": { + "rootName": "Orange Baked Clay", + "rootId": 69, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 142 + }, + "Magenta Baked Clay": { + "displayName": { + "translationKey": "item:magentaBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_magenta", + "harvestType": "rock", + "id": 70, + "name": "Magenta Baked Clay", + "stackable": true, + "meta": { + "rootName": "Magenta Baked Clay", + "rootId": 70, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 143 + }, + "Light Blue Baked Clay": { + "displayName": { + "translationKey": "item:lightBlueBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_light_blue", + "harvestType": "rock", + "id": 71, + "name": "Light Blue Baked Clay", + "stackable": true, + "meta": { + "rootName": "Light Blue Baked Clay", + "rootId": 71, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 144 + }, + "Yellow Baked Clay": { + "displayName": { + "translationKey": "item:yellowBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_yellow", + "harvestType": "rock", + "id": 72, + "name": "Yellow Baked Clay", + "stackable": true, + "meta": { + "rootName": "Yellow Baked Clay", + "rootId": 72, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 145 + }, + "Lime Baked Clay": { + "displayName": { + "translationKey": "item:limeBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_lime", + "harvestType": "rock", + "id": 73, + "name": "Lime Baked Clay", + "stackable": true, + "meta": { + "rootName": "Lime Baked Clay", + "rootId": 73, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 146 + }, + "Pink Baked Clay": { + "displayName": { + "translationKey": "item:pinkBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_pink", + "harvestType": "rock", + "id": 74, + "name": "Pink Baked Clay", + "stackable": true, + "meta": { + "rootName": "Pink Baked Clay", + "rootId": 74, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 147 + }, + "Gray Baked Clay": { + "displayName": { + "translationKey": "item:grayBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_gray", + "harvestType": "rock", + "id": 75, + "name": "Gray Baked Clay", + "stackable": true, + "meta": { + "rootName": "Gray Baked Clay", + "rootId": 75, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 148 + }, + "Light Gray Baked Clay": { + "displayName": { + "translationKey": "item:lightGrayBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_silver", + "harvestType": "rock", + "id": 76, + "name": "Light Gray Baked Clay", + "stackable": true, + "meta": { + "rootName": "Light Gray Baked Clay", + "rootId": 76, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 149 + }, + "Cyan Baked Clay": { + "displayName": { + "translationKey": "item:cyanBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_cyan", + "harvestType": "rock", + "id": 77, + "name": "Cyan Baked Clay", + "stackable": true, + "meta": { + "rootName": "Cyan Baked Clay", + "rootId": 77, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 150 + }, + "Purple Baked Clay": { + "displayName": { + "translationKey": "item:purpleBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_purple", + "harvestType": "rock", + "id": 78, + "name": "Purple Baked Clay", + "stackable": true, + "meta": { + "rootName": "Purple Baked Clay", + "rootId": 78, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 151 + }, + "Blue Baked Clay": { + "displayName": { + "translationKey": "item:blueBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_blue", + "harvestType": "rock", + "id": 79, + "name": "Blue Baked Clay", + "stackable": true, + "meta": { + "rootName": "Blue Baked Clay", + "rootId": 79, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 152 + }, + "Brown Baked Clay": { + "displayName": { + "translationKey": "item:brownBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_brown", + "harvestType": "rock", + "id": 80, + "name": "Brown Baked Clay", + "stackable": true, + "meta": { + "rootName": "Brown Baked Clay", + "rootId": 80, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 153 + }, + "Green Baked Clay": { + "displayName": { + "translationKey": "item:greenBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_green", + "harvestType": "rock", + "id": 81, + "name": "Green Baked Clay", + "stackable": true, + "meta": { + "rootName": "Green Baked Clay", + "rootId": 81, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 154 + }, + "Red Baked Clay": { + "displayName": { + "translationKey": "item:redBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_red", + "harvestType": "rock", + "id": 82, + "name": "Red Baked Clay", + "stackable": true, + "meta": { + "rootName": "Red Baked Clay", + "rootId": 82, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 155 + }, + "Black Baked Clay": { + "displayName": { + "translationKey": "item:blackBakedClay" + }, + "ttb": 1500, + "textureInfo": "hardened_clay_stained_black", + "harvestType": "rock", + "id": 83, + "name": "Black Baked Clay", + "stackable": true, + "meta": { + "rootName": "Black Baked Clay", + "rootId": 83, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 156 + }, + "Gray Concrete": { + "displayName": { + "translationKey": "item:grayConcrete" + }, + "ttb": 2160, + "textureInfo": "gray_concrete", + "harvestType": "rock", + "id": 84, + "name": "Gray Concrete", + "stackable": true, + "meta": { + "rootName": "Gray Concrete", + "rootId": 84, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "Light Gray Concrete": { + "displayName": { + "translationKey": "item:lightGrayConcrete" + }, + "ttb": 2160, + "textureInfo": "light_gray_concrete", + "harvestType": "rock", + "id": 85, + "name": "Light Gray Concrete", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete", + "rootId": 85, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "Black Concrete": { + "displayName": { + "translationKey": "item:blackConcrete" + }, + "ttb": 2160, + "textureInfo": "black_concrete", + "harvestType": "rock", + "id": 86, + "name": "Black Concrete", + "stackable": true, + "meta": { + "rootName": "Black Concrete", + "rootId": 86, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "Blue Concrete": { + "displayName": { + "translationKey": "item:blueConcrete" + }, + "ttb": 2160, + "textureInfo": "blue_concrete", + "harvestType": "rock", + "id": 87, + "name": "Blue Concrete", + "stackable": true, + "meta": { + "rootName": "Blue Concrete", + "rootId": 87, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "Brown Concrete": { + "displayName": { + "translationKey": "item:brownConcrete" + }, + "ttb": 2160, + "textureInfo": "brown_concrete", + "harvestType": "rock", + "id": 88, + "name": "Brown Concrete", + "stackable": true, + "meta": { + "rootName": "Brown Concrete", + "rootId": 88, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "Cyan Concrete": { + "displayName": { + "translationKey": "item:cyanConcrete" + }, + "ttb": 2160, + "textureInfo": "cyan_concrete", + "harvestType": "rock", + "id": 89, + "name": "Cyan Concrete", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete", + "rootId": 89, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "Light Blue Concrete": { + "displayName": { + "translationKey": "item:lightBlueConcrete" + }, + "ttb": 2160, + "textureInfo": "light_blue_concrete", + "harvestType": "rock", + "id": 90, + "name": "Light Blue Concrete", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete", + "rootId": 90, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "Lime Concrete": { + "displayName": { + "translationKey": "item:limeConcrete" + }, + "ttb": 2160, + "textureInfo": "lime_concrete", + "harvestType": "rock", + "id": 91, + "name": "Lime Concrete", + "stackable": true, + "meta": { + "rootName": "Lime Concrete", + "rootId": 91, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "Magenta Concrete": { + "displayName": { + "translationKey": "item:magentaConcrete" + }, + "ttb": 2160, + "textureInfo": "magenta_concrete", + "harvestType": "rock", + "id": 92, + "name": "Magenta Concrete", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete", + "rootId": 92, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "Orange Concrete": { + "displayName": { + "translationKey": "item:orangeConcrete" + }, + "ttb": 2160, + "textureInfo": "orange_concrete", + "harvestType": "rock", + "id": 93, + "name": "Orange Concrete", + "stackable": true, + "meta": { + "rootName": "Orange Concrete", + "rootId": 93, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "Pink Concrete": { + "displayName": { + "translationKey": "item:pinkConcrete" + }, + "ttb": 2160, + "textureInfo": "pink_concrete", + "harvestType": "rock", + "id": 94, + "name": "Pink Concrete", + "stackable": true, + "meta": { + "rootName": "Pink Concrete", + "rootId": 94, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "Purple Concrete": { + "displayName": { + "translationKey": "item:purpleConcrete" + }, + "ttb": 2160, + "textureInfo": "purple_concrete", + "harvestType": "rock", + "id": 95, + "name": "Purple Concrete", + "stackable": true, + "meta": { + "rootName": "Purple Concrete", + "rootId": 95, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "Red Concrete": { + "displayName": { + "translationKey": "item:redConcrete" + }, + "ttb": 2160, + "textureInfo": "red_concrete", + "harvestType": "rock", + "id": 96, + "name": "Red Concrete", + "stackable": true, + "meta": { + "rootName": "Red Concrete", + "rootId": 96, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "White Concrete": { + "displayName": { + "translationKey": "item:whiteConcrete" + }, + "ttb": 2160, + "textureInfo": "white_concrete", + "harvestType": "rock", + "id": 97, + "name": "White Concrete", + "stackable": true, + "meta": { + "rootName": "White Concrete", + "rootId": 97, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "Green Concrete": { + "displayName": { + "translationKey": "item:greenConcrete" + }, + "ttb": 2160, + "textureInfo": "green_concrete", + "harvestType": "rock", + "id": 98, + "name": "Green Concrete", + "stackable": true, + "meta": { + "rootName": "Green Concrete", + "rootId": 98, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "Yellow Concrete": { + "displayName": { + "translationKey": "item:yellowConcrete" + }, + "ttb": 2160, + "textureInfo": "yellow_concrete", + "harvestType": "rock", + "id": 99, + "name": "Yellow Concrete", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete", + "rootId": 99, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "Pine Leaves": { + "displayName": { + "translationKey": "item:pineLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_pine", + "harvestType": "cuttable", + "id": 100, + "name": "Pine Leaves", + "stackable": true, + "meta": { + "rootName": "Pine Leaves", + "rootId": 100, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 173 + }, + "Aspen Leaves": { + "displayName": { + "translationKey": "item:aspenLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_aspen", + "harvestType": "cuttable", + "id": 101, + "name": "Aspen Leaves", + "stackable": true, + "meta": { + "rootName": "Aspen Leaves", + "rootId": 101, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 174 + }, + "Maple Leaves": { + "displayName": { + "translationKey": "item:mapleLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_maple", + "harvestType": "cuttable", + "id": 102, + "name": "Maple Leaves", + "stackable": true, + "meta": { + "rootName": "Maple Leaves", + "rootId": 102, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 175 + }, + "Jungle Leaves": { + "displayName": { + "translationKey": "item:jungleLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_jungle", + "harvestType": "cuttable", + "id": 103, + "name": "Jungle Leaves", + "stackable": true, + "meta": { + "rootName": "Jungle Leaves", + "rootId": 103, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 176 + }, + "Pumpkin_placeholder": { + "ttb": 1200, + "textureInfo": "pumpkin_face_on", + "harvestType": "wood", + "id": 104, + "name": "Pumpkin_placeholder", + "stackable": true, + "meta": { + "rootName": "Pumpkin_placeholder", + "rootId": 104, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 177 + }, + "Watermelon": { + "displayName": { + "translationKey": "item:watermelon" + }, + "ttb": 1200, + "textureInfo": [ + "watermelon_side", + "watermelon_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "id": 105, + "name": "Watermelon", + "stackable": true, + "meta": { + "rootName": "Watermelon", + "rootId": 105, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 178, + 179 + ] + }, + "Glass": { + "displayName": { + "translationKey": "item:glass" + }, + "ttb": 450, + "textureInfo": "glass", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 106, + "name": "Glass", + "stackable": true, + "meta": { + "rootName": "Glass", + "rootId": 106, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 180 + }, + "Black Glass": { + "displayName": { + "translationKey": "item:blackGlass" + }, + "ttb": 450, + "textureInfo": "glass_black", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 107, + "name": "Black Glass", + "stackable": true, + "meta": { + "rootName": "Black Glass", + "rootId": 107, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 181 + }, + "Blue Glass": { + "displayName": { + "translationKey": "item:blueGlass" + }, + "ttb": 450, + "textureInfo": "glass_blue", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 108, + "name": "Blue Glass", + "stackable": true, + "meta": { + "rootName": "Blue Glass", + "rootId": 108, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 182 + }, + "Brown Glass": { + "displayName": { + "translationKey": "item:brownGlass" + }, + "ttb": 450, + "textureInfo": "glass_brown", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 109, + "name": "Brown Glass", + "stackable": true, + "meta": { + "rootName": "Brown Glass", + "rootId": 109, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 183 + }, + "Cyan Glass": { + "displayName": { + "translationKey": "item:cyanGlass" + }, + "ttb": 450, + "textureInfo": "glass_cyan", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 110, + "name": "Cyan Glass", + "stackable": true, + "meta": { + "rootName": "Cyan Glass", + "rootId": 110, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 184 + }, + "Gray Glass": { + "displayName": { + "translationKey": "item:grayGlass" + }, + "ttb": 450, + "textureInfo": "glass_gray", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 111, + "name": "Gray Glass", + "stackable": true, + "meta": { + "rootName": "Gray Glass", + "rootId": 111, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 185 + }, + "Light Gray Glass": { + "displayName": { + "translationKey": "item:lightGrayGlass" + }, + "ttb": 450, + "textureInfo": "glass_light_gray", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 112, + "name": "Light Gray Glass", + "stackable": true, + "meta": { + "rootName": "Light Gray Glass", + "rootId": 112, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 186 + }, + "Green Glass": { + "displayName": { + "translationKey": "item:greenGlass" + }, + "ttb": 450, + "textureInfo": "glass_green", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 113, + "name": "Green Glass", + "stackable": true, + "meta": { + "rootName": "Green Glass", + "rootId": 113, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 187 + }, + "Light Blue Glass": { + "displayName": { + "translationKey": "item:lightBlueGlass" + }, + "ttb": 450, + "textureInfo": "glass_light_blue", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 114, + "name": "Light Blue Glass", + "stackable": true, + "meta": { + "rootName": "Light Blue Glass", + "rootId": 114, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 188 + }, + "Lime Glass": { + "displayName": { + "translationKey": "item:limeGlass" + }, + "ttb": 450, + "textureInfo": "glass_lime", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 115, + "name": "Lime Glass", + "stackable": true, + "meta": { + "rootName": "Lime Glass", + "rootId": 115, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 189 + }, + "Magenta Glass": { + "displayName": { + "translationKey": "item:magentaGlass" + }, + "ttb": 450, + "textureInfo": "glass_magenta", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 116, + "name": "Magenta Glass", + "stackable": true, + "meta": { + "rootName": "Magenta Glass", + "rootId": 116, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 190 + }, + "Orange Glass": { + "displayName": { + "translationKey": "item:orangeGlass" + }, + "ttb": 450, + "textureInfo": "glass_orange", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 117, + "name": "Orange Glass", + "stackable": true, + "meta": { + "rootName": "Orange Glass", + "rootId": 117, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 191 + }, + "Pink Glass": { + "displayName": { + "translationKey": "item:pinkGlass" + }, + "ttb": 450, + "textureInfo": "glass_pink", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 118, + "name": "Pink Glass", + "stackable": true, + "meta": { + "rootName": "Pink Glass", + "rootId": 118, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 192 + }, + "Purple Glass": { + "displayName": { + "translationKey": "item:purpleGlass" + }, + "ttb": 450, + "textureInfo": "glass_purple", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 119, + "name": "Purple Glass", + "stackable": true, + "meta": { + "rootName": "Purple Glass", + "rootId": 119, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 193 + }, + "Red Glass": { + "displayName": { + "translationKey": "item:redGlass" + }, + "ttb": 450, + "textureInfo": "glass_red", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 120, + "name": "Red Glass", + "stackable": true, + "meta": { + "rootName": "Red Glass", + "rootId": 120, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 194 + }, + "White Glass": { + "displayName": { + "translationKey": "item:whiteGlass" + }, + "ttb": 450, + "textureInfo": "glass_white", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 121, + "name": "White Glass", + "stackable": true, + "meta": { + "rootName": "White Glass", + "rootId": 121, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 195 + }, + "Yellow Glass": { + "displayName": { + "translationKey": "item:yellowGlass" + }, + "ttb": 450, + "textureInfo": "glass_yellow", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 122, + "name": "Yellow Glass", + "stackable": true, + "meta": { + "rootName": "Yellow Glass", + "rootId": 122, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 196 + }, + "UNUSED BLOCK TYPE": { + "ttb": 450, + "textureInfo": "glass_silver", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 123, + "name": "UNUSED BLOCK TYPE", + "stackable": true, + "meta": { + "rootName": "UNUSED BLOCK TYPE", + "rootId": 123, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 197 + }, + "Dim Lamp On": { + "ttb": 450, + "textureInfo": "redstone_lamp_on", + "harvestType": "rock", + "id": 124, + "name": "Dim Lamp On", + "stackable": true, + "meta": { + "rootName": "Dim Lamp On", + "rootId": 124, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 198 + }, + "Dim Lamp Off": { + "ttb": 450, + "textureInfo": "redstone_lamp_off", + "harvestType": "rock", + "id": 125, + "name": "Dim Lamp Off", + "stackable": true, + "meta": { + "rootName": "Dim Lamp Off", + "rootId": 125, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 199 + }, + "Water": { + "displayName": { + "translationKey": "item:water" + }, + "textureInfo": [ + 0.5, + 0.5, + 0.8, + 0.9 + ], + "xn": true, + "drops": null, + "harvestType": "rock", + "id": 126, + "name": "Water", + "stackable": true, + "meta": { + "rootName": "Water", + "rootId": 126, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Invisible Solid": { + "ttb": 3000, + "textureInfo": "invisible_solid", + "transTex": true, + "harvestType": "rock", + "id": 127, + "name": "Invisible Solid", + "stackable": true, + "meta": { + "rootName": "Invisible Solid", + "rootId": 127, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 200 + }, + "Bricks": { + "displayName": { + "translationKey": "item:bricks" + }, + "ttb": 2400, + "textureInfo": "brick", + "harvestType": "rock", + "id": 128, + "name": "Bricks", + "stackable": true, + "meta": { + "rootName": "Bricks", + "rootId": 128, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 201 + }, + "Stone Bricks": { + "displayName": { + "translationKey": "item:stoneBricks" + }, + "ttb": 1800, + "textureInfo": "stonebrick", + "harvestType": "rock", + "id": 129, + "name": "Stone Bricks", + "stackable": true, + "meta": { + "rootName": "Stone Bricks", + "rootId": 129, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 202 + }, + "Dark Red Brick": { + "displayName": { + "translationKey": "item:darkRedBrick" + }, + "ttb": 2400, + "textureInfo": "nether_brick", + "harvestType": "rock", + "id": 130, + "name": "Dark Red Brick", + "stackable": true, + "meta": { + "rootName": "Dark Red Brick", + "rootId": 130, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 203 + }, + "Dark Red Stone": { + "displayName": { + "translationKey": "item:darkRedStone" + }, + "ttb": 1200, + "textureInfo": "netherrack", + "harvestType": "rock", + "id": 131, + "name": "Dark Red Stone", + "stackable": true, + "meta": { + "rootName": "Dark Red Stone", + "rootId": 131, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 204 + }, + "Block of Quartz": { + "displayName": { + "translationKey": "item:blockOfQuartz" + }, + "ttb": 960, + "textureInfo": "quartz_block_side", + "harvestType": "rock", + "id": 132, + "name": "Block of Quartz", + "stackable": true, + "meta": { + "rootName": "Block of Quartz", + "rootId": 132, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 205 + }, + "Chiseled Block of Quartz": { + "displayName": { + "translationKey": "item:chiseledBlockOfQuartz" + }, + "ttb": 960, + "textureInfo": "quartz_block_chiseled", + "harvestType": "rock", + "id": 133, + "name": "Chiseled Block of Quartz", + "stackable": true, + "meta": { + "rootName": "Chiseled Block of Quartz", + "rootId": 133, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 206 + }, + "Engraved Stone": { + "displayName": { + "translationKey": "item:engravedStone" + }, + "ttb": 1800, + "textureInfo": "stonebrick_carved", + "harvestType": "rock", + "id": 134, + "name": "Engraved Stone", + "stackable": true, + "meta": { + "rootName": "Engraved Stone", + "rootId": 134, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 207 + }, + "Mossy Stone Bricks": { + "displayName": { + "translationKey": "item:mossyStoneBricks" + }, + "ttb": 1800, + "textureInfo": "stonebrick_mossy", + "harvestType": "rock", + "id": 135, + "name": "Mossy Stone Bricks", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks", + "rootId": 135, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 208 + }, + "Cracked Stone Bricks": { + "displayName": { + "translationKey": "item:crackedStoneBricks" + }, + "ttb": 1800, + "textureInfo": "stonebrick_cracked", + "harvestType": "rock", + "id": 136, + "name": "Cracked Stone Bricks", + "stackable": true, + "meta": { + "rootName": "Cracked Stone Bricks", + "rootId": 136, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 209 + }, + "Smooth Sandstone": { + "displayName": { + "translationKey": "item:smoothSandstone" + }, + "ttb": 960, + "textureInfo": "sandstone_top", + "harvestType": "rock", + "id": 137, + "name": "Smooth Sandstone", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone", + "rootId": 137, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "Engraved Sandstone": { + "displayName": { + "translationKey": "item:engravedSandstone" + }, + "ttb": 960, + "textureInfo": "chiseled_sandstone", + "harvestType": "rock", + "id": 138, + "name": "Engraved Sandstone", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone", + "rootId": 138, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 211 + }, + "Ice": { + "displayName": { + "translationKey": "item:ice" + }, + "ttb": 1200, + "textureInfo": "ice", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 139, + "name": "Ice", + "stackable": true, + "meta": { + "rootName": "Ice", + "rootId": 139, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 212 + }, + "Obsidian": { + "displayName": { + "translationKey": "item:obsidian" + }, + "ttb": 40000, + "textureInfo": "obsidian", + "harvestType": "rock", + "harvestLevel": 5, + "id": 140, + "name": "Obsidian", + "stackable": true, + "meta": { + "rootName": "Obsidian", + "rootId": 140, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 213 + }, + "Hay Bale": { + "displayName": { + "translationKey": "item:hayBale" + }, + "ttb": 600, + "textureInfo": "hay_block_side", + "harvestType": "cuttable", + "id": 141, + "name": "Hay Bale", + "stackable": true, + "meta": { + "rootName": "Hay Bale", + "rootId": 141, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 214 + }, + "Sponge": { + "displayName": { + "translationKey": "item:sponge" + }, + "ttb": 720, + "textureInfo": "sponge", + "harvestType": "granule", + "id": 142, + "name": "Sponge", + "stackable": true, + "meta": { + "rootName": "Sponge", + "rootId": 142, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 215 + }, + "Beacon": { + "displayName": { + "translationKey": "item:beacon" + }, + "ttb": 3600, + "textureInfo": "beacon", + "harvestType": "rock", + "id": 143, + "name": "Beacon", + "stackable": true, + "meta": { + "rootName": "Beacon", + "rootId": 143, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 216 + }, + "temp": { + "ttb": 1000, + "harvestType": "rock", + "id": 144, + "name": "temp", + "stackable": true, + "meta": { + "rootName": "temp", + "rootId": 144, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Golden Decoration": { + "displayName": { + "translationKey": "item:goldenDecoration" + }, + "ttb": 1000, + "textureInfo": "glowstone", + "harvestType": "rock", + "id": 145, + "name": "Golden Decoration", + "stackable": true, + "meta": { + "rootName": "Golden Decoration", + "rootId": 145, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 217 + }, + "Moonstone Explosive": { + "displayName": { + "translationKey": "item:moonstoneExplosive" + }, + "ttb": 50, + "textureInfo": [ + "moonstone_explosive_side", + "moonstone_explosive_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "description": { + "translationKey": "item:moonstoneExplosiveDescription" + }, + "id": 146, + "name": "Moonstone Explosive", + "stackable": true, + "meta": { + "rootName": "Moonstone Explosive", + "rootId": 146, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 218, + 219 + ] + }, + "Bedrock": { + "displayName": { + "translationKey": "item:bedrock" + }, + "ttb": 500000000000, + "textureInfo": "bedrock", + "soundType": { + "break": "stone", + "place": "stone" + }, + "id": 147, + "name": "Bedrock", + "stackable": true, + "meta": { + "rootName": "Bedrock", + "rootId": 147, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 220 + }, + "Smooth Double Stone Slab": { + "displayName": { + "translationKey": "item:smoothDoubleStoneSlab" + }, + "ttb": 2400, + "textureInfo": "smooth_stone", + "harvestType": "rock", + "id": 148, + "name": "Smooth Double Stone Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Double Stone Slab", + "rootId": 148, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 104 + }, + "Cactus": { + "displayName": { + "translationKey": "item:cactus" + }, + "ttb": 300, + "textureInfo": "small_cactus", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "id": 149, + "name": "Cactus", + "stackable": true, + "meta": { + "rootName": "Cactus", + "rootId": 149, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Grass": { + "displayName": { + "translationKey": "item:grass" + }, + "ttb": 1, + "textureInfo": "tallgrass", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "drops": null, + "harvestType": "cuttable", + "specialToolDrop": { + "tool": "Shears", + "drops": "Grass" + }, + "canBePlacedOver": true, + "id": 150, + "name": "Grass", + "stackable": true, + "meta": { + "rootName": "Grass", + "rootId": 150, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Dandelion": { + "displayName": { + "translationKey": "item:dandelion" + }, + "ttb": 300, + "textureInfo": "dandelion", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "dandelion", + "id": 151, + "name": "Dandelion", + "stackable": true, + "meta": { + "rootName": "Dandelion", + "rootId": 151, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Poppy": { + "displayName": { + "translationKey": "item:poppy" + }, + "ttb": 300, + "textureInfo": "poppy", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "poppy", + "id": 152, + "name": "Poppy", + "stackable": true, + "meta": { + "rootName": "Poppy", + "rootId": 152, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Tulip": { + "displayName": { + "translationKey": "item:redTulip" + }, + "ttb": 300, + "textureInfo": "red_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "red_tulip", + "id": 153, + "name": "Red Tulip", + "stackable": true, + "meta": { + "rootName": "Red Tulip", + "rootId": 153, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pink Tulip": { + "displayName": { + "translationKey": "item:pinkTulip" + }, + "ttb": 300, + "textureInfo": "pink_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "pink_tulip", + "id": 154, + "name": "Pink Tulip", + "stackable": true, + "meta": { + "rootName": "Pink Tulip", + "rootId": 154, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "White Tulip": { + "displayName": { + "translationKey": "item:whiteTulip" + }, + "ttb": 300, + "textureInfo": "white_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "white_tulip", + "id": 155, + "name": "White Tulip", + "stackable": true, + "meta": { + "rootName": "White Tulip", + "rootId": 155, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Orange Tulip": { + "displayName": { + "translationKey": "item:orangeTulip" + }, + "ttb": 300, + "textureInfo": "orange_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "orange_tulip", + "id": 156, + "name": "Orange Tulip", + "stackable": true, + "meta": { + "rootName": "Orange Tulip", + "rootId": 156, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Daisy": { + "displayName": { + "translationKey": "item:daisy" + }, + "ttb": 300, + "textureInfo": "oxeye_daisy", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "oxeye_daisy", + "id": 157, + "name": "Daisy", + "stackable": true, + "meta": { + "rootName": "Daisy", + "rootId": 157, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Bluebell": { + "displayName": { + "translationKey": "item:bluebell" + }, + "ttb": 300, + "textureInfo": "blue_orchid", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "blue_orchid", + "id": 158, + "name": "Bluebell", + "stackable": true, + "meta": { + "rootName": "Bluebell", + "rootId": 158, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Forget-me-not": { + "displayName": { + "translationKey": "item:forget-Me-Not" + }, + "ttb": 300, + "textureInfo": "cornflower", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cornflower", + "id": 159, + "name": "Forget-me-not", + "stackable": true, + "meta": { + "rootName": "Forget-me-not", + "rootId": 159, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Allium": { + "displayName": { + "translationKey": "item:allium" + }, + "ttb": 300, + "textureInfo": "allium", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "allium", + "id": 160, + "name": "Allium", + "stackable": true, + "meta": { + "rootName": "Allium", + "rootId": 160, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Azure Bluet": { + "displayName": { + "translationKey": "item:azureBluet" + }, + "ttb": 300, + "textureInfo": "azure_bluet", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "azure_bluet", + "id": 161, + "name": "Azure Bluet", + "stackable": true, + "meta": { + "rootName": "Azure Bluet", + "rootId": 161, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lily of the Valley": { + "displayName": { + "translationKey": "item:lillyOfTheValley" + }, + "ttb": 300, + "textureInfo": "lily_of_the_valley", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "lily_of_the_valley", + "id": 162, + "name": "Lily of the Valley", + "stackable": true, + "meta": { + "rootName": "Lily of the Valley", + "rootId": 162, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Shadow Rose": { + "displayName": { + "translationKey": "item:shadowRose" + }, + "ttb": 300, + "textureInfo": "shadow_rose", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "shadow_rose", + "id": 163, + "name": "Shadow Rose", + "stackable": true, + "meta": { + "rootName": "Shadow Rose", + "rootId": 163, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Furnace": { + "displayName": { + "translationKey": "item:furnace" + }, + "ttb": 4200, + "textureInfo": [ + "furnace_front", + "furnace_side", + "furnace_top" + ], + "harvestType": "rock", + "rootMetaDesc": "Furnace|meta|rot1", + "description": { + "translationKey": "item:furnaceDescription" + }, + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 164, + "name": "Furnace", + "stackable": true, + "meta": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 221, + 222, + 223 + ] + }, + "Furnace|meta|rot2": { + "displayName": { + "translationKey": "item:furnace" + }, + "ttb": 4200, + "textureInfo": [ + "furnace_front", + "furnace_side", + "furnace_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:furnaceDescription" + }, + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 165, + "name": "Furnace|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 221, + 222, + 223 + ] + }, + "Furnace|meta|rot3": { + "displayName": { + "translationKey": "item:furnace" + }, + "ttb": 4200, + "textureInfo": [ + "furnace_front", + "furnace_side", + "furnace_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:furnaceDescription" + }, + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 166, + "name": "Furnace|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 221, + 222, + 223 + ] + }, + "Furnace|meta|rot4": { + "displayName": { + "translationKey": "item:furnace" + }, + "ttb": 4200, + "textureInfo": [ + "furnace_front", + "furnace_side", + "furnace_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:furnaceDescription" + }, + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 167, + "name": "Furnace|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 221, + 222, + 223 + ] + }, + "Workbench": { + "displayName": { + "translationKey": "item:workbench" + }, + "ttb": 3000, + "textureInfo": [ + "crafting_table_side", + "crafting_table_top" + ], + "harvestType": "wood", + "rootMetaDesc": "Workbench|meta|rot1", + "description": { + "translationKey": "item:workbenchDescription" + }, + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "id": 168, + "name": "Workbench", + "stackable": true, + "meta": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 224, + 225 + ] + }, + "Workbench|meta|rot2": { + "displayName": { + "translationKey": "item:workbench" + }, + "ttb": 3000, + "textureInfo": [ + "crafting_table_side", + "crafting_table_top" + ], + "harvestType": "wood", + "description": { + "translationKey": "item:workbenchDescription" + }, + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "id": 169, + "name": "Workbench|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 224, + 225 + ] + }, + "Workbench|meta|rot3": { + "displayName": { + "translationKey": "item:workbench" + }, + "ttb": 3000, + "textureInfo": [ + "crafting_table_side", + "crafting_table_top" + ], + "harvestType": "wood", + "description": { + "translationKey": "item:workbenchDescription" + }, + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "id": 170, + "name": "Workbench|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 224, + 225 + ] + }, + "Workbench|meta|rot4": { + "displayName": { + "translationKey": "item:workbench" + }, + "ttb": 3000, + "textureInfo": [ + "crafting_table_side", + "crafting_table_top" + ], + "harvestType": "wood", + "description": { + "translationKey": "item:workbenchDescription" + }, + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "id": 171, + "name": "Workbench|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 224, + 225 + ] + }, + "Block of Diamond": { + "displayName": { + "translationKey": "item:blockOfDiamond" + }, + "ttb": 6750, + "textureInfo": "diamond_block", + "harvestType": "rock", + "id": 172, + "name": "Block of Diamond", + "stackable": true, + "meta": { + "rootName": "Block of Diamond", + "rootId": 172, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 226 + }, + "Maple Door": { + "displayName": { + "translationKey": "item:mapleDoor" + }, + "ttb": 3600, + "itemTexture": "maple_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Maple Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Maple Door", + "id": 173, + "name": "Maple Door", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Door|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 174, + "name": "Maple Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Door|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 175, + "name": "Maple Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Door|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 176, + "name": "Maple Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Door|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 177, + "name": "Maple Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Door|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 178, + "name": "Maple Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Door|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 179, + "name": "Maple Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Door|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 180, + "name": "Maple Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Maple Door Top": { + "ttb": 3600, + "itemTexture": "maple_door", + "harvestType": "wood", + "model": "door", + "drops": "Maple Door", + "rootMetaDesc": "_Maple Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Maple Door Top", + "id": 181, + "name": "_Maple Door Top", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Maple Door Top|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "TB": false, + "id": 182, + "name": "_Maple Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Maple Door Top|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "id": 183, + "name": "_Maple Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Maple Door Top|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "TB": false, + "id": 184, + "name": "_Maple Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Maple Door Top|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "id": 185, + "name": "_Maple Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Maple Door Top|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "TB": false, + "id": 186, + "name": "_Maple Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Maple Door Top|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "id": 187, + "name": "_Maple Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Maple Door Top|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Maple Door", + "TB": false, + "id": 188, + "name": "_Maple Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Trapdoor": { + "displayName": { + "translationKey": "item:mapleTrapdoor" + }, + "ttb": 2800, + "itemTexture": "maple_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Maple Trapdoor|meta|rot1|closed", + "blockModel": "Maple Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 189, + "name": "Maple Trapdoor", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Trapdoor|meta|rot1|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 190, + "name": "Maple Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Trapdoor|meta|rot2|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 191, + "name": "Maple Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Trapdoor|meta|rot2|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 192, + "name": "Maple Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Trapdoor|meta|rot3|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 193, + "name": "Maple Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Trapdoor|meta|rot3|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 194, + "name": "Maple Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Trapdoor|meta|rot4|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 195, + "name": "Maple Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Trapdoor|meta|rot4|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 196, + "name": "Maple Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Sapling": { + "displayName": { + "translationKey": "item:aspenSapling" + }, + "ttb": 1, + "textureInfo": "aspen_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "aspen_sapling", + "id": 197, + "name": "Aspen Sapling", + "stackable": true, + "meta": { + "rootName": "Aspen Sapling", + "rootId": 197, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Sapling": { + "displayName": { + "translationKey": "item:mapleSapling" + }, + "ttb": 1, + "textureInfo": "maple_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "maple_sapling", + "id": 198, + "name": "Maple Sapling", + "stackable": true, + "meta": { + "rootName": "Maple Sapling", + "rootId": 198, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Sapling": { + "displayName": { + "translationKey": "item:jungleSapling" + }, + "ttb": 1, + "textureInfo": "jungle_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "jungle_sapling", + "id": 199, + "name": "Jungle Sapling", + "stackable": true, + "meta": { + "rootName": "Jungle Sapling", + "rootId": 199, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Sapling": { + "displayName": { + "translationKey": "item:plumSapling" + }, + "ttb": 1, + "textureInfo": "plum_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "plum_sapling", + "id": 200, + "name": "Plum Sapling", + "stackable": true, + "meta": { + "rootName": "Plum Sapling", + "rootId": 200, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Sapling": { + "displayName": { + "translationKey": "item:pineSapling" + }, + "ttb": 1, + "textureInfo": "pine_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "pine_sapling", + "id": 201, + "name": "Pine Sapling", + "stackable": true, + "meta": { + "rootName": "Pine Sapling", + "rootId": 201, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Sapling": { + "displayName": { + "translationKey": "item:cedarSapling" + }, + "ttb": 1, + "textureInfo": "cedar_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cedar_sapling", + "id": 202, + "name": "Cedar Sapling", + "stackable": true, + "meta": { + "rootName": "Cedar Sapling", + "rootId": 202, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Log|TreeBase|Maple": { + "ttb": 2400, + "textureInfo": "log_maple", + "harvestType": "wood", + "drops": "Maple Log", + "id": 203, + "name": "Maple Log|TreeBase|Maple", + "stackable": true, + "meta": { + "rootName": "Maple Log", + "rootId": 9, + "metaStr": "TreeBase|Maple", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Maple", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 84 + }, + "Chest": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "rootMetaDesc": "Chest|meta|rot1", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 204, + "name": "Chest", + "stackable": true, + "meta": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "Chest|meta|rot2": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 205, + "name": "Chest|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "Chest|meta|rot3": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 206, + "name": "Chest|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "Chest|meta|rot4": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 207, + "name": "Chest|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "Pine Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_pine", + "harvestType": "cuttable", + "drops": "Pine Leaves", + "id": 208, + "name": "Pine Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Pine Leaves", + "rootId": 100, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 173 + }, + "Aspen Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_aspen", + "harvestType": "cuttable", + "drops": "Aspen Leaves", + "id": 209, + "name": "Aspen Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Aspen Leaves", + "rootId": 101, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 174 + }, + "Maple Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_maple", + "harvestType": "cuttable", + "drops": "Maple Leaves", + "id": 210, + "name": "Maple Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Maple Leaves", + "rootId": 102, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 175 + }, + "Jungle Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_jungle", + "harvestType": "cuttable", + "drops": "Jungle Leaves", + "id": 211, + "name": "Jungle Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Jungle Leaves", + "rootId": 103, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 176 + }, + "Protector": { + "displayName": { + "translationKey": "item:protector" + }, + "ttb": 5000, + "textureInfo": "protector", + "harvestType": "rock", + "description": { + "translationKey": "item:protectorDescription" + }, + "id": 212, + "name": "Protector", + "stackable": true, + "meta": { + "rootName": "Protector", + "rootId": 212, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 230 + }, + "Fat Cactus": { + "displayName": { + "translationKey": "item:fatCactus" + }, + "ttb": 400, + "textureInfo": "cactus_top", + "harvestType": "cuttable", + "damage": 22, + "id": 213, + "name": "Fat Cactus", + "stackable": true, + "meta": { + "rootName": "Fat Cactus", + "rootId": 213, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 231 + }, + "Dry Fat Cactus": { + "displayName": { + "translationKey": "item:dryFatCactus" + }, + "ttb": 400, + "textureInfo": "cactus_dry", + "harvestType": "cuttable", + "damage": 27, + "id": 214, + "name": "Dry Fat Cactus", + "stackable": true, + "meta": { + "rootName": "Dry Fat Cactus", + "rootId": 214, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 232 + }, + "Maple Ladder": { + "displayName": { + "translationKey": "item:ladder" + }, + "ttb": 1000, + "itemTexture": "ladder_maple", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Maple Ladder|meta|rot1", + "TB": false, + "blockModel": "Maple Ladder", + "blockModelItem": true, + "id": 215, + "name": "Maple Ladder", + "stackable": true, + "meta": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:ladder" + }, + "ttb": 1000, + "itemTexture": "ladder_maple", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "blockModel": "Maple Ladder", + "blockModelItem": true, + "id": 216, + "name": "Maple Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:ladder" + }, + "ttb": 1000, + "itemTexture": "ladder_maple", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "blockModel": "Maple Ladder", + "blockModelItem": true, + "id": 217, + "name": "Maple Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Maple Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:ladder" + }, + "ttb": 1000, + "itemTexture": "ladder_maple", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "blockModel": "Maple Ladder", + "blockModelItem": true, + "id": 218, + "name": "Maple Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Vines": { + "displayName": { + "translationKey": "item:vines" + }, + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "rootMetaDesc": "Vines|meta|rot1", + "blockModel": "Vines", + "modelScale": 10, + "heldItemScale": 10, + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 219, + "name": "Vines", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Vines|meta|rot2": { + "displayName": { + "translationKey": "item:vines" + }, + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "blockModel": "Vines", + "modelScale": 10, + "heldItemScale": 10, + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 220, + "name": "Vines|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Vines|meta|rot3": { + "displayName": { + "translationKey": "item:vines" + }, + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "blockModel": "Vines", + "modelScale": 10, + "heldItemScale": 10, + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 221, + "name": "Vines|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Vines|meta|rot4": { + "displayName": { + "translationKey": "item:vines" + }, + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "blockModel": "Vines", + "modelScale": 10, + "heldItemScale": 10, + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 222, + "name": "Vines|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Dirt|GrassRoots": { + "ttb": 600, + "textureInfo": "dirt", + "harvestType": "granule", + "id": 223, + "name": "Dirt|GrassRoots", + "stackable": true, + "meta": { + "rootName": "Dirt", + "rootId": 2, + "metaStr": "GrassRoots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 77 + }, + "Iron Ladder": { + "displayName": { + "translationKey": "item:ironLadder" + }, + "ttb": 1800, + "itemTexture": "iron_ladder", + "model": "rotatableOffset", + "harvestType": "rock", + "rootMetaDesc": "Iron Ladder|meta|rot1", + "TB": false, + "blockModel": "Iron Ladder", + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 224, + "name": "Iron Ladder", + "stackable": true, + "meta": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Iron Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:ironLadder" + }, + "ttb": 1800, + "itemTexture": "iron_ladder", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "Iron Ladder", + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 225, + "name": "Iron Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Iron Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:ironLadder" + }, + "ttb": 1800, + "itemTexture": "iron_ladder", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "Iron Ladder", + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 226, + "name": "Iron Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Iron Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:ironLadder" + }, + "ttb": 1800, + "itemTexture": "iron_ladder", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "Iron Ladder", + "blockModelItem": true, + "particlesIgnoreBlack": true, + "id": 227, + "name": "Iron Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "White Planks": { + "displayName": { + "translationKey": "item:whitePlanks" + }, + "ttb": 1800, + "textureInfo": "white_planks", + "harvestType": "wood", + "id": 228, + "name": "White Planks", + "stackable": true, + "meta": { + "rootName": "White Planks", + "rootId": 228, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 233 + }, + "Orange Planks": { + "displayName": { + "translationKey": "item:orangePlanks" + }, + "ttb": 1800, + "textureInfo": "orange_planks", + "harvestType": "wood", + "id": 229, + "name": "Orange Planks", + "stackable": true, + "meta": { + "rootName": "Orange Planks", + "rootId": 229, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 234 + }, + "Magenta Planks": { + "displayName": { + "translationKey": "item:magentaPlanks" + }, + "ttb": 1800, + "textureInfo": "magenta_planks", + "harvestType": "wood", + "id": 230, + "name": "Magenta Planks", + "stackable": true, + "meta": { + "rootName": "Magenta Planks", + "rootId": 230, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 235 + }, + "Light Blue Planks": { + "displayName": { + "translationKey": "item:lightBluePlanks" + }, + "ttb": 1800, + "textureInfo": "light_blue_planks", + "harvestType": "wood", + "id": 231, + "name": "Light Blue Planks", + "stackable": true, + "meta": { + "rootName": "Light Blue Planks", + "rootId": 231, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 236 + }, + "Yellow Planks": { + "displayName": { + "translationKey": "item:yellowPlanks" + }, + "ttb": 1800, + "textureInfo": "yellow_planks", + "harvestType": "wood", + "id": 232, + "name": "Yellow Planks", + "stackable": true, + "meta": { + "rootName": "Yellow Planks", + "rootId": 232, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 237 + }, + "Lime Planks": { + "displayName": { + "translationKey": "item:limePlanks" + }, + "ttb": 1800, + "textureInfo": "lime_planks", + "harvestType": "wood", + "id": 233, + "name": "Lime Planks", + "stackable": true, + "meta": { + "rootName": "Lime Planks", + "rootId": 233, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 238 + }, + "Pink Planks": { + "displayName": { + "translationKey": "item:pinkPlanks" + }, + "ttb": 1800, + "textureInfo": "pink_planks", + "harvestType": "wood", + "id": 234, + "name": "Pink Planks", + "stackable": true, + "meta": { + "rootName": "Pink Planks", + "rootId": 234, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 239 + }, + "Gray Planks": { + "displayName": { + "translationKey": "item:grayPlanks" + }, + "ttb": 1800, + "textureInfo": "gray_planks", + "harvestType": "wood", + "id": 235, + "name": "Gray Planks", + "stackable": true, + "meta": { + "rootName": "Gray Planks", + "rootId": 235, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 240 + }, + "Light Gray Planks": { + "displayName": { + "translationKey": "item:lightGrayPlanks" + }, + "ttb": 1800, + "textureInfo": "light_gray_planks", + "harvestType": "wood", + "id": 236, + "name": "Light Gray Planks", + "stackable": true, + "meta": { + "rootName": "Light Gray Planks", + "rootId": 236, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 241 + }, + "Cyan Planks": { + "displayName": { + "translationKey": "item:cyanPlanks" + }, + "ttb": 1800, + "textureInfo": "cyan_planks", + "harvestType": "wood", + "id": 237, + "name": "Cyan Planks", + "stackable": true, + "meta": { + "rootName": "Cyan Planks", + "rootId": 237, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 242 + }, + "Purple Planks": { + "displayName": { + "translationKey": "item:purplePlanks" + }, + "ttb": 1800, + "textureInfo": "purple_planks", + "harvestType": "wood", + "id": 238, + "name": "Purple Planks", + "stackable": true, + "meta": { + "rootName": "Purple Planks", + "rootId": 238, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 243 + }, + "Blue Planks": { + "displayName": { + "translationKey": "item:bluePlanks" + }, + "ttb": 1800, + "textureInfo": "blue_planks", + "harvestType": "wood", + "id": 239, + "name": "Blue Planks", + "stackable": true, + "meta": { + "rootName": "Blue Planks", + "rootId": 239, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 244 + }, + "Brown Planks": { + "displayName": { + "translationKey": "item:brownPlanks" + }, + "ttb": 1800, + "textureInfo": "brown_planks", + "harvestType": "wood", + "id": 240, + "name": "Brown Planks", + "stackable": true, + "meta": { + "rootName": "Brown Planks", + "rootId": 240, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 245 + }, + "Green Planks": { + "displayName": { + "translationKey": "item:greenPlanks" + }, + "ttb": 1800, + "textureInfo": "green_planks", + "harvestType": "wood", + "id": 241, + "name": "Green Planks", + "stackable": true, + "meta": { + "rootName": "Green Planks", + "rootId": 241, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 246 + }, + "Red Planks": { + "displayName": { + "translationKey": "item:redPlanks" + }, + "ttb": 1800, + "textureInfo": "red_planks", + "harvestType": "wood", + "id": 242, + "name": "Red Planks", + "stackable": true, + "meta": { + "rootName": "Red Planks", + "rootId": 242, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 247 + }, + "Black Planks": { + "displayName": { + "translationKey": "item:blackPlanks" + }, + "ttb": 1800, + "textureInfo": "black_planks", + "harvestType": "wood", + "id": 243, + "name": "Black Planks", + "stackable": true, + "meta": { + "rootName": "Black Planks", + "rootId": 243, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 248 + }, + "Artisan Bench": { + "displayName": { + "translationKey": "item:artisanBench" + }, + "ttb": 3000, + "textureInfo": [ + "artisan_table_side", + "artisan_table_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:artisanBenchDescription" + }, + "id": 244, + "name": "Artisan Bench", + "stackable": true, + "meta": { + "rootName": "Artisan Bench", + "rootId": 244, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 249, + 250 + ] + }, + "White Ceramic": { + "displayName": { + "translationKey": "item:whiteCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "white_glazed_terracotta[rot[1", + "white_glazed_terracotta[rot[2", + "white_glazed_terracotta[rot[3", + "white_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "White Ceramic|meta|rot1", + "id": 245, + "name": "White Ceramic", + "stackable": true, + "meta": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 251, + 252, + 253, + 254 + ] + }, + "White Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "white_glazed_terracotta[rot[1", + "white_glazed_terracotta[rot[2", + "white_glazed_terracotta[rot[3", + "white_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 246, + "name": "White Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 251, + 252, + 253, + 254 + ] + }, + "White Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "white_glazed_terracotta[rot[1", + "white_glazed_terracotta[rot[2", + "white_glazed_terracotta[rot[3", + "white_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 247, + "name": "White Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 251, + 252, + 253, + 254 + ] + }, + "White Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "white_glazed_terracotta[rot[1", + "white_glazed_terracotta[rot[2", + "white_glazed_terracotta[rot[3", + "white_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 248, + "name": "White Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 251, + 252, + 253, + 254 + ] + }, + "Orange Ceramic": { + "displayName": { + "translationKey": "item:orangeCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "orange_glazed_terracotta[rot[1", + "orange_glazed_terracotta[rot[2", + "orange_glazed_terracotta[rot[3", + "orange_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Orange Ceramic|meta|rot1", + "id": 249, + "name": "Orange Ceramic", + "stackable": true, + "meta": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 255, + 256, + 257, + 258 + ] + }, + "Orange Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "orange_glazed_terracotta[rot[1", + "orange_glazed_terracotta[rot[2", + "orange_glazed_terracotta[rot[3", + "orange_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 250, + "name": "Orange Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 255, + 256, + 257, + 258 + ] + }, + "Orange Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "orange_glazed_terracotta[rot[1", + "orange_glazed_terracotta[rot[2", + "orange_glazed_terracotta[rot[3", + "orange_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 251, + "name": "Orange Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 255, + 256, + 257, + 258 + ] + }, + "Orange Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "orange_glazed_terracotta[rot[1", + "orange_glazed_terracotta[rot[2", + "orange_glazed_terracotta[rot[3", + "orange_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 252, + "name": "Orange Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 255, + 256, + 257, + 258 + ] + }, + "Magenta Ceramic": { + "displayName": { + "translationKey": "item:magentaCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "magenta_glazed_terracotta[rot[1", + "magenta_glazed_terracotta[rot[2", + "magenta_glazed_terracotta[rot[3", + "magenta_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Magenta Ceramic|meta|rot1", + "id": 253, + "name": "Magenta Ceramic", + "stackable": true, + "meta": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 259, + 260, + 261, + 262 + ] + }, + "Magenta Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "magenta_glazed_terracotta[rot[1", + "magenta_glazed_terracotta[rot[2", + "magenta_glazed_terracotta[rot[3", + "magenta_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 254, + "name": "Magenta Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 259, + 260, + 261, + 262 + ] + }, + "Magenta Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "magenta_glazed_terracotta[rot[1", + "magenta_glazed_terracotta[rot[2", + "magenta_glazed_terracotta[rot[3", + "magenta_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 255, + "name": "Magenta Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 259, + 260, + 261, + 262 + ] + }, + "Magenta Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "magenta_glazed_terracotta[rot[1", + "magenta_glazed_terracotta[rot[2", + "magenta_glazed_terracotta[rot[3", + "magenta_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 256, + "name": "Magenta Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 259, + 260, + 261, + 262 + ] + }, + "Light Blue Ceramic": { + "displayName": { + "translationKey": "item:lightBlueCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "light_blue_glazed_terracotta[rot[1", + "light_blue_glazed_terracotta[rot[2", + "light_blue_glazed_terracotta[rot[3", + "light_blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Light Blue Ceramic|meta|rot1", + "id": 257, + "name": "Light Blue Ceramic", + "stackable": true, + "meta": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 263, + 264, + 265, + 266 + ] + }, + "Light Blue Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "light_blue_glazed_terracotta[rot[1", + "light_blue_glazed_terracotta[rot[2", + "light_blue_glazed_terracotta[rot[3", + "light_blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 258, + "name": "Light Blue Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 263, + 264, + 265, + 266 + ] + }, + "Light Blue Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "light_blue_glazed_terracotta[rot[1", + "light_blue_glazed_terracotta[rot[2", + "light_blue_glazed_terracotta[rot[3", + "light_blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 259, + "name": "Light Blue Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 263, + 264, + 265, + 266 + ] + }, + "Light Blue Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "light_blue_glazed_terracotta[rot[1", + "light_blue_glazed_terracotta[rot[2", + "light_blue_glazed_terracotta[rot[3", + "light_blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 260, + "name": "Light Blue Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 263, + 264, + 265, + 266 + ] + }, + "Yellow Ceramic": { + "displayName": { + "translationKey": "item:yellowCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "yellow_glazed_terracotta[rot[1", + "yellow_glazed_terracotta[rot[2", + "yellow_glazed_terracotta[rot[3", + "yellow_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Yellow Ceramic|meta|rot1", + "id": 261, + "name": "Yellow Ceramic", + "stackable": true, + "meta": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 267, + 268, + 269, + 270 + ] + }, + "Yellow Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "yellow_glazed_terracotta[rot[1", + "yellow_glazed_terracotta[rot[2", + "yellow_glazed_terracotta[rot[3", + "yellow_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 262, + "name": "Yellow Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 267, + 268, + 269, + 270 + ] + }, + "Yellow Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "yellow_glazed_terracotta[rot[1", + "yellow_glazed_terracotta[rot[2", + "yellow_glazed_terracotta[rot[3", + "yellow_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 263, + "name": "Yellow Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 267, + 268, + 269, + 270 + ] + }, + "Yellow Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "yellow_glazed_terracotta[rot[1", + "yellow_glazed_terracotta[rot[2", + "yellow_glazed_terracotta[rot[3", + "yellow_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 264, + "name": "Yellow Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 267, + 268, + 269, + 270 + ] + }, + "Lime Ceramic": { + "displayName": { + "translationKey": "item:limeCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "lime_glazed_terracotta[rot[1", + "lime_glazed_terracotta[rot[2", + "lime_glazed_terracotta[rot[3", + "lime_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Lime Ceramic|meta|rot1", + "id": 265, + "name": "Lime Ceramic", + "stackable": true, + "meta": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 271, + 272, + 273, + 274 + ] + }, + "Lime Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "lime_glazed_terracotta[rot[1", + "lime_glazed_terracotta[rot[2", + "lime_glazed_terracotta[rot[3", + "lime_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 266, + "name": "Lime Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 271, + 272, + 273, + 274 + ] + }, + "Lime Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "lime_glazed_terracotta[rot[1", + "lime_glazed_terracotta[rot[2", + "lime_glazed_terracotta[rot[3", + "lime_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 267, + "name": "Lime Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 271, + 272, + 273, + 274 + ] + }, + "Lime Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "lime_glazed_terracotta[rot[1", + "lime_glazed_terracotta[rot[2", + "lime_glazed_terracotta[rot[3", + "lime_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 268, + "name": "Lime Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 271, + 272, + 273, + 274 + ] + }, + "Pink Ceramic": { + "displayName": { + "translationKey": "item:pinkCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "pink_glazed_terracotta[rot[1", + "pink_glazed_terracotta[rot[2", + "pink_glazed_terracotta[rot[3", + "pink_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Pink Ceramic|meta|rot1", + "id": 269, + "name": "Pink Ceramic", + "stackable": true, + "meta": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 275, + 276, + 277, + 278 + ] + }, + "Pink Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "pink_glazed_terracotta[rot[1", + "pink_glazed_terracotta[rot[2", + "pink_glazed_terracotta[rot[3", + "pink_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 270, + "name": "Pink Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 275, + 276, + 277, + 278 + ] + }, + "Pink Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "pink_glazed_terracotta[rot[1", + "pink_glazed_terracotta[rot[2", + "pink_glazed_terracotta[rot[3", + "pink_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 271, + "name": "Pink Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 275, + 276, + 277, + 278 + ] + }, + "Pink Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "pink_glazed_terracotta[rot[1", + "pink_glazed_terracotta[rot[2", + "pink_glazed_terracotta[rot[3", + "pink_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 272, + "name": "Pink Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 275, + 276, + 277, + 278 + ] + }, + "Gray Ceramic": { + "displayName": { + "translationKey": "item:grayCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "gray_glazed_terracotta[rot[1", + "gray_glazed_terracotta[rot[2", + "gray_glazed_terracotta[rot[3", + "gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Gray Ceramic|meta|rot1", + "id": 273, + "name": "Gray Ceramic", + "stackable": true, + "meta": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 279, + 280, + 281, + 282 + ] + }, + "Gray Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "gray_glazed_terracotta[rot[1", + "gray_glazed_terracotta[rot[2", + "gray_glazed_terracotta[rot[3", + "gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 274, + "name": "Gray Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 279, + 280, + 281, + 282 + ] + }, + "Gray Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "gray_glazed_terracotta[rot[1", + "gray_glazed_terracotta[rot[2", + "gray_glazed_terracotta[rot[3", + "gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 275, + "name": "Gray Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 279, + 280, + 281, + 282 + ] + }, + "Gray Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "gray_glazed_terracotta[rot[1", + "gray_glazed_terracotta[rot[2", + "gray_glazed_terracotta[rot[3", + "gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 276, + "name": "Gray Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 279, + 280, + 281, + 282 + ] + }, + "Light Gray Ceramic": { + "displayName": { + "translationKey": "item:lightGrayCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "light_gray_glazed_terracotta[rot[1", + "light_gray_glazed_terracotta[rot[2", + "light_gray_glazed_terracotta[rot[3", + "light_gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Light Gray Ceramic|meta|rot1", + "id": 277, + "name": "Light Gray Ceramic", + "stackable": true, + "meta": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 283, + 284, + 285, + 286 + ] + }, + "Light Gray Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "light_gray_glazed_terracotta[rot[1", + "light_gray_glazed_terracotta[rot[2", + "light_gray_glazed_terracotta[rot[3", + "light_gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 278, + "name": "Light Gray Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 283, + 284, + 285, + 286 + ] + }, + "Light Gray Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "light_gray_glazed_terracotta[rot[1", + "light_gray_glazed_terracotta[rot[2", + "light_gray_glazed_terracotta[rot[3", + "light_gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 279, + "name": "Light Gray Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 283, + 284, + 285, + 286 + ] + }, + "Light Gray Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "light_gray_glazed_terracotta[rot[1", + "light_gray_glazed_terracotta[rot[2", + "light_gray_glazed_terracotta[rot[3", + "light_gray_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 280, + "name": "Light Gray Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 283, + 284, + 285, + 286 + ] + }, + "Cyan Ceramic": { + "displayName": { + "translationKey": "item:cyanCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "cyan_glazed_terracotta[rot[1", + "cyan_glazed_terracotta[rot[2", + "cyan_glazed_terracotta[rot[3", + "cyan_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Cyan Ceramic|meta|rot1", + "id": 281, + "name": "Cyan Ceramic", + "stackable": true, + "meta": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 287, + 288, + 289, + 290 + ] + }, + "Cyan Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "cyan_glazed_terracotta[rot[1", + "cyan_glazed_terracotta[rot[2", + "cyan_glazed_terracotta[rot[3", + "cyan_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 282, + "name": "Cyan Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 287, + 288, + 289, + 290 + ] + }, + "Cyan Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "cyan_glazed_terracotta[rot[1", + "cyan_glazed_terracotta[rot[2", + "cyan_glazed_terracotta[rot[3", + "cyan_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 283, + "name": "Cyan Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 287, + 288, + 289, + 290 + ] + }, + "Cyan Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "cyan_glazed_terracotta[rot[1", + "cyan_glazed_terracotta[rot[2", + "cyan_glazed_terracotta[rot[3", + "cyan_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 284, + "name": "Cyan Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 287, + 288, + 289, + 290 + ] + }, + "Purple Ceramic": { + "displayName": { + "translationKey": "item:purpleCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "purple_glazed_terracotta[rot[1", + "purple_glazed_terracotta[rot[2", + "purple_glazed_terracotta[rot[3", + "purple_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Purple Ceramic|meta|rot1", + "id": 285, + "name": "Purple Ceramic", + "stackable": true, + "meta": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 291, + 292, + 293, + 294 + ] + }, + "Purple Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "purple_glazed_terracotta[rot[1", + "purple_glazed_terracotta[rot[2", + "purple_glazed_terracotta[rot[3", + "purple_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 286, + "name": "Purple Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 291, + 292, + 293, + 294 + ] + }, + "Purple Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "purple_glazed_terracotta[rot[1", + "purple_glazed_terracotta[rot[2", + "purple_glazed_terracotta[rot[3", + "purple_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 287, + "name": "Purple Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 291, + 292, + 293, + 294 + ] + }, + "Purple Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "purple_glazed_terracotta[rot[1", + "purple_glazed_terracotta[rot[2", + "purple_glazed_terracotta[rot[3", + "purple_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 288, + "name": "Purple Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 291, + 292, + 293, + 294 + ] + }, + "Blue Ceramic": { + "displayName": { + "translationKey": "item:blueCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "blue_glazed_terracotta[rot[1", + "blue_glazed_terracotta[rot[2", + "blue_glazed_terracotta[rot[3", + "blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Blue Ceramic|meta|rot1", + "id": 289, + "name": "Blue Ceramic", + "stackable": true, + "meta": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 295, + 296, + 297, + 298 + ] + }, + "Blue Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "blue_glazed_terracotta[rot[1", + "blue_glazed_terracotta[rot[2", + "blue_glazed_terracotta[rot[3", + "blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 290, + "name": "Blue Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 295, + 296, + 297, + 298 + ] + }, + "Blue Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "blue_glazed_terracotta[rot[1", + "blue_glazed_terracotta[rot[2", + "blue_glazed_terracotta[rot[3", + "blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 291, + "name": "Blue Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 295, + 296, + 297, + 298 + ] + }, + "Blue Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "blue_glazed_terracotta[rot[1", + "blue_glazed_terracotta[rot[2", + "blue_glazed_terracotta[rot[3", + "blue_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 292, + "name": "Blue Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 295, + 296, + 297, + 298 + ] + }, + "Brown Ceramic": { + "displayName": { + "translationKey": "item:brownCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "brown_glazed_terracotta[rot[1", + "brown_glazed_terracotta[rot[2", + "brown_glazed_terracotta[rot[3", + "brown_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Brown Ceramic|meta|rot1", + "id": 293, + "name": "Brown Ceramic", + "stackable": true, + "meta": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 299, + 300, + 301, + 302 + ] + }, + "Brown Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "brown_glazed_terracotta[rot[1", + "brown_glazed_terracotta[rot[2", + "brown_glazed_terracotta[rot[3", + "brown_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 294, + "name": "Brown Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 299, + 300, + 301, + 302 + ] + }, + "Brown Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "brown_glazed_terracotta[rot[1", + "brown_glazed_terracotta[rot[2", + "brown_glazed_terracotta[rot[3", + "brown_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 295, + "name": "Brown Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 299, + 300, + 301, + 302 + ] + }, + "Brown Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "brown_glazed_terracotta[rot[1", + "brown_glazed_terracotta[rot[2", + "brown_glazed_terracotta[rot[3", + "brown_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 296, + "name": "Brown Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 299, + 300, + 301, + 302 + ] + }, + "Green Ceramic": { + "displayName": { + "translationKey": "item:greenCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "green_glazed_terracotta[rot[1", + "green_glazed_terracotta[rot[2", + "green_glazed_terracotta[rot[3", + "green_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Green Ceramic|meta|rot1", + "id": 297, + "name": "Green Ceramic", + "stackable": true, + "meta": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 303, + 304, + 305, + 306 + ] + }, + "Green Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "green_glazed_terracotta[rot[1", + "green_glazed_terracotta[rot[2", + "green_glazed_terracotta[rot[3", + "green_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 298, + "name": "Green Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 303, + 304, + 305, + 306 + ] + }, + "Green Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "green_glazed_terracotta[rot[1", + "green_glazed_terracotta[rot[2", + "green_glazed_terracotta[rot[3", + "green_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 299, + "name": "Green Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 303, + 304, + 305, + 306 + ] + }, + "Green Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "green_glazed_terracotta[rot[1", + "green_glazed_terracotta[rot[2", + "green_glazed_terracotta[rot[3", + "green_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 300, + "name": "Green Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 303, + 304, + 305, + 306 + ] + }, + "Red Ceramic": { + "displayName": { + "translationKey": "item:redCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "red_glazed_terracotta[rot[1", + "red_glazed_terracotta[rot[2", + "red_glazed_terracotta[rot[3", + "red_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Red Ceramic|meta|rot1", + "id": 301, + "name": "Red Ceramic", + "stackable": true, + "meta": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 307, + 308, + 309, + 310 + ] + }, + "Red Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "red_glazed_terracotta[rot[1", + "red_glazed_terracotta[rot[2", + "red_glazed_terracotta[rot[3", + "red_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 302, + "name": "Red Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 307, + 308, + 309, + 310 + ] + }, + "Red Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "red_glazed_terracotta[rot[1", + "red_glazed_terracotta[rot[2", + "red_glazed_terracotta[rot[3", + "red_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 303, + "name": "Red Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 307, + 308, + 309, + 310 + ] + }, + "Red Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "red_glazed_terracotta[rot[1", + "red_glazed_terracotta[rot[2", + "red_glazed_terracotta[rot[3", + "red_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 304, + "name": "Red Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 307, + 308, + 309, + 310 + ] + }, + "Black Ceramic": { + "displayName": { + "translationKey": "item:blackCeramic" + }, + "ttb": 1500, + "textureInfo": [ + "black_glazed_terracotta[rot[1", + "black_glazed_terracotta[rot[2", + "black_glazed_terracotta[rot[3", + "black_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 0, + 2, + 2, + 2, + 3, + 1 + ], + "harvestType": "rock", + "rootMetaDesc": "Black Ceramic|meta|rot1", + "id": 305, + "name": "Black Ceramic", + "stackable": true, + "meta": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 311, + 312, + 313, + 314 + ] + }, + "Black Ceramic|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "black_glazed_terracotta[rot[1", + "black_glazed_terracotta[rot[2", + "black_glazed_terracotta[rot[3", + "black_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 3, + 1, + 3, + 3, + 2, + 0 + ], + "harvestType": "rock", + "id": 306, + "name": "Black Ceramic|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 311, + 312, + 313, + 314 + ] + }, + "Black Ceramic|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "black_glazed_terracotta[rot[1", + "black_glazed_terracotta[rot[2", + "black_glazed_terracotta[rot[3", + "black_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 2, + 0, + 0, + 0, + 1, + 3 + ], + "harvestType": "rock", + "id": 307, + "name": "Black Ceramic|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 311, + 312, + 313, + 314 + ] + }, + "Black Ceramic|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "black_glazed_terracotta[rot[1", + "black_glazed_terracotta[rot[2", + "black_glazed_terracotta[rot[3", + "black_glazed_terracotta[rot[4" + ], + "texturePerSide": [ + 1, + 3, + 1, + 1, + 0, + 2 + ], + "harvestType": "rock", + "id": 308, + "name": "Black Ceramic|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 311, + 312, + 313, + 314 + ] + }, + "Wheat Seeds": { + "displayName": { + "translationKey": "item:wheatSeeds" + }, + "ttb": 400, + "textureInfo": "wheat_stage0", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "wheat_seeds", + "description": { + "translationKey": "item:wheatSeedsDescription" + }, + "id": 309, + "name": "Wheat Seeds", + "stackable": true, + "meta": { + "rootName": "Wheat Seeds", + "rootId": 309, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Wheat_stage1": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Wheat Seeds", + "textureInfo": "wheat_stage2", + "id": 310, + "name": "Wheat_stage1", + "stackable": true, + "meta": { + "rootName": "Wheat_stage1", + "rootId": 310, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Wheat_stage2": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Wheat Seeds", + "textureInfo": "wheat_stage3", + "id": 311, + "name": "Wheat_stage2", + "stackable": true, + "meta": { + "rootName": "Wheat_stage2", + "rootId": 311, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Wheat_stage3": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Wheat Seeds", + "textureInfo": "wheat_stage4", + "id": 312, + "name": "Wheat_stage3", + "stackable": true, + "meta": { + "rootName": "Wheat_stage3", + "rootId": 312, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Wheat_stage4": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Wheat Seeds", + "textureInfo": "wheat_stage5", + "id": 313, + "name": "Wheat_stage4", + "stackable": true, + "meta": { + "rootName": "Wheat_stage4", + "rootId": 313, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Wheat_stage5": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Wheat Seeds", + "textureInfo": "wheat_stage6", + "id": 314, + "name": "Wheat_stage5", + "stackable": true, + "meta": { + "rootName": "Wheat_stage5", + "rootId": 314, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Wheat": { + "displayName": { + "translationKey": "item:wheat" + }, + "ttb": 400, + "textureInfo": "wheat_stage7", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "wheat", + "id": 315, + "name": "Wheat", + "stackable": true, + "meta": { + "rootName": "Wheat", + "rootId": 315, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Wheat|FreshlyGrown": { + "ttb": 400, + "textureInfo": "wheat_stage7", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "onMinedAura": 5, + "id": 316, + "name": "Wheat|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Wheat", + "rootId": 315, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Tilled Soil": { + "displayName": { + "translationKey": "item:tilledSoil" + }, + "ttb": 600, + "textureInfo": "farmland", + "harvestType": "granule", + "id": 317, + "name": "Tilled Soil", + "stackable": true, + "meta": { + "rootName": "Tilled Soil", + "rootId": 317, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 315 + }, + "Bread Block": { + "displayName": { + "translationKey": "item:breadBlock" + }, + "ttb": 600, + "textureInfo": [ + "bread_block_front", + "bread_block_back", + "bread_block_side", + "bread_block_top" + ], + "texturePerSide": [ + 2, + 2, + 3, + 3, + 0, + 1 + ], + "harvestType": "cuttable", + "id": 318, + "name": "Bread Block", + "stackable": true, + "meta": { + "rootName": "Bread Block", + "rootId": 318, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 316, + 317, + 318, + 319 + ] + }, + "ReservedBread BlockRotation1": { + "ttb": 600, + "textureInfo": [ + "bread_block_front", + "bread_block_back", + "bread_block_side", + "bread_block_top" + ], + "texturePerSide": [ + 2, + 2, + 3, + 3, + 0, + 1 + ], + "harvestType": "cuttable", + "id": 319, + "name": "ReservedBread BlockRotation1", + "stackable": true, + "meta": { + "rootName": "ReservedBread BlockRotation1", + "rootId": 319, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 316, + 317, + 318, + 319 + ] + }, + "ReservedBread BlockRotation2": { + "ttb": 600, + "textureInfo": [ + "bread_block_front", + "bread_block_back", + "bread_block_side", + "bread_block_top" + ], + "texturePerSide": [ + 2, + 2, + 3, + 3, + 0, + 1 + ], + "harvestType": "cuttable", + "id": 320, + "name": "ReservedBread BlockRotation2", + "stackable": true, + "meta": { + "rootName": "ReservedBread BlockRotation2", + "rootId": 320, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 316, + 317, + 318, + 319 + ] + }, + "ReservedBread BlockRotation3": { + "ttb": 600, + "textureInfo": [ + "bread_block_front", + "bread_block_back", + "bread_block_side", + "bread_block_top" + ], + "texturePerSide": [ + 2, + 2, + 3, + 3, + 0, + 1 + ], + "harvestType": "cuttable", + "id": 321, + "name": "ReservedBread BlockRotation3", + "stackable": true, + "meta": { + "rootName": "ReservedBread BlockRotation3", + "rootId": 321, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 316, + 317, + 318, + 319 + ] + }, + "Mossy Messy Stone": { + "displayName": { + "translationKey": "item:mossyMessyStone" + }, + "ttb": 1800, + "textureInfo": "mossy_cobblestone", + "harvestType": "rock", + "id": 322, + "name": "Mossy Messy Stone", + "stackable": true, + "meta": { + "rootName": "Mossy Messy Stone", + "rootId": 322, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 320 + }, + "Dandelion|Roots": { + "ttb": 300, + "textureInfo": "dandelion", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "dandelion", + "id": 323, + "name": "Dandelion|Roots", + "stackable": true, + "meta": { + "rootName": "Dandelion", + "rootId": 151, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Poppy|Roots": { + "ttb": 300, + "textureInfo": "poppy", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "poppy", + "id": 324, + "name": "Poppy|Roots", + "stackable": true, + "meta": { + "rootName": "Poppy", + "rootId": 152, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Tulip|Roots": { + "ttb": 300, + "textureInfo": "red_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "red_tulip", + "id": 325, + "name": "Red Tulip|Roots", + "stackable": true, + "meta": { + "rootName": "Red Tulip", + "rootId": 153, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pink Tulip|Roots": { + "ttb": 300, + "textureInfo": "pink_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "pink_tulip", + "id": 326, + "name": "Pink Tulip|Roots", + "stackable": true, + "meta": { + "rootName": "Pink Tulip", + "rootId": 154, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "White Tulip|Roots": { + "ttb": 300, + "textureInfo": "white_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "white_tulip", + "id": 327, + "name": "White Tulip|Roots", + "stackable": true, + "meta": { + "rootName": "White Tulip", + "rootId": 155, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Orange Tulip|Roots": { + "ttb": 300, + "textureInfo": "orange_tulip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "orange_tulip", + "id": 328, + "name": "Orange Tulip|Roots", + "stackable": true, + "meta": { + "rootName": "Orange Tulip", + "rootId": 156, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Daisy|Roots": { + "ttb": 300, + "textureInfo": "oxeye_daisy", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "oxeye_daisy", + "id": 329, + "name": "Daisy|Roots", + "stackable": true, + "meta": { + "rootName": "Daisy", + "rootId": 157, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Bluebell|Roots": { + "ttb": 300, + "textureInfo": "blue_orchid", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "blue_orchid", + "id": 330, + "name": "Bluebell|Roots", + "stackable": true, + "meta": { + "rootName": "Bluebell", + "rootId": 158, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Forget-me-not|Roots": { + "ttb": 300, + "textureInfo": "cornflower", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cornflower", + "id": 331, + "name": "Forget-me-not|Roots", + "stackable": true, + "meta": { + "rootName": "Forget-me-not", + "rootId": 159, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Allium|Roots": { + "ttb": 300, + "textureInfo": "allium", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "allium", + "id": 332, + "name": "Allium|Roots", + "stackable": true, + "meta": { + "rootName": "Allium", + "rootId": 160, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Azure Bluet|Roots": { + "ttb": 300, + "textureInfo": "azure_bluet", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "azure_bluet", + "id": 333, + "name": "Azure Bluet|Roots", + "stackable": true, + "meta": { + "rootName": "Azure Bluet", + "rootId": 161, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lily of the Valley|Roots": { + "ttb": 300, + "textureInfo": "lily_of_the_valley", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "lily_of_the_valley", + "id": 334, + "name": "Lily of the Valley|Roots", + "stackable": true, + "meta": { + "rootName": "Lily of the Valley", + "rootId": 162, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Shadow Rose|Roots": { + "ttb": 300, + "textureInfo": "shadow_rose", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "shadow_rose", + "id": 335, + "name": "Shadow Rose|Roots", + "stackable": true, + "meta": { + "rootName": "Shadow Rose", + "rootId": 163, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "White Bed": { + "displayName": { + "translationKey": "item:whiteBed" + }, + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "White Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Bed", + "id": 336, + "name": "White Bed", + "stackable": true, + "meta": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "White Bed|meta|rot2": { + "displayName": { + "translationKey": "item:whiteBed" + }, + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Bed", + "id": 337, + "name": "White Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "White Bed|meta|rot3": { + "displayName": { + "translationKey": "item:whiteBed" + }, + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Bed", + "id": 338, + "name": "White Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "White Bed|meta|rot4": { + "displayName": { + "translationKey": "item:whiteBed" + }, + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Bed", + "id": 339, + "name": "White Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_White Bed Head": { + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "White Bed", + "rootMetaDesc": "_White Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Bed Head", + "id": 340, + "name": "_White Bed Head", + "stackable": true, + "meta": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_White Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "White Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Bed Head", + "id": 341, + "name": "_White Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_White Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "White Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Bed Head", + "id": 342, + "name": "_White Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_White Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "white_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "White Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Bed Head", + "id": 343, + "name": "_White Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Orange Bed": { + "displayName": { + "translationKey": "item:orangeBed" + }, + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Orange Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Bed", + "id": 344, + "name": "Orange Bed", + "stackable": true, + "meta": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Orange Bed|meta|rot2": { + "displayName": { + "translationKey": "item:orangeBed" + }, + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Bed", + "id": 345, + "name": "Orange Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Orange Bed|meta|rot3": { + "displayName": { + "translationKey": "item:orangeBed" + }, + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Bed", + "id": 346, + "name": "Orange Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Orange Bed|meta|rot4": { + "displayName": { + "translationKey": "item:orangeBed" + }, + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Bed", + "id": 347, + "name": "Orange Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Orange Bed Head": { + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Orange Bed", + "rootMetaDesc": "_Orange Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Bed Head", + "id": 348, + "name": "_Orange Bed Head", + "stackable": true, + "meta": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Orange Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Orange Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Bed Head", + "id": 349, + "name": "_Orange Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Orange Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Orange Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Bed Head", + "id": 350, + "name": "_Orange Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Orange Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "orange_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Orange Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Bed Head", + "id": 351, + "name": "_Orange Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Magenta Bed": { + "displayName": { + "translationKey": "item:magentaBed" + }, + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Magenta Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Bed", + "id": 352, + "name": "Magenta Bed", + "stackable": true, + "meta": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Magenta Bed|meta|rot2": { + "displayName": { + "translationKey": "item:magentaBed" + }, + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Bed", + "id": 353, + "name": "Magenta Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Magenta Bed|meta|rot3": { + "displayName": { + "translationKey": "item:magentaBed" + }, + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Bed", + "id": 354, + "name": "Magenta Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Magenta Bed|meta|rot4": { + "displayName": { + "translationKey": "item:magentaBed" + }, + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Bed", + "id": 355, + "name": "Magenta Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Magenta Bed Head": { + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Magenta Bed", + "rootMetaDesc": "_Magenta Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Bed Head", + "id": 356, + "name": "_Magenta Bed Head", + "stackable": true, + "meta": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Magenta Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Magenta Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Bed Head", + "id": 357, + "name": "_Magenta Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Magenta Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Magenta Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Bed Head", + "id": 358, + "name": "_Magenta Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Magenta Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "magenta_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Magenta Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Bed Head", + "id": 359, + "name": "_Magenta Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Blue Bed": { + "displayName": { + "translationKey": "item:lightBlueBed" + }, + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Light Blue Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Bed", + "id": 360, + "name": "Light Blue Bed", + "stackable": true, + "meta": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Blue Bed|meta|rot2": { + "displayName": { + "translationKey": "item:lightBlueBed" + }, + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Bed", + "id": 361, + "name": "Light Blue Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Blue Bed|meta|rot3": { + "displayName": { + "translationKey": "item:lightBlueBed" + }, + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Bed", + "id": 362, + "name": "Light Blue Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Blue Bed|meta|rot4": { + "displayName": { + "translationKey": "item:lightBlueBed" + }, + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Bed", + "id": 363, + "name": "Light Blue Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Blue Bed Head": { + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Blue Bed", + "rootMetaDesc": "_Light Blue Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Bed Head", + "id": 364, + "name": "_Light Blue Bed Head", + "stackable": true, + "meta": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Blue Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Bed Head", + "id": 365, + "name": "_Light Blue Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Blue Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Bed Head", + "id": 366, + "name": "_Light Blue Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Blue Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "light_blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Bed Head", + "id": 367, + "name": "_Light Blue Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Yellow Bed": { + "displayName": { + "translationKey": "item:yellowBed" + }, + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Yellow Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Bed", + "id": 368, + "name": "Yellow Bed", + "stackable": true, + "meta": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Yellow Bed|meta|rot2": { + "displayName": { + "translationKey": "item:yellowBed" + }, + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Bed", + "id": 369, + "name": "Yellow Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Yellow Bed|meta|rot3": { + "displayName": { + "translationKey": "item:yellowBed" + }, + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Bed", + "id": 370, + "name": "Yellow Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Yellow Bed|meta|rot4": { + "displayName": { + "translationKey": "item:yellowBed" + }, + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Bed", + "id": 371, + "name": "Yellow Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Yellow Bed Head": { + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Yellow Bed", + "rootMetaDesc": "_Yellow Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Bed Head", + "id": 372, + "name": "_Yellow Bed Head", + "stackable": true, + "meta": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Yellow Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Yellow Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Bed Head", + "id": 373, + "name": "_Yellow Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Yellow Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Yellow Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Bed Head", + "id": 374, + "name": "_Yellow Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Yellow Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "yellow_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Yellow Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Bed Head", + "id": 375, + "name": "_Yellow Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lime Bed": { + "displayName": { + "translationKey": "item:limeBed" + }, + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Lime Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Bed", + "id": 376, + "name": "Lime Bed", + "stackable": true, + "meta": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lime Bed|meta|rot2": { + "displayName": { + "translationKey": "item:limeBed" + }, + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Bed", + "id": 377, + "name": "Lime Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lime Bed|meta|rot3": { + "displayName": { + "translationKey": "item:limeBed" + }, + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Bed", + "id": 378, + "name": "Lime Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lime Bed|meta|rot4": { + "displayName": { + "translationKey": "item:limeBed" + }, + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Bed", + "id": 379, + "name": "Lime Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Lime Bed Head": { + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Lime Bed", + "rootMetaDesc": "_Lime Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Bed Head", + "id": 380, + "name": "_Lime Bed Head", + "stackable": true, + "meta": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Lime Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Lime Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Bed Head", + "id": 381, + "name": "_Lime Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Lime Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Lime Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Bed Head", + "id": 382, + "name": "_Lime Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Lime Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "lime_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Lime Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Bed Head", + "id": 383, + "name": "_Lime Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pink Bed": { + "displayName": { + "translationKey": "item:pinkBed" + }, + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Pink Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Bed", + "id": 384, + "name": "Pink Bed", + "stackable": true, + "meta": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pink Bed|meta|rot2": { + "displayName": { + "translationKey": "item:pinkBed" + }, + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Bed", + "id": 385, + "name": "Pink Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pink Bed|meta|rot3": { + "displayName": { + "translationKey": "item:pinkBed" + }, + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Bed", + "id": 386, + "name": "Pink Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pink Bed|meta|rot4": { + "displayName": { + "translationKey": "item:pinkBed" + }, + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Bed", + "id": 387, + "name": "Pink Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pink Bed Head": { + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Pink Bed", + "rootMetaDesc": "_Pink Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Bed Head", + "id": 388, + "name": "_Pink Bed Head", + "stackable": true, + "meta": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pink Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Pink Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Bed Head", + "id": 389, + "name": "_Pink Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pink Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Pink Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Bed Head", + "id": 390, + "name": "_Pink Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pink Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "pink_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Pink Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Bed Head", + "id": 391, + "name": "_Pink Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gray Bed": { + "displayName": { + "translationKey": "item:grayBed" + }, + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Gray Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Bed", + "id": 392, + "name": "Gray Bed", + "stackable": true, + "meta": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gray Bed|meta|rot2": { + "displayName": { + "translationKey": "item:grayBed" + }, + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Bed", + "id": 393, + "name": "Gray Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gray Bed|meta|rot3": { + "displayName": { + "translationKey": "item:grayBed" + }, + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Bed", + "id": 394, + "name": "Gray Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gray Bed|meta|rot4": { + "displayName": { + "translationKey": "item:grayBed" + }, + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Bed", + "id": 395, + "name": "Gray Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Gray Bed Head": { + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Gray Bed", + "rootMetaDesc": "_Gray Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Bed Head", + "id": 396, + "name": "_Gray Bed Head", + "stackable": true, + "meta": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Gray Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Bed Head", + "id": 397, + "name": "_Gray Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Gray Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Bed Head", + "id": 398, + "name": "_Gray Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Gray Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Bed Head", + "id": 399, + "name": "_Gray Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Gray Bed": { + "displayName": { + "translationKey": "item:lightGrayBed" + }, + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Light Gray Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Bed", + "id": 400, + "name": "Light Gray Bed", + "stackable": true, + "meta": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Gray Bed|meta|rot2": { + "displayName": { + "translationKey": "item:lightGrayBed" + }, + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Bed", + "id": 401, + "name": "Light Gray Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Gray Bed|meta|rot3": { + "displayName": { + "translationKey": "item:lightGrayBed" + }, + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Bed", + "id": 402, + "name": "Light Gray Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Gray Bed|meta|rot4": { + "displayName": { + "translationKey": "item:lightGrayBed" + }, + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Bed", + "id": 403, + "name": "Light Gray Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Gray Bed Head": { + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Gray Bed", + "rootMetaDesc": "_Light Gray Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Bed Head", + "id": 404, + "name": "_Light Gray Bed Head", + "stackable": true, + "meta": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Gray Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Bed Head", + "id": 405, + "name": "_Light Gray Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Gray Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Bed Head", + "id": 406, + "name": "_Light Gray Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Gray Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "light_gray_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Light Gray Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Bed Head", + "id": 407, + "name": "_Light Gray Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cyan Bed": { + "displayName": { + "translationKey": "item:cyanBed" + }, + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Cyan Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Bed", + "id": 408, + "name": "Cyan Bed", + "stackable": true, + "meta": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cyan Bed|meta|rot2": { + "displayName": { + "translationKey": "item:cyanBed" + }, + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Bed", + "id": 409, + "name": "Cyan Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cyan Bed|meta|rot3": { + "displayName": { + "translationKey": "item:cyanBed" + }, + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Bed", + "id": 410, + "name": "Cyan Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cyan Bed|meta|rot4": { + "displayName": { + "translationKey": "item:cyanBed" + }, + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Bed", + "id": 411, + "name": "Cyan Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cyan Bed Head": { + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Cyan Bed", + "rootMetaDesc": "_Cyan Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Bed Head", + "id": 412, + "name": "_Cyan Bed Head", + "stackable": true, + "meta": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cyan Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Cyan Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Bed Head", + "id": 413, + "name": "_Cyan Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cyan Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Cyan Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Bed Head", + "id": 414, + "name": "_Cyan Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cyan Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "cyan_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Cyan Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Bed Head", + "id": 415, + "name": "_Cyan Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Purple Bed": { + "displayName": { + "translationKey": "item:purpleBed" + }, + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Purple Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Bed", + "id": 416, + "name": "Purple Bed", + "stackable": true, + "meta": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Purple Bed|meta|rot2": { + "displayName": { + "translationKey": "item:purpleBed" + }, + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Bed", + "id": 417, + "name": "Purple Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Purple Bed|meta|rot3": { + "displayName": { + "translationKey": "item:purpleBed" + }, + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Bed", + "id": 418, + "name": "Purple Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Purple Bed|meta|rot4": { + "displayName": { + "translationKey": "item:purpleBed" + }, + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Bed", + "id": 419, + "name": "Purple Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Purple Bed Head": { + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Purple Bed", + "rootMetaDesc": "_Purple Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Bed Head", + "id": 420, + "name": "_Purple Bed Head", + "stackable": true, + "meta": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Purple Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Purple Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Bed Head", + "id": 421, + "name": "_Purple Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Purple Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Purple Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Bed Head", + "id": 422, + "name": "_Purple Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Purple Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "purple_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Purple Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Bed Head", + "id": 423, + "name": "_Purple Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Blue Bed": { + "displayName": { + "translationKey": "item:blueBed" + }, + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Blue Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Bed", + "id": 424, + "name": "Blue Bed", + "stackable": true, + "meta": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Blue Bed|meta|rot2": { + "displayName": { + "translationKey": "item:blueBed" + }, + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Bed", + "id": 425, + "name": "Blue Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Blue Bed|meta|rot3": { + "displayName": { + "translationKey": "item:blueBed" + }, + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Bed", + "id": 426, + "name": "Blue Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Blue Bed|meta|rot4": { + "displayName": { + "translationKey": "item:blueBed" + }, + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Bed", + "id": 427, + "name": "Blue Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Blue Bed Head": { + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Blue Bed", + "rootMetaDesc": "_Blue Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Bed Head", + "id": 428, + "name": "_Blue Bed Head", + "stackable": true, + "meta": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Blue Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Bed Head", + "id": 429, + "name": "_Blue Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Blue Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Bed Head", + "id": 430, + "name": "_Blue Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Blue Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "blue_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Blue Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Bed Head", + "id": 431, + "name": "_Blue Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Brown Bed": { + "displayName": { + "translationKey": "item:brownBed" + }, + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Brown Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Bed", + "id": 432, + "name": "Brown Bed", + "stackable": true, + "meta": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Brown Bed|meta|rot2": { + "displayName": { + "translationKey": "item:brownBed" + }, + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Bed", + "id": 433, + "name": "Brown Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Brown Bed|meta|rot3": { + "displayName": { + "translationKey": "item:brownBed" + }, + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Bed", + "id": 434, + "name": "Brown Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Brown Bed|meta|rot4": { + "displayName": { + "translationKey": "item:brownBed" + }, + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Bed", + "id": 435, + "name": "Brown Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Brown Bed Head": { + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Brown Bed", + "rootMetaDesc": "_Brown Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Bed Head", + "id": 436, + "name": "_Brown Bed Head", + "stackable": true, + "meta": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Brown Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Brown Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Bed Head", + "id": 437, + "name": "_Brown Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Brown Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Brown Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Bed Head", + "id": 438, + "name": "_Brown Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Brown Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "brown_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Brown Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Bed Head", + "id": 439, + "name": "_Brown Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Green Bed": { + "displayName": { + "translationKey": "item:greenBed" + }, + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Green Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Bed", + "id": 440, + "name": "Green Bed", + "stackable": true, + "meta": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Green Bed|meta|rot2": { + "displayName": { + "translationKey": "item:greenBed" + }, + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Bed", + "id": 441, + "name": "Green Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Green Bed|meta|rot3": { + "displayName": { + "translationKey": "item:greenBed" + }, + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Bed", + "id": 442, + "name": "Green Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Green Bed|meta|rot4": { + "displayName": { + "translationKey": "item:greenBed" + }, + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Bed", + "id": 443, + "name": "Green Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Green Bed Head": { + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Green Bed", + "rootMetaDesc": "_Green Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Bed Head", + "id": 444, + "name": "_Green Bed Head", + "stackable": true, + "meta": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Green Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Green Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Bed Head", + "id": 445, + "name": "_Green Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Green Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Green Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Bed Head", + "id": 446, + "name": "_Green Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Green Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "green_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Green Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Bed Head", + "id": 447, + "name": "_Green Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Bed": { + "displayName": { + "translationKey": "item:redBed" + }, + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Red Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Bed", + "id": 448, + "name": "Red Bed", + "stackable": true, + "meta": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Bed|meta|rot2": { + "displayName": { + "translationKey": "item:redBed" + }, + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Bed", + "id": 449, + "name": "Red Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Bed|meta|rot3": { + "displayName": { + "translationKey": "item:redBed" + }, + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Bed", + "id": 450, + "name": "Red Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Bed|meta|rot4": { + "displayName": { + "translationKey": "item:redBed" + }, + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Bed", + "id": 451, + "name": "Red Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Red Bed Head": { + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Red Bed", + "rootMetaDesc": "_Red Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Bed Head", + "id": 452, + "name": "_Red Bed Head", + "stackable": true, + "meta": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Red Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Red Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Bed Head", + "id": 453, + "name": "_Red Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Red Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Red Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Bed Head", + "id": 454, + "name": "_Red Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Red Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "red_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Red Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Bed Head", + "id": 455, + "name": "_Red Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Black Bed": { + "displayName": { + "translationKey": "item:blackBed" + }, + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Black Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Bed", + "id": 456, + "name": "Black Bed", + "stackable": true, + "meta": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Black Bed|meta|rot2": { + "displayName": { + "translationKey": "item:blackBed" + }, + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Bed", + "id": 457, + "name": "Black Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Black Bed|meta|rot3": { + "displayName": { + "translationKey": "item:blackBed" + }, + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Bed", + "id": 458, + "name": "Black Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Black Bed|meta|rot4": { + "displayName": { + "translationKey": "item:blackBed" + }, + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Bed", + "id": 459, + "name": "Black Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Black Bed Head": { + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Black Bed", + "rootMetaDesc": "_Black Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Bed Head", + "id": 460, + "name": "_Black Bed Head", + "stackable": true, + "meta": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Black Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Black Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Bed Head", + "id": 461, + "name": "_Black Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Black Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Black Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Bed Head", + "id": 462, + "name": "_Black Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Black Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "black_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Black Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Bed Head", + "id": 463, + "name": "_Black Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Apple Block": { + "displayName": { + "translationKey": "item:appleBlock" + }, + "ttb": 600, + "textureInfo": [ + "apple_block_side", + "apple_block_top", + "apple_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 464, + "name": "Apple Block", + "stackable": true, + "meta": { + "rootName": "Apple Block", + "rootId": 464, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 321, + 322, + 323 + ] + }, + "Moonstone Ore": { + "displayName": { + "translationKey": "item:moonstoneOre" + }, + "ttb": 5000, + "textureInfo": "moonstone_ore", + "harvestType": "rock", + "harvestLevel": 3, + "drops": "Moonstone", + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Moonstone Ore" + }, + "specialToolBonusDrops": { + "Golem Pickaxe": [ + { + "bonusDrop": "Iron Fragment", + "probabilityOfDrop": 0.3333333333333333 + }, + { + "bonusDrop": "Gold Fragment", + "probabilityOfDrop": 0.25 + }, + { + "bonusDrop": "Diamond Fragment", + "probabilityOfDrop": 0.2 + }, + { + "bonusDrop": "Moonstone Fragment", + "probabilityOfDrop": 0.16666666666666666 + }, + { + "bonusDrop": "Coal", + "probabilityOfDrop": 0.14285714285714285 + } + ] + }, + "description": { + "translationKey": "item:moonstoneOreDescription" + }, + "onMinedAura": 50, + "id": 465, + "name": "Moonstone Ore", + "stackable": true, + "meta": { + "rootName": "Moonstone Ore", + "rootId": 465, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 324 + }, + "Moonstone Chest": { + "displayName": { + "translationKey": "item:moonstoneChest" + }, + "ttb": 3000, + "textureInfo": [ + "moonstone_chest_front", + "moonstone_chest_side", + "moonstone_chest_top" + ], + "harvestType": "rock", + "rootMetaDesc": "Moonstone Chest|meta|rot1", + "description": { + "translationKey": "item:moonstoneChestDescription" + }, + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 466, + "name": "Moonstone Chest", + "stackable": true, + "meta": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 325, + 326, + 327 + ] + }, + "Moonstone Chest|meta|rot2": { + "displayName": { + "translationKey": "item:moonstoneChest" + }, + "ttb": 3000, + "textureInfo": [ + "moonstone_chest_front", + "moonstone_chest_side", + "moonstone_chest_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:moonstoneChestDescription" + }, + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 467, + "name": "Moonstone Chest|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 325, + 326, + 327 + ] + }, + "Moonstone Chest|meta|rot3": { + "displayName": { + "translationKey": "item:moonstoneChest" + }, + "ttb": 3000, + "textureInfo": [ + "moonstone_chest_front", + "moonstone_chest_side", + "moonstone_chest_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:moonstoneChestDescription" + }, + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 468, + "name": "Moonstone Chest|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 325, + 326, + 327 + ] + }, + "Moonstone Chest|meta|rot4": { + "displayName": { + "translationKey": "item:moonstoneChest" + }, + "ttb": 3000, + "textureInfo": [ + "moonstone_chest_front", + "moonstone_chest_side", + "moonstone_chest_top" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:moonstoneChestDescription" + }, + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 469, + "name": "Moonstone Chest|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 325, + 326, + 327 + ] + }, + "Block of Moonstone": { + "displayName": { + "translationKey": "item:blockOfMoonstone" + }, + "ttb": 6750, + "textureInfo": "moonstone_block", + "harvestType": "rock", + "id": 470, + "name": "Block of Moonstone", + "stackable": true, + "meta": { + "rootName": "Block of Moonstone", + "rootId": 470, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 328 + }, + "Magma": { + "displayName": { + "translationKey": "item:magma" + }, + "ttb": 600, + "textureInfo": "magma", + "harvestType": "rock", + "id": 471, + "name": "Magma", + "stackable": true, + "meta": { + "rootName": "Magma", + "rootId": 471, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 329 + }, + "Useless Soil": { + "displayName": { + "translationKey": "item:uselessSoil" + }, + "ttb": 600, + "textureInfo": "podzol_top", + "harvestType": "granule", + "id": 472, + "name": "Useless Soil", + "stackable": true, + "meta": { + "rootName": "Useless Soil", + "rootId": 472, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 330 + }, + "Marked Sandstone": { + "displayName": { + "translationKey": "item:markedSandstone" + }, + "ttb": 960, + "textureInfo": "cut_sandstone", + "harvestType": "rock", + "id": 473, + "name": "Marked Sandstone", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone", + "rootId": 473, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 331 + }, + "Red Sandstone": { + "displayName": { + "translationKey": "item:redSandstone" + }, + "ttb": 960, + "textureInfo": "red_sandstone", + "harvestType": "rock", + "id": 474, + "name": "Red Sandstone", + "stackable": true, + "meta": { + "rootName": "Red Sandstone", + "rootId": 474, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 332 + }, + "Smooth Red Sandstone": { + "displayName": { + "translationKey": "item:smoothRedSandstone" + }, + "ttb": 960, + "textureInfo": "red_sandstone_top", + "harvestType": "rock", + "id": 475, + "name": "Smooth Red Sandstone", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone", + "rootId": 475, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "Engraved Red Sandstone": { + "displayName": { + "translationKey": "item:engravedRedSandstone" + }, + "ttb": 960, + "textureInfo": "chiseled_red_sandstone", + "harvestType": "rock", + "id": 476, + "name": "Engraved Red Sandstone", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone", + "rootId": 476, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 334 + }, + "Marked Red Sandstone": { + "displayName": { + "translationKey": "item:markedRedSandstone" + }, + "ttb": 960, + "textureInfo": "cut_red_sandstone", + "harvestType": "rock", + "id": 477, + "name": "Marked Red Sandstone", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone", + "rootId": 477, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 335 + }, + "Green Stone": { + "displayName": { + "translationKey": "item:greenStone" + }, + "ttb": 1800, + "textureInfo": "green_stone", + "harvestType": "rock", + "id": 478, + "name": "Green Stone", + "stackable": true, + "meta": { + "rootName": "Green Stone", + "rootId": 478, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 336 + }, + "Green Bricks": { + "displayName": { + "translationKey": "item:greenBricks" + }, + "ttb": 1800, + "textureInfo": "green_bricks", + "harvestType": "rock", + "id": 479, + "name": "Green Bricks", + "stackable": true, + "meta": { + "rootName": "Green Bricks", + "rootId": 479, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 337 + }, + "Dark Green Bricks": { + "displayName": { + "translationKey": "item:darkGreenBricks" + }, + "ttb": 1800, + "textureInfo": "dark_green_bricks", + "harvestType": "rock", + "id": 480, + "name": "Dark Green Bricks", + "stackable": true, + "meta": { + "rootName": "Dark Green Bricks", + "rootId": 480, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 338 + }, + "Sandstone Bricks": { + "displayName": { + "translationKey": "item:sandstoneBricks" + }, + "ttb": 960, + "textureInfo": "sandstone_brick", + "harvestType": "rock", + "id": 481, + "name": "Sandstone Bricks", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks", + "rootId": 481, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 339 + }, + "Engraved Diorite": { + "displayName": { + "translationKey": "item:engravedDiorite" + }, + "ttb": 1800, + "textureInfo": "engraved_diorite", + "harvestType": "rock", + "id": 482, + "name": "Engraved Diorite", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite", + "rootId": 482, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 340 + }, + "Diorite Bricks": { + "displayName": { + "translationKey": "item:dioriteBricks" + }, + "ttb": 1800, + "textureInfo": "diorite_brick", + "harvestType": "rock", + "id": 483, + "name": "Diorite Bricks", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks", + "rootId": 483, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 341 + }, + "Engraved Andesite": { + "displayName": { + "translationKey": "item:engravedAndesite" + }, + "ttb": 1800, + "textureInfo": "engraved_andesite", + "harvestType": "rock", + "id": 484, + "name": "Engraved Andesite", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite", + "rootId": 484, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 342 + }, + "Andesite Bricks": { + "displayName": { + "translationKey": "item:andesiteBricks" + }, + "ttb": 1800, + "textureInfo": "andesite_brick", + "harvestType": "rock", + "id": 485, + "name": "Andesite Bricks", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks", + "rootId": 485, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 343 + }, + "Engraved Granite": { + "displayName": { + "translationKey": "item:engravedGranite" + }, + "ttb": 1800, + "textureInfo": "engraved_granite", + "harvestType": "rock", + "id": 486, + "name": "Engraved Granite", + "stackable": true, + "meta": { + "rootName": "Engraved Granite", + "rootId": 486, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 344 + }, + "Granite Bricks": { + "displayName": { + "translationKey": "item:graniteBricks" + }, + "ttb": 1800, + "textureInfo": "granite_brick", + "harvestType": "rock", + "id": 487, + "name": "Granite Bricks", + "stackable": true, + "meta": { + "rootName": "Granite Bricks", + "rootId": 487, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 345 + }, + "Ice Bricks": { + "displayName": { + "translationKey": "item:iceBricks" + }, + "ttb": 1800, + "textureInfo": "ice_brick", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 488, + "name": "Ice Bricks", + "stackable": true, + "meta": { + "rootName": "Ice Bricks", + "rootId": 488, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 346 + }, + "Placeholder Packed Ice": { + "ttb": 1800, + "textureInfo": "ice_brick", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 489, + "name": "Placeholder Packed Ice", + "stackable": true, + "meta": { + "rootName": "Placeholder Packed Ice", + "rootId": 489, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 346 + }, + "Placeholder Blue Ice": { + "ttb": 1800, + "textureInfo": "ice_brick", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 490, + "name": "Placeholder Blue Ice", + "stackable": true, + "meta": { + "rootName": "Placeholder Blue Ice", + "rootId": 490, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 346 + }, + "Plum Leaves": { + "displayName": { + "translationKey": "item:plumLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_plum", + "harvestType": "cuttable", + "id": 491, + "name": "Plum Leaves", + "stackable": true, + "meta": { + "rootName": "Plum Leaves", + "rootId": 491, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 347 + }, + "Cedar Leaves": { + "displayName": { + "translationKey": "item:cedarLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_cedar", + "harvestType": "cuttable", + "id": 492, + "name": "Cedar Leaves", + "stackable": true, + "meta": { + "rootName": "Cedar Leaves", + "rootId": 492, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 348 + }, + "Palm Leaves": { + "displayName": { + "translationKey": "item:palmLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_palm", + "harvestType": "cuttable", + "id": 493, + "name": "Palm Leaves", + "stackable": true, + "meta": { + "rootName": "Palm Leaves", + "rootId": 493, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 349 + }, + "Plum Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_plum", + "harvestType": "cuttable", + "drops": "Plum Leaves", + "id": 494, + "name": "Plum Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Plum Leaves", + "rootId": 491, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 347 + }, + "Cedar Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_cedar", + "harvestType": "cuttable", + "drops": "Cedar Leaves", + "id": 495, + "name": "Cedar Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Cedar Leaves", + "rootId": 492, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 348 + }, + "Palm Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_palm", + "harvestType": "cuttable", + "drops": "Palm Leaves", + "id": 496, + "name": "Palm Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Palm Leaves", + "rootId": 493, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 349 + }, + "Pine Log|TreeBase|Pine": { + "ttb": 2400, + "textureInfo": "log_pine", + "harvestType": "wood", + "drops": "Pine Log", + "id": 497, + "name": "Pine Log|TreeBase|Pine", + "stackable": true, + "meta": { + "rootName": "Pine Log", + "rootId": 10, + "metaStr": "TreeBase|Pine", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pine", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 85 + }, + "Plum Log|TreeBase|Plum": { + "ttb": 2400, + "textureInfo": "log_plum", + "harvestType": "wood", + "drops": "Plum Log", + "id": 498, + "name": "Plum Log|TreeBase|Plum", + "stackable": true, + "meta": { + "rootName": "Plum Log", + "rootId": 11, + "metaStr": "TreeBase|Plum", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Plum", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 86 + }, + "Cedar Log|TreeBase|Cedar": { + "ttb": 2400, + "textureInfo": "log_cedar", + "harvestType": "wood", + "drops": "Cedar Log", + "id": 499, + "name": "Cedar Log|TreeBase|Cedar", + "stackable": true, + "meta": { + "rootName": "Cedar Log", + "rootId": 12, + "metaStr": "TreeBase|Cedar", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cedar", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 87 + }, + "Aspen Log|TreeBase|Aspen": { + "ttb": 2400, + "textureInfo": "log_aspen", + "harvestType": "wood", + "drops": "Aspen Log", + "id": 500, + "name": "Aspen Log|TreeBase|Aspen", + "stackable": true, + "meta": { + "rootName": "Aspen Log", + "rootId": 13, + "metaStr": "TreeBase|Aspen", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Aspen", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 88 + }, + "Jungle Log|TreeBase|Jungle": { + "ttb": 2400, + "textureInfo": "log_jungle", + "harvestType": "wood", + "drops": "Jungle Log", + "id": 501, + "name": "Jungle Log|TreeBase|Jungle", + "stackable": true, + "meta": { + "rootName": "Jungle Log", + "rootId": 14, + "metaStr": "TreeBase|Jungle", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Jungle", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 89 + }, + "Palm Log": { + "displayName": { + "translationKey": "item:palmLog" + }, + "ttb": 2400, + "textureInfo": "log_palm", + "harvestType": "wood", + "id": 502, + "name": "Palm Log", + "stackable": true, + "meta": { + "rootName": "Palm Log", + "rootId": 502, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 350 + }, + "Palm Log|TreeBase|Palm": { + "ttb": 2400, + "textureInfo": "log_palm", + "harvestType": "wood", + "drops": "Palm Log", + "id": 503, + "name": "Palm Log|TreeBase|Palm", + "stackable": true, + "meta": { + "rootName": "Palm Log", + "rootId": 502, + "metaStr": "TreeBase|Palm", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Palm", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 350 + }, + "Palm Wood Planks": { + "displayName": { + "translationKey": "item:palmWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_palm", + "harvestType": "wood", + "id": 504, + "name": "Palm Wood Planks", + "stackable": true, + "meta": { + "rootName": "Palm Wood Planks", + "rootId": 504, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 351 + }, + "Palm Sapling": { + "displayName": { + "translationKey": "item:palmSapling" + }, + "ttb": 1, + "textureInfo": "palm_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "palm_sapling", + "id": 505, + "name": "Palm Sapling", + "stackable": true, + "meta": { + "rootName": "Palm Sapling", + "rootId": 505, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Door": { + "displayName": { + "translationKey": "item:pineDoor" + }, + "ttb": 3600, + "itemTexture": "pine_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Pine Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Pine Door", + "id": 506, + "name": "Pine Door", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Door|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 507, + "name": "Pine Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Door|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 508, + "name": "Pine Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Door|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 509, + "name": "Pine Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Door|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 510, + "name": "Pine Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Door|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 511, + "name": "Pine Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Door|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 512, + "name": "Pine Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Door|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 513, + "name": "Pine Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pine Door Top": { + "ttb": 3600, + "itemTexture": "pine_door", + "harvestType": "wood", + "model": "door", + "drops": "Pine Door", + "rootMetaDesc": "_Pine Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Pine Door Top", + "id": 514, + "name": "_Pine Door Top", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pine Door Top|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "TB": false, + "id": 515, + "name": "_Pine Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pine Door Top|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "id": 516, + "name": "_Pine Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pine Door Top|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "TB": false, + "id": 517, + "name": "_Pine Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pine Door Top|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "id": 518, + "name": "_Pine Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pine Door Top|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "TB": false, + "id": 519, + "name": "_Pine Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pine Door Top|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "id": 520, + "name": "_Pine Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pine Door Top|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pine Door", + "TB": false, + "id": 521, + "name": "_Pine Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Door": { + "displayName": { + "translationKey": "item:plumDoor" + }, + "ttb": 3600, + "itemTexture": "plum_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Plum Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Plum Door", + "id": 522, + "name": "Plum Door", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Door|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 523, + "name": "Plum Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Door|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 524, + "name": "Plum Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Door|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 525, + "name": "Plum Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Door|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 526, + "name": "Plum Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Door|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 527, + "name": "Plum Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Door|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 528, + "name": "Plum Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Door|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 529, + "name": "Plum Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Plum Door Top": { + "ttb": 3600, + "itemTexture": "plum_door", + "harvestType": "wood", + "model": "door", + "drops": "Plum Door", + "rootMetaDesc": "_Plum Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Plum Door Top", + "id": 530, + "name": "_Plum Door Top", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Plum Door Top|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "TB": false, + "id": 531, + "name": "_Plum Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Plum Door Top|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "id": 532, + "name": "_Plum Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Plum Door Top|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "TB": false, + "id": 533, + "name": "_Plum Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Plum Door Top|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "id": 534, + "name": "_Plum Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Plum Door Top|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "TB": false, + "id": 535, + "name": "_Plum Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Plum Door Top|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "id": 536, + "name": "_Plum Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Plum Door Top|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Plum Door", + "TB": false, + "id": 537, + "name": "_Plum Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Door": { + "displayName": { + "translationKey": "item:cedarDoor" + }, + "ttb": 3600, + "itemTexture": "cedar_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Cedar Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Cedar Door", + "id": 538, + "name": "Cedar Door", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Door|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 539, + "name": "Cedar Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Door|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 540, + "name": "Cedar Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Door|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 541, + "name": "Cedar Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Door|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 542, + "name": "Cedar Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Door|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 543, + "name": "Cedar Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Door|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 544, + "name": "Cedar Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Door|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 545, + "name": "Cedar Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cedar Door Top": { + "ttb": 3600, + "itemTexture": "cedar_door", + "harvestType": "wood", + "model": "door", + "drops": "Cedar Door", + "rootMetaDesc": "_Cedar Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Cedar Door Top", + "id": 546, + "name": "_Cedar Door Top", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cedar Door Top|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "TB": false, + "id": 547, + "name": "_Cedar Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cedar Door Top|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "id": 548, + "name": "_Cedar Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cedar Door Top|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "TB": false, + "id": 549, + "name": "_Cedar Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cedar Door Top|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "id": 550, + "name": "_Cedar Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cedar Door Top|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "TB": false, + "id": 551, + "name": "_Cedar Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cedar Door Top|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "id": 552, + "name": "_Cedar Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cedar Door Top|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cedar Door", + "TB": false, + "id": 553, + "name": "_Cedar Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Door": { + "displayName": { + "translationKey": "item:aspenDoor" + }, + "ttb": 3600, + "itemTexture": "aspen_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Aspen Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Aspen Door", + "id": 554, + "name": "Aspen Door", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Door|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 555, + "name": "Aspen Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Door|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 556, + "name": "Aspen Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Door|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 557, + "name": "Aspen Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Door|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 558, + "name": "Aspen Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Door|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 559, + "name": "Aspen Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Door|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 560, + "name": "Aspen Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Door|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 561, + "name": "Aspen Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Aspen Door Top": { + "ttb": 3600, + "itemTexture": "aspen_door", + "harvestType": "wood", + "model": "door", + "drops": "Aspen Door", + "rootMetaDesc": "_Aspen Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Aspen Door Top", + "id": 562, + "name": "_Aspen Door Top", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Aspen Door Top|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "TB": false, + "id": 563, + "name": "_Aspen Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Aspen Door Top|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "id": 564, + "name": "_Aspen Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Aspen Door Top|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "TB": false, + "id": 565, + "name": "_Aspen Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Aspen Door Top|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "id": 566, + "name": "_Aspen Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Aspen Door Top|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "TB": false, + "id": 567, + "name": "_Aspen Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Aspen Door Top|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "id": 568, + "name": "_Aspen Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Aspen Door Top|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Aspen Door", + "TB": false, + "id": 569, + "name": "_Aspen Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Door": { + "displayName": { + "translationKey": "item:jungleDoor" + }, + "ttb": 3600, + "itemTexture": "jungle_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Jungle Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Jungle Door", + "id": 570, + "name": "Jungle Door", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Door|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 571, + "name": "Jungle Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Door|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 572, + "name": "Jungle Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Door|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 573, + "name": "Jungle Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Door|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 574, + "name": "Jungle Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Door|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 575, + "name": "Jungle Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Door|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 576, + "name": "Jungle Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Door|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 577, + "name": "Jungle Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Jungle Door Top": { + "ttb": 3600, + "itemTexture": "jungle_door", + "harvestType": "wood", + "model": "door", + "drops": "Jungle Door", + "rootMetaDesc": "_Jungle Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Jungle Door Top", + "id": 578, + "name": "_Jungle Door Top", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Jungle Door Top|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "TB": false, + "id": 579, + "name": "_Jungle Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Jungle Door Top|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "id": 580, + "name": "_Jungle Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Jungle Door Top|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "TB": false, + "id": 581, + "name": "_Jungle Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Jungle Door Top|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "id": 582, + "name": "_Jungle Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Jungle Door Top|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "TB": false, + "id": 583, + "name": "_Jungle Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Jungle Door Top|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "id": 584, + "name": "_Jungle Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Jungle Door Top|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Jungle Door", + "TB": false, + "id": 585, + "name": "_Jungle Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Door": { + "displayName": { + "translationKey": "item:palmDoor" + }, + "ttb": 3600, + "itemTexture": "palm_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Palm Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Palm Door", + "id": 586, + "name": "Palm Door", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Door|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 587, + "name": "Palm Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Door|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 588, + "name": "Palm Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Door|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 589, + "name": "Palm Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Door|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 590, + "name": "Palm Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Door|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 591, + "name": "Palm Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Door|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 592, + "name": "Palm Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Door|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 593, + "name": "Palm Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Palm Door Top": { + "ttb": 3600, + "itemTexture": "palm_door", + "harvestType": "wood", + "model": "door", + "drops": "Palm Door", + "rootMetaDesc": "_Palm Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Palm Door Top", + "id": 594, + "name": "_Palm Door Top", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Palm Door Top|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "TB": false, + "id": 595, + "name": "_Palm Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Palm Door Top|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "id": 596, + "name": "_Palm Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Palm Door Top|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "TB": false, + "id": 597, + "name": "_Palm Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Palm Door Top|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "id": 598, + "name": "_Palm Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Palm Door Top|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "TB": false, + "id": 599, + "name": "_Palm Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Palm Door Top|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "id": 600, + "name": "_Palm Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Palm Door Top|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Palm Door", + "TB": false, + "id": 601, + "name": "_Palm Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Trapdoor": { + "displayName": { + "translationKey": "item:pineTrapdoor" + }, + "ttb": 2800, + "itemTexture": "pine_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Pine Trapdoor|meta|rot1|closed", + "blockModel": "Pine Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 602, + "name": "Pine Trapdoor", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Trapdoor|meta|rot1|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 603, + "name": "Pine Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Trapdoor|meta|rot2|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 604, + "name": "Pine Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Trapdoor|meta|rot2|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 605, + "name": "Pine Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Trapdoor|meta|rot3|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 606, + "name": "Pine Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Trapdoor|meta|rot3|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 607, + "name": "Pine Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Trapdoor|meta|rot4|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 608, + "name": "Pine Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Trapdoor|meta|rot4|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 609, + "name": "Pine Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Trapdoor": { + "displayName": { + "translationKey": "item:plumTrapdoor" + }, + "ttb": 2800, + "itemTexture": "plum_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Plum Trapdoor|meta|rot1|closed", + "blockModel": "Plum Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 610, + "name": "Plum Trapdoor", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Trapdoor|meta|rot1|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 611, + "name": "Plum Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Trapdoor|meta|rot2|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 612, + "name": "Plum Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Trapdoor|meta|rot2|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 613, + "name": "Plum Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Trapdoor|meta|rot3|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 614, + "name": "Plum Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Trapdoor|meta|rot3|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 615, + "name": "Plum Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Trapdoor|meta|rot4|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 616, + "name": "Plum Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Trapdoor|meta|rot4|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 617, + "name": "Plum Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Trapdoor": { + "displayName": { + "translationKey": "item:cedarTrapdoor" + }, + "ttb": 2800, + "itemTexture": "cedar_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Cedar Trapdoor|meta|rot1|closed", + "blockModel": "Cedar Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 618, + "name": "Cedar Trapdoor", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Trapdoor|meta|rot1|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 619, + "name": "Cedar Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Trapdoor|meta|rot2|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 620, + "name": "Cedar Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Trapdoor|meta|rot2|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 621, + "name": "Cedar Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Trapdoor|meta|rot3|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 622, + "name": "Cedar Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Trapdoor|meta|rot3|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 623, + "name": "Cedar Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Trapdoor|meta|rot4|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 624, + "name": "Cedar Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Trapdoor|meta|rot4|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 625, + "name": "Cedar Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Trapdoor": { + "displayName": { + "translationKey": "item:aspenTrapdoor" + }, + "ttb": 2800, + "itemTexture": "aspen_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Aspen Trapdoor|meta|rot1|closed", + "blockModel": "Aspen Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 626, + "name": "Aspen Trapdoor", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Trapdoor|meta|rot1|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 627, + "name": "Aspen Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Trapdoor|meta|rot2|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 628, + "name": "Aspen Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Trapdoor|meta|rot2|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 629, + "name": "Aspen Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Trapdoor|meta|rot3|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 630, + "name": "Aspen Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Trapdoor|meta|rot3|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 631, + "name": "Aspen Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Trapdoor|meta|rot4|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 632, + "name": "Aspen Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Trapdoor|meta|rot4|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 633, + "name": "Aspen Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Trapdoor": { + "displayName": { + "translationKey": "item:jungleTrapdoor" + }, + "ttb": 2800, + "itemTexture": "jungle_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Jungle Trapdoor|meta|rot1|closed", + "blockModel": "Jungle Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 634, + "name": "Jungle Trapdoor", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Trapdoor|meta|rot1|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 635, + "name": "Jungle Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Trapdoor|meta|rot2|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 636, + "name": "Jungle Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Trapdoor|meta|rot2|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 637, + "name": "Jungle Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Trapdoor|meta|rot3|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 638, + "name": "Jungle Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Trapdoor|meta|rot3|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 639, + "name": "Jungle Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Trapdoor|meta|rot4|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 640, + "name": "Jungle Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Trapdoor|meta|rot4|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 641, + "name": "Jungle Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Trapdoor": { + "displayName": { + "translationKey": "item:palmTrapdoor" + }, + "ttb": 2800, + "itemTexture": "palm_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Palm Trapdoor|meta|rot1|closed", + "blockModel": "Palm Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 642, + "name": "Palm Trapdoor", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Trapdoor|meta|rot1|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 643, + "name": "Palm Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Trapdoor|meta|rot2|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 644, + "name": "Palm Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Trapdoor|meta|rot2|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 645, + "name": "Palm Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Trapdoor|meta|rot3|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 646, + "name": "Palm Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Trapdoor|meta|rot3|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 647, + "name": "Palm Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Trapdoor|meta|rot4|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 648, + "name": "Palm Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Trapdoor|meta|rot4|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 649, + "name": "Palm Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Sand": { + "displayName": { + "translationKey": "item:redSand" + }, + "ttb": 600, + "textureInfo": "red_sand", + "harvestType": "granule", + "soundType": { + "break": "sand", + "place": "sand" + }, + "id": 650, + "name": "Red Sand", + "stackable": true, + "meta": { + "rootName": "Red Sand", + "rootId": 650, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 352 + }, + "Red Sandstone Bricks": { + "displayName": { + "translationKey": "item:redSandstoneBricks" + }, + "ttb": 960, + "textureInfo": "red_sandstone_brick", + "harvestType": "rock", + "id": 651, + "name": "Red Sandstone Bricks", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks", + "rootId": 651, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 353 + }, + "Rocky Dirt": { + "displayName": { + "translationKey": "item:rockyDirt" + }, + "ttb": 600, + "textureInfo": "rocky_dirt", + "harvestType": "granule", + "id": 652, + "name": "Rocky Dirt", + "stackable": true, + "meta": { + "rootName": "Rocky Dirt", + "rootId": 652, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 354 + }, + "Autumn Maple Leaves": { + "displayName": { + "translationKey": "item:autumnMapleLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_maple_autumn", + "harvestType": "cuttable", + "id": 653, + "name": "Autumn Maple Leaves", + "stackable": true, + "meta": { + "rootName": "Autumn Maple Leaves", + "rootId": 653, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 355 + }, + "Autumn Maple Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_maple_autumn", + "harvestType": "cuttable", + "drops": "Autumn Maple Leaves", + "id": 654, + "name": "Autumn Maple Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Autumn Maple Leaves", + "rootId": 653, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 355 + }, + "Fallen Maple Leaves": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "rootMetaDesc": "Fallen Maple Leaves|meta|rot1|bot", + "id": 655, + "name": "Fallen Maple Leaves", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "Fallen Maple Leaves|meta|rot1|top": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 656, + "name": "Fallen Maple Leaves|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "Fallen Maple Leaves|meta|rot1|side": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 657, + "name": "Fallen Maple Leaves|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "Fallen Maple Leaves|meta|rot2|side": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 658, + "name": "Fallen Maple Leaves|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "Fallen Maple Leaves|meta|rot3|side": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 659, + "name": "Fallen Maple Leaves|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "Fallen Maple Leaves|meta|rot4|side": { + "displayName": { + "translationKey": "item:fallenMapleLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_maple_leaves_side", + "leaves_maple_autumn" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 660, + "name": "Fallen Maple Leaves|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 356, + 355 + ] + }, + "Maple Slab": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Maple Slab|meta|rot1|bot", + "id": 661, + "name": "Maple Slab", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "Maple Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 662, + "name": "Maple Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "Maple Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 663, + "name": "Maple Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "Maple Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 664, + "name": "Maple Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "Maple Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 665, + "name": "Maple Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "Maple Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:mapleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_maple_side", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 666, + "name": "Maple Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 357, + 90 + ] + }, + "Pine Slab": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Pine Slab|meta|rot1|bot", + "id": 667, + "name": "Pine Slab", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "Pine Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 668, + "name": "Pine Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "Pine Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 669, + "name": "Pine Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "Pine Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 670, + "name": "Pine Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "Pine Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 671, + "name": "Pine Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "Pine Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:pineSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_side", + "planks_pine" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 672, + "name": "Pine Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 358, + 94 + ] + }, + "Plum Slab": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Plum Slab|meta|rot1|bot", + "id": 673, + "name": "Plum Slab", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "Plum Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 674, + "name": "Plum Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "Plum Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 675, + "name": "Plum Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "Plum Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 676, + "name": "Plum Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "Plum Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 677, + "name": "Plum Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "Plum Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:plumSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_plum_side", + "planks_plum" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 678, + "name": "Plum Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 359, + 92 + ] + }, + "Cedar Slab": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Cedar Slab|meta|rot1|bot", + "id": 679, + "name": "Cedar Slab", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "Cedar Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 680, + "name": "Cedar Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "Cedar Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 681, + "name": "Cedar Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "Cedar Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 682, + "name": "Cedar Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "Cedar Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 683, + "name": "Cedar Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "Cedar Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:cedarSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cedar_side", + "planks_cedar" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 684, + "name": "Cedar Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 360, + 95 + ] + }, + "Aspen Slab": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Aspen Slab|meta|rot1|bot", + "id": 685, + "name": "Aspen Slab", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "Aspen Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 686, + "name": "Aspen Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "Aspen Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 687, + "name": "Aspen Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "Aspen Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 688, + "name": "Aspen Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "Aspen Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 689, + "name": "Aspen Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "Aspen Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:aspenSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_aspen_side", + "planks_aspen" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 690, + "name": "Aspen Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 361, + 91 + ] + }, + "Jungle Slab": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Jungle Slab|meta|rot1|bot", + "id": 691, + "name": "Jungle Slab", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "Jungle Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 692, + "name": "Jungle Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "Jungle Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 693, + "name": "Jungle Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "Jungle Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 694, + "name": "Jungle Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "Jungle Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 695, + "name": "Jungle Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "Jungle Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:jungleSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_side", + "planks_jungle" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 696, + "name": "Jungle Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 362, + 93 + ] + }, + "Palm Slab": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Palm Slab|meta|rot1|bot", + "id": 697, + "name": "Palm Slab", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "Palm Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 698, + "name": "Palm Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "Palm Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 699, + "name": "Palm Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "Palm Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 700, + "name": "Palm Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "Palm Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 701, + "name": "Palm Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "Palm Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:palmSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_palm_side", + "planks_palm" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 702, + "name": "Palm Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 363, + 351 + ] + }, + "Dirt Slab": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "rootMetaDesc": "Dirt Slab|meta|rot1|bot", + "id": 703, + "name": "Dirt Slab", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "Dirt Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 704, + "name": "Dirt Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "Dirt Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 705, + "name": "Dirt Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "Dirt Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 706, + "name": "Dirt Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "Dirt Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 707, + "name": "Dirt Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "Dirt Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:dirtSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_dirt_side", + "dirt" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 708, + "name": "Dirt Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 364, + 77 + ] + }, + "Grass Slab": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "rootMetaDesc": "Grass Slab|meta|rot1|bot", + "id": 709, + "name": "Grass Slab", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "Grass Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 710, + "name": "Grass Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "Grass Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 711, + "name": "Grass Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "Grass Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 712, + "name": "Grass Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "Grass Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 713, + "name": "Grass Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "Grass Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:grassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_grass_top_side", + "grass_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 714, + "name": "Grass Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 365, + 79 + ] + }, + "Messy Stone Slab": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Messy Stone Slab|meta|rot1|bot", + "id": 715, + "name": "Messy Stone Slab", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "Messy Stone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 716, + "name": "Messy Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "Messy Stone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 717, + "name": "Messy Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "Messy Stone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 718, + "name": "Messy Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "Messy Stone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 719, + "name": "Messy Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "Messy Stone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:messyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cobblestone_side", + "messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 720, + "name": "Messy Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 366, + 102 + ] + }, + "Stone Slab": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Stone Slab|meta|rot1|bot", + "id": 721, + "name": "Stone Slab", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "Stone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 722, + "name": "Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "Stone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 723, + "name": "Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "Stone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 724, + "name": "Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "Stone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 725, + "name": "Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "Stone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:stoneSlab" + }, + "ttb": 800, + "textureInfo": [ + "slab_stone_side", + "stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 726, + "name": "Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 367, + 103 + ] + }, + "Smooth Stone Slab": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Stone Slab|meta|rot1|bot", + "id": 727, + "name": "Smooth Stone Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "Smooth Stone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 728, + "name": "Smooth Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "Smooth Stone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 729, + "name": "Smooth Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "Smooth Stone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 730, + "name": "Smooth Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "Smooth Stone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 731, + "name": "Smooth Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "Smooth Stone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:smoothStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_smooth_stone_side", + "smooth_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 732, + "name": "Smooth Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 368, + 104 + ] + }, + "Engraved Stone Slab": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Stone Slab|meta|rot1|bot", + "id": 733, + "name": "Engraved Stone Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "Engraved Stone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 734, + "name": "Engraved Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "Engraved Stone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 735, + "name": "Engraved Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "Engraved Stone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 736, + "name": "Engraved Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "Engraved Stone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 737, + "name": "Engraved Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "Engraved Stone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:engravedStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_carved_side", + "stonebrick_carved" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 738, + "name": "Engraved Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 369, + 207 + ] + }, + "Stone Bricks Slab": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Stone Bricks Slab|meta|rot1|bot", + "id": 739, + "name": "Stone Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "Stone Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 740, + "name": "Stone Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "Stone Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 741, + "name": "Stone Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "Stone Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 742, + "name": "Stone Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "Stone Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 743, + "name": "Stone Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "Stone Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:stoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_side", + "stonebrick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 744, + "name": "Stone Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 370, + 202 + ] + }, + "Mossy Stone Slab": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Mossy Stone Slab|meta|rot1|bot", + "id": 745, + "name": "Mossy Stone Slab", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "Mossy Stone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 746, + "name": "Mossy Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "Mossy Stone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 747, + "name": "Mossy Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "Mossy Stone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 748, + "name": "Mossy Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "Mossy Stone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 749, + "name": "Mossy Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "Mossy Stone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:mossyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mossy_cobblestone_side", + "mossy_cobblestone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 750, + "name": "Mossy Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 371, + 320 + ] + }, + "Mossy Stone Bricks Slab": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Mossy Stone Bricks Slab|meta|rot1|bot", + "id": 751, + "name": "Mossy Stone Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "Mossy Stone Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 752, + "name": "Mossy Stone Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "Mossy Stone Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 753, + "name": "Mossy Stone Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "Mossy Stone Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 754, + "name": "Mossy Stone Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "Mossy Stone Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 755, + "name": "Mossy Stone Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "Mossy Stone Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:mossyStoneBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stonebrick_mossy_side", + "stonebrick_mossy" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 756, + "name": "Mossy Stone Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 372, + 208 + ] + }, + "Andesite Slab": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Andesite Slab|meta|rot1|bot", + "id": 757, + "name": "Andesite Slab", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "Andesite Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 758, + "name": "Andesite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "Andesite Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 759, + "name": "Andesite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "Andesite Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 760, + "name": "Andesite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "Andesite Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 761, + "name": "Andesite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "Andesite Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:andesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_side", + "stone_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 762, + "name": "Andesite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 373, + 107 + ] + }, + "Smooth Andesite Slab": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Andesite Slab|meta|rot1|bot", + "id": 763, + "name": "Smooth Andesite Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "Smooth Andesite Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 764, + "name": "Smooth Andesite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "Smooth Andesite Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 765, + "name": "Smooth Andesite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "Smooth Andesite Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 766, + "name": "Smooth Andesite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "Smooth Andesite Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 767, + "name": "Smooth Andesite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "Smooth Andesite Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:smoothAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_andesite_smooth_side", + "stone_andesite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 768, + "name": "Smooth Andesite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 374, + 108 + ] + }, + "Engraved Andesite Slab": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Andesite Slab|meta|rot1|bot", + "id": 769, + "name": "Engraved Andesite Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "Engraved Andesite Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 770, + "name": "Engraved Andesite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "Engraved Andesite Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 771, + "name": "Engraved Andesite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "Engraved Andesite Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 772, + "name": "Engraved Andesite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "Engraved Andesite Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 773, + "name": "Engraved Andesite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "Engraved Andesite Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:engravedAndesiteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_andesite_side", + "engraved_andesite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 774, + "name": "Engraved Andesite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 375, + 342 + ] + }, + "Andesite Bricks Slab": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Andesite Bricks Slab|meta|rot1|bot", + "id": 775, + "name": "Andesite Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "Andesite Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 776, + "name": "Andesite Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "Andesite Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 777, + "name": "Andesite Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "Andesite Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 778, + "name": "Andesite Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "Andesite Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 779, + "name": "Andesite Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "Andesite Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:andesiteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_andesite_brick_side", + "andesite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 780, + "name": "Andesite Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 376, + 343 + ] + }, + "Diorite Slab": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Diorite Slab|meta|rot1|bot", + "id": 781, + "name": "Diorite Slab", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "Diorite Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 782, + "name": "Diorite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "Diorite Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 783, + "name": "Diorite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "Diorite Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 784, + "name": "Diorite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "Diorite Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 785, + "name": "Diorite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "Diorite Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:dioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_side", + "stone_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 786, + "name": "Diorite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 377, + 105 + ] + }, + "Smooth Diorite Slab": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Diorite Slab|meta|rot1|bot", + "id": 787, + "name": "Smooth Diorite Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "Smooth Diorite Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 788, + "name": "Smooth Diorite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "Smooth Diorite Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 789, + "name": "Smooth Diorite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "Smooth Diorite Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 790, + "name": "Smooth Diorite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "Smooth Diorite Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 791, + "name": "Smooth Diorite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "Smooth Diorite Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:smoothDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_diorite_smooth_side", + "stone_diorite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 792, + "name": "Smooth Diorite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 378, + 106 + ] + }, + "Engraved Diorite Slab": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Diorite Slab|meta|rot1|bot", + "id": 793, + "name": "Engraved Diorite Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "Engraved Diorite Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 794, + "name": "Engraved Diorite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "Engraved Diorite Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 795, + "name": "Engraved Diorite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "Engraved Diorite Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 796, + "name": "Engraved Diorite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "Engraved Diorite Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 797, + "name": "Engraved Diorite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "Engraved Diorite Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:engravedDioriteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_diorite_side", + "engraved_diorite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 798, + "name": "Engraved Diorite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 379, + 340 + ] + }, + "Diorite Bricks Slab": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Diorite Bricks Slab|meta|rot1|bot", + "id": 799, + "name": "Diorite Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "Diorite Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 800, + "name": "Diorite Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "Diorite Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 801, + "name": "Diorite Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "Diorite Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 802, + "name": "Diorite Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "Diorite Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 803, + "name": "Diorite Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "Diorite Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:dioriteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_diorite_brick_side", + "diorite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 804, + "name": "Diorite Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 380, + 341 + ] + }, + "Granite Slab": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Granite Slab|meta|rot1|bot", + "id": 805, + "name": "Granite Slab", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "Granite Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 806, + "name": "Granite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "Granite Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 807, + "name": "Granite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "Granite Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 808, + "name": "Granite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "Granite Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 809, + "name": "Granite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "Granite Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:graniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_side", + "stone_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 810, + "name": "Granite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 381, + 109 + ] + }, + "Smooth Granite Slab": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Granite Slab|meta|rot1|bot", + "id": 811, + "name": "Smooth Granite Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "Smooth Granite Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 812, + "name": "Smooth Granite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "Smooth Granite Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 813, + "name": "Smooth Granite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "Smooth Granite Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 814, + "name": "Smooth Granite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "Smooth Granite Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 815, + "name": "Smooth Granite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "Smooth Granite Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:smoothGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_stone_granite_smooth_side", + "stone_granite_smooth" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 816, + "name": "Smooth Granite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 382, + 110 + ] + }, + "Engraved Granite Slab": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Granite Slab|meta|rot1|bot", + "id": 817, + "name": "Engraved Granite Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "Engraved Granite Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 818, + "name": "Engraved Granite Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "Engraved Granite Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 819, + "name": "Engraved Granite Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "Engraved Granite Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 820, + "name": "Engraved Granite Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "Engraved Granite Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 821, + "name": "Engraved Granite Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "Engraved Granite Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:engravedGraniteSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_engraved_granite_side", + "engraved_granite" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 822, + "name": "Engraved Granite Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 383, + 344 + ] + }, + "Granite Bricks Slab": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Granite Bricks Slab|meta|rot1|bot", + "id": 823, + "name": "Granite Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "Granite Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 824, + "name": "Granite Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "Granite Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 825, + "name": "Granite Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "Granite Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 826, + "name": "Granite Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "Granite Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 827, + "name": "Granite Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "Granite Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:graniteBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_granite_brick_side", + "granite_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 828, + "name": "Granite Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 384, + 345 + ] + }, + "Sandstone Slab": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Sandstone Slab|meta|rot1|bot", + "id": 829, + "name": "Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "Sandstone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 830, + "name": "Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "Sandstone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 831, + "name": "Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "Sandstone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 832, + "name": "Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "Sandstone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 833, + "name": "Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "Sandstone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:sandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_normal_side", + "sandstone_normal" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 834, + "name": "Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 385, + 111 + ] + }, + "Smooth Sandstone Slab": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Sandstone Slab|meta|rot1|bot", + "id": 835, + "name": "Smooth Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "Smooth Sandstone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 836, + "name": "Smooth Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "Smooth Sandstone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 837, + "name": "Smooth Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "Smooth Sandstone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 838, + "name": "Smooth Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "Smooth Sandstone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 839, + "name": "Smooth Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "Smooth Sandstone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:smoothSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 840, + "name": "Smooth Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 210 + }, + "Engraved Sandstone Slab": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Sandstone Slab|meta|rot1|bot", + "id": 841, + "name": "Engraved Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "Engraved Sandstone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 842, + "name": "Engraved Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "Engraved Sandstone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 843, + "name": "Engraved Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "Engraved Sandstone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 844, + "name": "Engraved Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "Engraved Sandstone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 845, + "name": "Engraved Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "Engraved Sandstone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:engravedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_sandstone_side", + "chiseled_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 846, + "name": "Engraved Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 386, + 211 + ] + }, + "Marked Sandstone Slab": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Marked Sandstone Slab|meta|rot1|bot", + "id": 847, + "name": "Marked Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "Marked Sandstone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 848, + "name": "Marked Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "Marked Sandstone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 849, + "name": "Marked Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "Marked Sandstone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 850, + "name": "Marked Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "Marked Sandstone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 851, + "name": "Marked Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "Marked Sandstone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:markedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_sandstone_side", + "cut_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 852, + "name": "Marked Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 387, + 331 + ] + }, + "Sandstone Bricks Slab": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Sandstone Bricks Slab|meta|rot1|bot", + "id": 853, + "name": "Sandstone Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "Sandstone Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 854, + "name": "Sandstone Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "Sandstone Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 855, + "name": "Sandstone Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "Sandstone Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 856, + "name": "Sandstone Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "Sandstone Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 857, + "name": "Sandstone Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "Sandstone Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:sandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_sandstone_brick_side", + "sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 858, + "name": "Sandstone Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 388, + 339 + ] + }, + "Red Sandstone Slab": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Red Sandstone Slab|meta|rot1|bot", + "id": 859, + "name": "Red Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "Red Sandstone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 860, + "name": "Red Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "Red Sandstone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 861, + "name": "Red Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "Red Sandstone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 862, + "name": "Red Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "Red Sandstone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 863, + "name": "Red Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "Red Sandstone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:redSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_side", + "red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 864, + "name": "Red Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 389, + 332 + ] + }, + "Smooth Red Sandstone Slab": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Smooth Red Sandstone Slab|meta|rot1|bot", + "id": 865, + "name": "Smooth Red Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "Smooth Red Sandstone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 866, + "name": "Smooth Red Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "Smooth Red Sandstone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 867, + "name": "Smooth Red Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "Smooth Red Sandstone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 868, + "name": "Smooth Red Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "Smooth Red Sandstone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 869, + "name": "Smooth Red Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "Smooth Red Sandstone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:smoothRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": "red_sandstone_top", + "model": "Slab", + "harvestType": "rock", + "id": 870, + "name": "Smooth Red Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 333 + }, + "Engraved Red Sandstone Slab": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Engraved Red Sandstone Slab|meta|rot1|bot", + "id": 871, + "name": "Engraved Red Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "Engraved Red Sandstone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 872, + "name": "Engraved Red Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "Engraved Red Sandstone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 873, + "name": "Engraved Red Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "Engraved Red Sandstone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 874, + "name": "Engraved Red Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "Engraved Red Sandstone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 875, + "name": "Engraved Red Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "Engraved Red Sandstone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:engravedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_chiseled_red_sandstone_side", + "chiseled_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 876, + "name": "Engraved Red Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 390, + 334 + ] + }, + "Marked Red Sandstone Slab": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Marked Red Sandstone Slab|meta|rot1|bot", + "id": 877, + "name": "Marked Red Sandstone Slab", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "Marked Red Sandstone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 878, + "name": "Marked Red Sandstone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "Marked Red Sandstone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 879, + "name": "Marked Red Sandstone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "Marked Red Sandstone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 880, + "name": "Marked Red Sandstone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "Marked Red Sandstone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 881, + "name": "Marked Red Sandstone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "Marked Red Sandstone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:markedRedSandstoneSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_cut_red_sandstone_side", + "cut_red_sandstone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 882, + "name": "Marked Red Sandstone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 391, + 335 + ] + }, + "Red Sandstone Bricks Slab": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Red Sandstone Bricks Slab|meta|rot1|bot", + "id": 883, + "name": "Red Sandstone Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "Red Sandstone Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 884, + "name": "Red Sandstone Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "Red Sandstone Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 885, + "name": "Red Sandstone Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "Red Sandstone Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 886, + "name": "Red Sandstone Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "Red Sandstone Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 887, + "name": "Red Sandstone Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "Red Sandstone Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:redSandstoneBricksSlab" + }, + "ttb": 640, + "textureInfo": [ + "slab_red_sandstone_brick_side", + "red_sandstone_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 888, + "name": "Red Sandstone Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 392, + 353 + ] + }, + "Bricks Slab": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Bricks Slab|meta|rot1|bot", + "id": 889, + "name": "Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 890, + "name": "Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 891, + "name": "Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 892, + "name": "Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 893, + "name": "Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:bricksSlab" + }, + "ttb": 1600, + "textureInfo": [ + "slab_brick_side", + "brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 894, + "name": "Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 393, + 201 + ] + }, + "Ice Bricks Slab": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Ice Bricks Slab|meta|rot1|bot", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 895, + "name": "Ice Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "Ice Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 896, + "name": "Ice Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "Ice Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 897, + "name": "Ice Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "Ice Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 898, + "name": "Ice Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "Ice Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 899, + "name": "Ice Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "Ice Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:iceBricksSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_ice_brick_side", + "ice_brick" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "id": 900, + "name": "Ice Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 394, + 346 + ] + }, + "Vines|meta|rot1|Growing": { + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "rootMetaDesc": "Vines|meta|rot1|Growing", + "blockModel": "Vines", + "modelScale": 10, + "heldItemScale": 10, + "blockModelItem": true, + "id": 901, + "name": "Vines|meta|rot1|Growing", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot1|Growing", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Vines|meta|rot2|Growing": { + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "modelScale": 10, + "heldItemScale": 10, + "id": 902, + "name": "Vines|meta|rot2|Growing", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot2|Growing", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Vines|meta|rot3|Growing": { + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "modelScale": 10, + "heldItemScale": 10, + "id": 903, + "name": "Vines|meta|rot3|Growing", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot3|Growing", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Vines|meta|rot4|Growing": { + "ttb": 225, + "itemTexture": "vine_coloured", + "harvestType": "cuttable", + "model": "rotatableOffset", + "TB": false, + "modelScale": 10, + "heldItemScale": 10, + "id": 904, + "name": "Vines|meta|rot4|Growing", + "stackable": true, + "meta": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot4|Growing", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cactus|Growing": { + "ttb": 300, + "textureInfo": "small_cactus", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "itemTexture": "small_cactus", + "id": 905, + "name": "Cactus|Growing", + "stackable": true, + "meta": { + "rootName": "Cactus", + "rootId": 149, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Fat Cactus|Growing": { + "ttb": 400, + "textureInfo": "cactus_top", + "harvestType": "cuttable", + "damage": 22, + "id": 906, + "name": "Fat Cactus|Growing", + "stackable": true, + "meta": { + "rootName": "Fat Cactus", + "rootId": 213, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 231 + }, + "Plum Block": { + "displayName": { + "translationKey": "item:plumBlock" + }, + "ttb": 600, + "textureInfo": [ + "plum_block_side", + "plum_block_top", + "plum_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 907, + "name": "Plum Block", + "stackable": true, + "meta": { + "rootName": "Plum Block", + "rootId": 907, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 395, + 396, + 397 + ] + }, + "Coconut Block": { + "displayName": { + "translationKey": "item:coconutBlock" + }, + "ttb": 600, + "textureInfo": [ + "coconut_block_side", + "coconut_block_top", + "coconut_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 908, + "name": "Coconut Block", + "stackable": true, + "meta": { + "rootName": "Coconut Block", + "rootId": 908, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 398, + 399, + 400 + ] + }, + "Pear Log": { + "displayName": { + "translationKey": "item:pearLog" + }, + "ttb": 2400, + "textureInfo": "log_pear", + "harvestType": "wood", + "id": 909, + "name": "Pear Log", + "stackable": true, + "meta": { + "rootName": "Pear Log", + "rootId": 909, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 401 + }, + "Pear Wood Planks": { + "displayName": { + "translationKey": "item:pearWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_pear", + "harvestType": "wood", + "id": 910, + "name": "Pear Wood Planks", + "stackable": true, + "meta": { + "rootName": "Pear Wood Planks", + "rootId": 910, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 402 + }, + "Pear Leaves": { + "displayName": { + "translationKey": "item:pearLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_pear", + "harvestType": "cuttable", + "id": 911, + "name": "Pear Leaves", + "stackable": true, + "meta": { + "rootName": "Pear Leaves", + "rootId": 911, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 403 + }, + "Pear Door": { + "displayName": { + "translationKey": "item:pearDoor" + }, + "ttb": 3600, + "itemTexture": "pear_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Pear Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Pear Door", + "id": 912, + "name": "Pear Door", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Door|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 913, + "name": "Pear Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Door|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 914, + "name": "Pear Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Door|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 915, + "name": "Pear Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Door|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 916, + "name": "Pear Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Door|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 917, + "name": "Pear Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Door|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 918, + "name": "Pear Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Door|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 919, + "name": "Pear Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pear Door Top": { + "ttb": 3600, + "itemTexture": "pear_door", + "harvestType": "wood", + "model": "door", + "drops": "Pear Door", + "rootMetaDesc": "_Pear Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Pear Door Top", + "id": 920, + "name": "_Pear Door Top", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pear Door Top|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "TB": false, + "id": 921, + "name": "_Pear Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pear Door Top|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "id": 922, + "name": "_Pear Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pear Door Top|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "TB": false, + "id": 923, + "name": "_Pear Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pear Door Top|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "id": 924, + "name": "_Pear Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pear Door Top|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "TB": false, + "id": 925, + "name": "_Pear Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pear Door Top|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "id": 926, + "name": "_Pear Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pear Door Top|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Pear Door", + "TB": false, + "id": 927, + "name": "_Pear Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Trapdoor": { + "displayName": { + "translationKey": "item:pearTrapdoor" + }, + "ttb": 2800, + "itemTexture": "pear_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Pear Trapdoor|meta|rot1|closed", + "blockModel": "Pear Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 928, + "name": "Pear Trapdoor", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Trapdoor|meta|rot1|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 929, + "name": "Pear Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Trapdoor|meta|rot2|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 930, + "name": "Pear Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Trapdoor|meta|rot2|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 931, + "name": "Pear Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Trapdoor|meta|rot3|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 932, + "name": "Pear Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Trapdoor|meta|rot3|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 933, + "name": "Pear Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Trapdoor|meta|rot4|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 934, + "name": "Pear Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Trapdoor|meta|rot4|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 935, + "name": "Pear Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Sapling": { + "displayName": { + "translationKey": "item:pearSapling" + }, + "ttb": 1, + "textureInfo": "pear_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "pear_sapling", + "id": 936, + "name": "Pear Sapling", + "stackable": true, + "meta": { + "rootName": "Pear Sapling", + "rootId": 936, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Log|TreeBase|Pear": { + "ttb": 2400, + "textureInfo": "log_pear", + "harvestType": "wood", + "drops": "Pear Log", + "id": 937, + "name": "Pear Log|TreeBase|Pear", + "stackable": true, + "meta": { + "rootName": "Pear Log", + "rootId": 909, + "metaStr": "TreeBase|Pear", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pear", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 401 + }, + "Pear Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_pear", + "harvestType": "cuttable", + "drops": "Pear Leaves", + "id": 938, + "name": "Pear Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Pear Leaves", + "rootId": 911, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 403 + }, + "Pear Slab": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Pear Slab|meta|rot1|bot", + "id": 939, + "name": "Pear Slab", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "Pear Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 940, + "name": "Pear Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "Pear Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 941, + "name": "Pear Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "Pear Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 942, + "name": "Pear Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "Pear Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 943, + "name": "Pear Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "Pear Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:pearSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pear_side", + "planks_pear" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 944, + "name": "Pear Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 404, + 402 + ] + }, + "Pear Block": { + "displayName": { + "translationKey": "item:pearBlock" + }, + "ttb": 600, + "textureInfo": [ + "pear_block_side", + "pear_block_top", + "pear_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 945, + "name": "Pear Block", + "stackable": true, + "meta": { + "rootName": "Pear Block", + "rootId": 945, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 405, + 406, + 407 + ] + }, + "Compressed Messy Stone": { + "displayName": { + "translationKey": "item:compressedMessyStone" + }, + "ttb": 12000, + "textureInfo": "compressed_messy_stone", + "harvestType": "rock", + "id": 946, + "name": "Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Compressed Messy Stone", + "rootId": 946, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 408 + }, + "Extra Compressed Messy Stone": { + "displayName": { + "translationKey": "item:extraCompressedMessyStone" + }, + "ttb": 24000, + "textureInfo": "extra_compressed_messy_stone", + "harvestType": "rock", + "id": 947, + "name": "Extra Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Extra Compressed Messy Stone", + "rootId": 947, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 409 + }, + "Super Compressed Messy Stone": { + "displayName": { + "translationKey": "item:superCompressedMessyStone" + }, + "ttb": 36000, + "textureInfo": "super_compressed_messy_stone", + "harvestType": "rock", + "id": 948, + "name": "Super Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Super Compressed Messy Stone", + "rootId": 948, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 410 + }, + "Hyper Compressed Messy Stone": { + "displayName": { + "translationKey": "item:hyperCompressedMessyStone" + }, + "ttb": 48000, + "textureInfo": "hyper_compressed_messy_stone", + "harvestType": "rock", + "id": 949, + "name": "Hyper Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Hyper Compressed Messy Stone", + "rootId": 949, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 411 + }, + "Ultra Compressed Messy Stone": { + "displayName": { + "translationKey": "item:ultraCompressedMessyStone" + }, + "ttb": 60000, + "textureInfo": "ultra_compressed_messy_stone", + "harvestType": "rock", + "id": 950, + "name": "Ultra Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Ultra Compressed Messy Stone", + "rootId": 950, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 412 + }, + "Mega Compressed Messy Stone": { + "displayName": { + "translationKey": "item:megaCompressedMessyStone" + }, + "ttb": 72000, + "textureInfo": "mega_compressed_messy_stone", + "harvestType": "rock", + "id": 951, + "name": "Mega Compressed Messy Stone", + "stackable": true, + "meta": { + "rootName": "Mega Compressed Messy Stone", + "rootId": 951, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 413 + }, + "Board": { + "displayName": { + "translationKey": "item:board" + }, + "ttb": 1200, + "itemTexture": "board", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "rootMetaDesc": "Board|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 0.8, + "blockModel": "Board", + "id": 952, + "name": "Board", + "stackable": true, + "meta": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Board|meta|rot2": { + "displayName": { + "translationKey": "item:board" + }, + "ttb": 1200, + "itemTexture": "board", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "particlesIgnoreBlack": true, + "modelScale": 0.8, + "blockModel": "Board", + "id": 953, + "name": "Board|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Board|meta|rot3": { + "displayName": { + "translationKey": "item:board" + }, + "ttb": 1200, + "itemTexture": "board", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "particlesIgnoreBlack": true, + "modelScale": 0.8, + "blockModel": "Board", + "id": 954, + "name": "Board|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Board|meta|rot4": { + "displayName": { + "translationKey": "item:board" + }, + "ttb": 1200, + "itemTexture": "board", + "model": "rotatableOffset", + "harvestType": "wood", + "TB": false, + "particlesIgnoreBlack": true, + "modelScale": 0.8, + "blockModel": "Board", + "id": 955, + "name": "Board|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Net": { + "displayName": { + "translationKey": "item:net" + }, + "ttb": 400, + "textureInfo": "net", + "model": "CentreCross", + "heldItemScale": 1, + "TB": false, + "harvestType": "wood", + "description": { + "translationKey": "item:netDescription" + }, + "itemTexture": "net", + "id": 956, + "name": "Net", + "stackable": true, + "meta": { + "rootName": "Net", + "rootId": 956, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cobweb": { + "displayName": { + "translationKey": "item:cobweb" + }, + "ttb": 300, + "textureInfo": "cobweb", + "model": "CentreCross", + "heldItemScale": 1, + "TB": false, + "harvestType": "cuttable", + "description": { + "translationKey": "item:cobwebDescription" + }, + "itemTexture": "cobweb", + "id": 957, + "name": "Cobweb", + "stackable": true, + "meta": { + "rootName": "Cobweb", + "rootId": 957, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Brown Mushroom Block": { + "displayName": { + "translationKey": "item:brownMushroomBlock" + }, + "ttb": 1200, + "textureInfo": "brown_mushroom_block", + "harvestType": "cuttable", + "id": 958, + "name": "Brown Mushroom Block", + "stackable": true, + "meta": { + "rootName": "Brown Mushroom Block", + "rootId": 958, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 414 + }, + "Red Mushroom Block": { + "displayName": { + "translationKey": "item:redMushroomBlock" + }, + "ttb": 1200, + "textureInfo": "red_mushroom_block", + "harvestType": "cuttable", + "id": 959, + "name": "Red Mushroom Block", + "stackable": true, + "meta": { + "rootName": "Red Mushroom Block", + "rootId": 959, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 415 + }, + "Mushroom Stem": { + "displayName": { + "translationKey": "item:mushroomStem" + }, + "ttb": 1200, + "textureInfo": "mushroom_stem", + "harvestType": "cuttable", + "id": 960, + "name": "Mushroom Stem", + "stackable": true, + "meta": { + "rootName": "Mushroom Stem", + "rootId": 960, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 416 + }, + "Fireball Block": { + "displayName": { + "translationKey": "item:fireballBlock" + }, + "ttb": 1, + "textureInfo": "fireball_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 961, + "name": "Fireball Block", + "stackable": true, + "meta": { + "rootName": "Fireball Block", + "rootId": 961, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 417 + }, + "Iceball Block": { + "displayName": { + "translationKey": "item:iceballBlock" + }, + "ttb": 1, + "textureInfo": "iceball_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 962, + "name": "Iceball Block", + "stackable": true, + "meta": { + "rootName": "Iceball Block", + "rootId": 962, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 418 + }, + "Watermelon Seeds": { + "displayName": { + "translationKey": "item:watermelonSeeds" + }, + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "watermelon_seeds", + "description": { + "translationKey": "item:watermelonSeedsDescription" + }, + "id": 963, + "name": "Watermelon Seeds", + "stackable": true, + "meta": { + "rootName": "Watermelon Seeds", + "rootId": 963, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Watermelon Seeds|Growing": { + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Watermelon Seeds", + "id": 964, + "name": "Watermelon Seeds|Growing", + "stackable": true, + "meta": { + "rootName": "Watermelon Seeds", + "rootId": 963, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Watermelon Stem": { + "displayName": { + "translationKey": "item:attachedWatermelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Watermelon Seeds", + "rootMetaDesc": "Attached Watermelon Stem|meta|rot1", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 965, + "name": "Attached Watermelon Stem", + "stackable": true, + "meta": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Watermelon Stem|meta|rot2": { + "displayName": { + "translationKey": "item:attachedWatermelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Watermelon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 966, + "name": "Attached Watermelon Stem|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Watermelon Stem|meta|rot3": { + "displayName": { + "translationKey": "item:attachedWatermelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Watermelon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 967, + "name": "Attached Watermelon Stem|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Watermelon Stem|meta|rot4": { + "displayName": { + "translationKey": "item:attachedWatermelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Watermelon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 968, + "name": "Attached Watermelon Stem|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pumpkin Seeds": { + "displayName": { + "translationKey": "item:pumpkinSeeds" + }, + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "pumpkin_seeds", + "description": { + "translationKey": "item:pumpkinSeedsDescription" + }, + "id": 969, + "name": "Pumpkin Seeds", + "stackable": true, + "meta": { + "rootName": "Pumpkin Seeds", + "rootId": 969, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pumpkin Seeds|Growing": { + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Pumpkin Seeds", + "id": 970, + "name": "Pumpkin Seeds|Growing", + "stackable": true, + "meta": { + "rootName": "Pumpkin Seeds", + "rootId": 969, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Pumpkin Stem": { + "displayName": { + "translationKey": "item:attachedPumpkinStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Pumpkin Seeds", + "rootMetaDesc": "Attached Pumpkin Stem|meta|rot1", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 971, + "name": "Attached Pumpkin Stem", + "stackable": true, + "meta": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Pumpkin Stem|meta|rot2": { + "displayName": { + "translationKey": "item:attachedPumpkinStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Pumpkin Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 972, + "name": "Attached Pumpkin Stem|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Pumpkin Stem|meta|rot3": { + "displayName": { + "translationKey": "item:attachedPumpkinStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Pumpkin Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 973, + "name": "Attached Pumpkin Stem|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Pumpkin Stem|meta|rot4": { + "displayName": { + "translationKey": "item:attachedPumpkinStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Pumpkin Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 974, + "name": "Attached Pumpkin Stem|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pumpkin": { + "displayName": { + "translationKey": "item:pumpkin" + }, + "ttb": 1200, + "textureInfo": [ + "pumpkin_side", + "pumpkin_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "id": 975, + "name": "Pumpkin", + "stackable": true, + "meta": { + "rootName": "Pumpkin", + "rootId": 975, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 419, + 420 + ] + }, + "Carved Pumpkin": { + "displayName": { + "translationKey": "item:carvedPumpkin" + }, + "ttb": 1200, + "textureInfo": [ + "carved_pumpkin", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "rootMetaDesc": "Carved Pumpkin|meta|rot1", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 976, + "name": "Carved Pumpkin", + "stackable": true, + "meta": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 421, + 419, + 420 + ] + }, + "Carved Pumpkin|meta|rot2": { + "displayName": { + "translationKey": "item:carvedPumpkin" + }, + "ttb": 1200, + "textureInfo": [ + "carved_pumpkin", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 977, + "name": "Carved Pumpkin|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 421, + 419, + 420 + ] + }, + "Carved Pumpkin|meta|rot3": { + "displayName": { + "translationKey": "item:carvedPumpkin" + }, + "ttb": 1200, + "textureInfo": [ + "carved_pumpkin", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 978, + "name": "Carved Pumpkin|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 421, + 419, + 420 + ] + }, + "Carved Pumpkin|meta|rot4": { + "displayName": { + "translationKey": "item:carvedPumpkin" + }, + "ttb": 1200, + "textureInfo": [ + "carved_pumpkin", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 979, + "name": "Carved Pumpkin|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 421, + 419, + 420 + ] + }, + "Jack o'Lantern": { + "displayName": { + "translationKey": "item:jackO'Lantern" + }, + "ttb": 1200, + "textureInfo": [ + "pumpkin_face_on", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "rootMetaDesc": "Jack o'Lantern|meta|rot1", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 980, + "name": "Jack o'Lantern", + "stackable": true, + "meta": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 177, + 419, + 420 + ] + }, + "Jack o'Lantern|meta|rot2": { + "displayName": { + "translationKey": "item:jackO'Lantern" + }, + "ttb": 1200, + "textureInfo": [ + "pumpkin_face_on", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 981, + "name": "Jack o'Lantern|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 177, + 419, + 420 + ] + }, + "Jack o'Lantern|meta|rot3": { + "displayName": { + "translationKey": "item:jackO'Lantern" + }, + "ttb": 1200, + "textureInfo": [ + "pumpkin_face_on", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 982, + "name": "Jack o'Lantern|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 177, + 419, + 420 + ] + }, + "Jack o'Lantern|meta|rot4": { + "displayName": { + "translationKey": "item:jackO'Lantern" + }, + "ttb": 1200, + "textureInfo": [ + "pumpkin_face_on", + "pumpkin_side", + "pumpkin_top" + ], + "harvestType": "wood", + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 983, + "name": "Jack o'Lantern|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 177, + 419, + 420 + ] + }, + "Melon Seeds": { + "displayName": { + "translationKey": "item:melonSeeds" + }, + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "melon_seeds", + "description": { + "translationKey": "item:melonSeedsDescription" + }, + "id": 984, + "name": "Melon Seeds", + "stackable": true, + "meta": { + "rootName": "Melon Seeds", + "rootId": 984, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Melon Seeds|Growing": { + "ttb": 400, + "textureInfo": "melon_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Melon Seeds", + "id": 985, + "name": "Melon Seeds|Growing", + "stackable": true, + "meta": { + "rootName": "Melon Seeds", + "rootId": 984, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Melon Stem": { + "displayName": { + "translationKey": "item:attachedMelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Melon Seeds", + "rootMetaDesc": "Attached Melon Stem|meta|rot1", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 986, + "name": "Attached Melon Stem", + "stackable": true, + "meta": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Melon Stem|meta|rot2": { + "displayName": { + "translationKey": "item:attachedMelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Melon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 987, + "name": "Attached Melon Stem|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Melon Stem|meta|rot3": { + "displayName": { + "translationKey": "item:attachedMelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Melon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 988, + "name": "Attached Melon Stem|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Melon Stem|meta|rot4": { + "displayName": { + "translationKey": "item:attachedMelonStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_melon_stem_wrapper", + "attached_melon_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Melon Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 989, + "name": "Attached Melon Stem|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Melon": { + "displayName": { + "translationKey": "item:melon" + }, + "ttb": 1200, + "textureInfo": [ + "melon_side", + "melon_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "id": 990, + "name": "Melon", + "stackable": true, + "meta": { + "rootName": "Melon", + "rootId": 990, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 422, + 423 + ] + }, + "Iron Watermelon": { + "displayName": { + "translationKey": "item:ironWatermelon" + }, + "ttb": 1200, + "textureInfo": [ + "iron_watermelon_side", + "iron_watermelon_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "rock", + "id": 991, + "name": "Iron Watermelon", + "stackable": true, + "meta": { + "rootName": "Iron Watermelon", + "rootId": 991, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 424, + 425 + ] + }, + "Patterned Black Glass": { + "displayName": { + "translationKey": "item:patternedBlackGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_black", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 992, + "name": "Patterned Black Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Black Glass", + "rootId": 992, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 426 + }, + "Patterned Blue Glass": { + "displayName": { + "translationKey": "item:patternedBlueGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_blue", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 993, + "name": "Patterned Blue Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Blue Glass", + "rootId": 993, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 427 + }, + "Patterned Brown Glass": { + "displayName": { + "translationKey": "item:patternedBrownGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_brown", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 994, + "name": "Patterned Brown Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Brown Glass", + "rootId": 994, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 428 + }, + "Patterned Cyan Glass": { + "displayName": { + "translationKey": "item:patternedCyanGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_cyan", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 995, + "name": "Patterned Cyan Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Cyan Glass", + "rootId": 995, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 429 + }, + "Patterned Gray Glass": { + "displayName": { + "translationKey": "item:patternedGrayGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_gray", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 996, + "name": "Patterned Gray Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Gray Glass", + "rootId": 996, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 430 + }, + "Patterned Light Gray Glass": { + "displayName": { + "translationKey": "item:patternedLightGrayGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_light_gray", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 997, + "name": "Patterned Light Gray Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Light Gray Glass", + "rootId": 997, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 431 + }, + "Patterned Green Glass": { + "displayName": { + "translationKey": "item:patternedGreenGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_green", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 998, + "name": "Patterned Green Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Green Glass", + "rootId": 998, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 432 + }, + "Patterned Light Blue Glass": { + "displayName": { + "translationKey": "item:patternedLightBlueGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_light_blue", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 999, + "name": "Patterned Light Blue Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Light Blue Glass", + "rootId": 999, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 433 + }, + "Patterned Lime Glass": { + "displayName": { + "translationKey": "item:patternedLimeGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_lime", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1000, + "name": "Patterned Lime Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Lime Glass", + "rootId": 1000, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 434 + }, + "Patterned Magenta Glass": { + "displayName": { + "translationKey": "item:patternedMagentaGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_magenta", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1001, + "name": "Patterned Magenta Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Magenta Glass", + "rootId": 1001, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 435 + }, + "Patterned Orange Glass": { + "displayName": { + "translationKey": "item:patternedOrangeGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_orange", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1002, + "name": "Patterned Orange Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Orange Glass", + "rootId": 1002, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 436 + }, + "Patterned Pink Glass": { + "displayName": { + "translationKey": "item:patternedPinkGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_pink", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1003, + "name": "Patterned Pink Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Pink Glass", + "rootId": 1003, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 437 + }, + "Patterned Purple Glass": { + "displayName": { + "translationKey": "item:patternedPurpleGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_purple", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1004, + "name": "Patterned Purple Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Purple Glass", + "rootId": 1004, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 438 + }, + "Patterned Red Glass": { + "displayName": { + "translationKey": "item:patternedRedGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_red", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1005, + "name": "Patterned Red Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Red Glass", + "rootId": 1005, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 439 + }, + "Patterned White Glass": { + "displayName": { + "translationKey": "item:patternedWhiteGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_white", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1006, + "name": "Patterned White Glass", + "stackable": true, + "meta": { + "rootName": "Patterned White Glass", + "rootId": 1006, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 440 + }, + "Patterned Yellow Glass": { + "displayName": { + "translationKey": "item:patternedYellowGlass" + }, + "ttb": 450, + "textureInfo": "patterned_glass_yellow", + "transTex": true, + "harvestType": "wood", + "soundType": { + "break": "glass", + "place": "stone" + }, + "id": 1007, + "name": "Patterned Yellow Glass", + "stackable": true, + "meta": { + "rootName": "Patterned Yellow Glass", + "rootId": 1007, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 441 + }, + "Potion Table": { + "displayName": { + "translationKey": "item:potionTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "potion_table", + "TB": false, + "rootMetaDesc": "Potion Table|meta|rot1", + "modelScale": 10, + "blockModel": "Potion Table", + "description": { + "translationKey": "item:potionTableDescription" + }, + "id": 1008, + "name": "Potion Table", + "stackable": true, + "meta": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Potion Table|meta|rot2": { + "displayName": { + "translationKey": "item:potionTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "potion_table", + "TB": false, + "modelScale": 10, + "blockModel": "Potion Table", + "description": { + "translationKey": "item:potionTableDescription" + }, + "id": 1009, + "name": "Potion Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Potion Table|meta|rot3": { + "displayName": { + "translationKey": "item:potionTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "potion_table", + "TB": false, + "modelScale": 10, + "blockModel": "Potion Table", + "description": { + "translationKey": "item:potionTableDescription" + }, + "id": 1010, + "name": "Potion Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Potion Table|meta|rot4": { + "displayName": { + "translationKey": "item:potionTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "potion_table", + "TB": false, + "modelScale": 10, + "blockModel": "Potion Table", + "description": { + "translationKey": "item:potionTableDescription" + }, + "id": 1011, + "name": "Potion Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Ladder": { + "displayName": { + "translationKey": "item:pineLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pine", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Pine Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Pine Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1012, + "name": "Pine Ladder", + "stackable": true, + "meta": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:pineLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pine", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pine Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1013, + "name": "Pine Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:pineLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pine", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pine Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1014, + "name": "Pine Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:pineLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pine", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pine Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1015, + "name": "Pine Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Ladder": { + "displayName": { + "translationKey": "item:plumLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_plum", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Plum Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Plum Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1016, + "name": "Plum Ladder", + "stackable": true, + "meta": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:plumLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_plum", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Plum Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1017, + "name": "Plum Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:plumLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_plum", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Plum Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1018, + "name": "Plum Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Plum Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:plumLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_plum", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Plum Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1019, + "name": "Plum Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Ladder": { + "displayName": { + "translationKey": "item:cedarLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cedar", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Cedar Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Cedar Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1020, + "name": "Cedar Ladder", + "stackable": true, + "meta": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:cedarLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cedar", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Cedar Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1021, + "name": "Cedar Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:cedarLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cedar", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Cedar Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1022, + "name": "Cedar Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cedar Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:cedarLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cedar", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Cedar Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1023, + "name": "Cedar Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Ladder": { + "displayName": { + "translationKey": "item:aspenLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_aspen", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Aspen Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Aspen Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1024, + "name": "Aspen Ladder", + "stackable": true, + "meta": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:aspenLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_aspen", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Aspen Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1025, + "name": "Aspen Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:aspenLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_aspen", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Aspen Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1026, + "name": "Aspen Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Aspen Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:aspenLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_aspen", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Aspen Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1027, + "name": "Aspen Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Ladder": { + "displayName": { + "translationKey": "item:jungleLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_jungle", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Jungle Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Jungle Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1028, + "name": "Jungle Ladder", + "stackable": true, + "meta": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:jungleLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_jungle", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Jungle Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1029, + "name": "Jungle Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:jungleLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_jungle", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Jungle Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1030, + "name": "Jungle Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:jungleLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_jungle", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Jungle Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "rotatableOffsetAmt": 0.375, + "id": 1031, + "name": "Jungle Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Ladder": { + "displayName": { + "translationKey": "item:palmLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_palm", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Palm Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Palm Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1032, + "name": "Palm Ladder", + "stackable": true, + "meta": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:palmLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_palm", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Palm Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1033, + "name": "Palm Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:palmLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_palm", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Palm Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1034, + "name": "Palm Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Palm Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:palmLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_palm", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Palm Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1035, + "name": "Palm Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Ladder": { + "displayName": { + "translationKey": "item:pearLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pear", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Pear Ladder|meta|rot1", + "modelScale": 10, + "TB": false, + "blockModel": "Pear Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1036, + "name": "Pear Ladder", + "stackable": true, + "meta": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:pearLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pear", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pear Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1037, + "name": "Pear Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:pearLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pear", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pear Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1038, + "name": "Pear Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pear Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:pearLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_pear", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 10, + "TB": false, + "blockModel": "Pear Ladder", + "heldItemScale": 10, + "blockModelItem": true, + "id": 1039, + "name": "Pear Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Black Carpet": { + "displayName": { + "translationKey": "item:blackCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_black_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_black_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1040, + "name": "Black Carpet", + "stackable": true, + "meta": { + "rootName": "Black Carpet", + "rootId": 1040, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Blue Carpet": { + "displayName": { + "translationKey": "item:blueCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_blue_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_blue_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1041, + "name": "Blue Carpet", + "stackable": true, + "meta": { + "rootName": "Blue Carpet", + "rootId": 1041, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Brown Carpet": { + "displayName": { + "translationKey": "item:brownCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_brown_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_brown_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1042, + "name": "Brown Carpet", + "stackable": true, + "meta": { + "rootName": "Brown Carpet", + "rootId": 1042, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cyan Carpet": { + "displayName": { + "translationKey": "item:cyanCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_cyan_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_cyan_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1043, + "name": "Cyan Carpet", + "stackable": true, + "meta": { + "rootName": "Cyan Carpet", + "rootId": 1043, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gray Carpet": { + "displayName": { + "translationKey": "item:grayCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_gray_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_gray_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1044, + "name": "Gray Carpet", + "stackable": true, + "meta": { + "rootName": "Gray Carpet", + "rootId": 1044, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Gray Carpet": { + "displayName": { + "translationKey": "item:lightGrayCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_light_gray_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_light_gray_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1045, + "name": "Light Gray Carpet", + "stackable": true, + "meta": { + "rootName": "Light Gray Carpet", + "rootId": 1045, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Green Carpet": { + "displayName": { + "translationKey": "item:greenCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_green_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_green_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1046, + "name": "Green Carpet", + "stackable": true, + "meta": { + "rootName": "Green Carpet", + "rootId": 1046, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Blue Carpet": { + "displayName": { + "translationKey": "item:lightBlueCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_light_blue_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_light_blue_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1047, + "name": "Light Blue Carpet", + "stackable": true, + "meta": { + "rootName": "Light Blue Carpet", + "rootId": 1047, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lime Carpet": { + "displayName": { + "translationKey": "item:limeCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_lime_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_lime_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1048, + "name": "Lime Carpet", + "stackable": true, + "meta": { + "rootName": "Lime Carpet", + "rootId": 1048, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Magenta Carpet": { + "displayName": { + "translationKey": "item:magentaCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_magenta_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_magenta_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1049, + "name": "Magenta Carpet", + "stackable": true, + "meta": { + "rootName": "Magenta Carpet", + "rootId": 1049, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Orange Carpet": { + "displayName": { + "translationKey": "item:orangeCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_orange_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_orange_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1050, + "name": "Orange Carpet", + "stackable": true, + "meta": { + "rootName": "Orange Carpet", + "rootId": 1050, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pink Carpet": { + "displayName": { + "translationKey": "item:pinkCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_pink_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_pink_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1051, + "name": "Pink Carpet", + "stackable": true, + "meta": { + "rootName": "Pink Carpet", + "rootId": 1051, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Purple Carpet": { + "displayName": { + "translationKey": "item:purpleCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_purple_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_purple_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1052, + "name": "Purple Carpet", + "stackable": true, + "meta": { + "rootName": "Purple Carpet", + "rootId": 1052, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Carpet": { + "displayName": { + "translationKey": "item:redCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_red_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_red_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1053, + "name": "Red Carpet", + "stackable": true, + "meta": { + "rootName": "Red Carpet", + "rootId": 1053, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "White Carpet": { + "displayName": { + "translationKey": "item:whiteCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_white_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_white_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1054, + "name": "White Carpet", + "stackable": true, + "meta": { + "rootName": "White Carpet", + "rootId": 1054, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Yellow Carpet": { + "displayName": { + "translationKey": "item:yellowCarpet" + }, + "ttb": 300, + "itemTexture": "carpet_yellow_icon", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "carpet_yellow_model", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "particlesIgnoreBlack": true, + "id": 1055, + "name": "Yellow Carpet", + "stackable": true, + "meta": { + "rootName": "Yellow Carpet", + "rootId": 1055, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Bookshelf": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "rootMetaDesc": "Bookshelf|meta|rot1|books6", + "id": 1056, + "name": "Bookshelf", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books6", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "atlasIdx": [ + 442, + 90 + ] + }, + "Bookshelf|meta|rot2|books6": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1057, + "name": "Bookshelf|meta|rot2|books6", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books6", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "atlasIdx": [ + 442, + 90 + ] + }, + "Bookshelf|meta|rot3|books6": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1058, + "name": "Bookshelf|meta|rot3|books6", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books6", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "atlasIdx": [ + 442, + 90 + ] + }, + "Bookshelf|meta|rot4|books6": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1059, + "name": "Bookshelf|meta|rot4|books6", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books6", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "atlasIdx": [ + 442, + 90 + ] + }, + "Empty Bookshelf": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_empty", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "description": { + "translationKey": "item:emptyBookshelfDescription" + }, + "rootMetaDesc": "Empty Bookshelf|meta|rot1|books0", + "id": 1060, + "name": "Empty Bookshelf", + "stackable": true, + "meta": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot1|books0", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "atlasIdx": [ + 443, + 90 + ] + }, + "Empty Bookshelf|meta|rot2|books0": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_empty", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1061, + "name": "Empty Bookshelf|meta|rot2|books0", + "stackable": true, + "meta": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot2|books0", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "atlasIdx": [ + 443, + 90 + ] + }, + "Empty Bookshelf|meta|rot3|books0": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_empty", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1062, + "name": "Empty Bookshelf|meta|rot3|books0", + "stackable": true, + "meta": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot3|books0", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "atlasIdx": [ + 443, + 90 + ] + }, + "Empty Bookshelf|meta|rot4|books0": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_empty", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1063, + "name": "Empty Bookshelf|meta|rot4|books0", + "stackable": true, + "meta": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot4|books0", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "atlasIdx": [ + 443, + 90 + ] + }, + "Bookshelf|meta|rot1|books1": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_1", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1064, + "name": "Bookshelf|meta|rot1|books1", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "atlasIdx": [ + 444, + 90 + ] + }, + "Bookshelf|meta|rot2|books1": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_1", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1065, + "name": "Bookshelf|meta|rot2|books1", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books1", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "atlasIdx": [ + 444, + 90 + ] + }, + "Bookshelf|meta|rot3|books1": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_1", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1066, + "name": "Bookshelf|meta|rot3|books1", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books1", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "atlasIdx": [ + 444, + 90 + ] + }, + "Bookshelf|meta|rot4|books1": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_1", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1067, + "name": "Bookshelf|meta|rot4|books1", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books1", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "atlasIdx": [ + 444, + 90 + ] + }, + "Bookshelf|meta|rot1|books2": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_2", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1068, + "name": "Bookshelf|meta|rot1|books2", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books2", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "atlasIdx": [ + 445, + 90 + ] + }, + "Bookshelf|meta|rot2|books2": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_2", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1069, + "name": "Bookshelf|meta|rot2|books2", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "atlasIdx": [ + 445, + 90 + ] + }, + "Bookshelf|meta|rot3|books2": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_2", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1070, + "name": "Bookshelf|meta|rot3|books2", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books2", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "atlasIdx": [ + 445, + 90 + ] + }, + "Bookshelf|meta|rot4|books2": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_2", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1071, + "name": "Bookshelf|meta|rot4|books2", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books2", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "atlasIdx": [ + 445, + 90 + ] + }, + "Bookshelf|meta|rot1|books3": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_3", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1072, + "name": "Bookshelf|meta|rot1|books3", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books3", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "atlasIdx": [ + 446, + 90 + ] + }, + "Bookshelf|meta|rot2|books3": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_3", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1073, + "name": "Bookshelf|meta|rot2|books3", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books3", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "atlasIdx": [ + 446, + 90 + ] + }, + "Bookshelf|meta|rot3|books3": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_3", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1074, + "name": "Bookshelf|meta|rot3|books3", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "atlasIdx": [ + 446, + 90 + ] + }, + "Bookshelf|meta|rot4|books3": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_3", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1075, + "name": "Bookshelf|meta|rot4|books3", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books3", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "atlasIdx": [ + 446, + 90 + ] + }, + "Bookshelf|meta|rot1|books4": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_4", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1076, + "name": "Bookshelf|meta|rot1|books4", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books4", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "atlasIdx": [ + 447, + 90 + ] + }, + "Bookshelf|meta|rot2|books4": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_4", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1077, + "name": "Bookshelf|meta|rot2|books4", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books4", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "atlasIdx": [ + 447, + 90 + ] + }, + "Bookshelf|meta|rot3|books4": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_4", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1078, + "name": "Bookshelf|meta|rot3|books4", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books4", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "atlasIdx": [ + 447, + 90 + ] + }, + "Bookshelf|meta|rot4|books4": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_4", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1079, + "name": "Bookshelf|meta|rot4|books4", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "atlasIdx": [ + 447, + 90 + ] + }, + "Bookshelf|meta|rot1|books5": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_5", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1080, + "name": "Bookshelf|meta|rot1|books5", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books5", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "atlasIdx": [ + 448, + 90 + ] + }, + "Bookshelf|meta|rot2|books5": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_5", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1081, + "name": "Bookshelf|meta|rot2|books5", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books5", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "atlasIdx": [ + 448, + 90 + ] + }, + "Bookshelf|meta|rot3|books5": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_5", + "planks_maple" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "drops": null, + "id": 1082, + "name": "Bookshelf|meta|rot3|books5", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books5", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "atlasIdx": [ + 448, + 90 + ] + }, + "Bookshelf|meta|rot4|books5": { + "displayName": { + "translationKey": "item:bookshelf" + }, + "ttb": 1800, + "textureInfo": [ + "bookshelf_5", + "planks_maple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "drops": null, + "id": 1083, + "name": "Bookshelf|meta|rot4|books5", + "stackable": true, + "meta": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books5", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "atlasIdx": [ + 448, + 90 + ] + }, + "Mailbox": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 1 + ], + "harvestType": "wood", + "rootMetaDesc": "Mailbox|meta|rot1|empty", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1084, + "name": "Mailbox", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot1|empty", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 449, + 450 + ] + }, + "Mailbox|meta|rot2|empty": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front", + "mailbox_side" + ], + "texturePerSide": [ + 0, + 1, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1085, + "name": "Mailbox|meta|rot2|empty", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot2|empty", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 449, + 450 + ] + }, + "Mailbox|meta|rot3|empty": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1086, + "name": "Mailbox|meta|rot3|empty", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot3|empty", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 449, + 450 + ] + }, + "Mailbox|meta|rot4|empty": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1087, + "name": "Mailbox|meta|rot4|empty", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot4|empty", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 449, + 450 + ] + }, + "Mailbox|meta|rot1|full": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front_full", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 0, + 1 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1088, + "name": "Mailbox|meta|rot1|full", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot1|full", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 451, + 450 + ] + }, + "Mailbox|meta|rot2|full": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front_full", + "mailbox_side" + ], + "texturePerSide": [ + 0, + 1, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1089, + "name": "Mailbox|meta|rot2|full", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot2|full", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 451, + 450 + ] + }, + "Mailbox|meta|rot3|full": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front_full", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1090, + "name": "Mailbox|meta|rot3|full", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot3|full", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 451, + 450 + ] + }, + "Mailbox|meta|rot4|full": { + "displayName": { + "translationKey": "item:mailbox" + }, + "ttb": 4200, + "textureInfo": [ + "mailbox_front_full", + "mailbox_side" + ], + "texturePerSide": [ + 1, + 0, + 1, + 1, + 1, + 1 + ], + "harvestType": "wood", + "description": { + "translationKey": "item:mailboxDescription" + }, + "id": 1091, + "name": "Mailbox|meta|rot4|full", + "stackable": true, + "meta": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot4|full", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 451, + 450 + ] + }, + "Rice": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "textureInfo": "rice_stage0", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "rice", + "description": { + "translationKey": "item:riceDescription" + }, + "id": 1092, + "name": "Rice", + "stackable": true, + "meta": { + "rootName": "Rice", + "rootId": 1092, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Rice_stage1": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Rice", + "textureInfo": "rice_stage2", + "id": 1093, + "name": "Rice_stage1", + "stackable": true, + "meta": { + "rootName": "Rice_stage1", + "rootId": 1093, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Rice_stage2": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Rice", + "textureInfo": "rice_stage3", + "id": 1094, + "name": "Rice_stage2", + "stackable": true, + "meta": { + "rootName": "Rice_stage2", + "rootId": 1094, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Rice_stage3": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Rice", + "textureInfo": "rice_stage4", + "id": 1095, + "name": "Rice_stage3", + "stackable": true, + "meta": { + "rootName": "Rice_stage3", + "rootId": 1095, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Rice_stage4": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Rice", + "textureInfo": "rice_stage5", + "id": 1096, + "name": "Rice_stage4", + "stackable": true, + "meta": { + "rootName": "Rice_stage4", + "rootId": 1096, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Rice_stage5": { + "displayName": { + "translationKey": "item:rice" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Rice", + "textureInfo": "rice_stage6", + "id": 1097, + "name": "Rice_stage5", + "stackable": true, + "meta": { + "rootName": "Rice_stage5", + "rootId": 1097, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Rice|FreshlyGrown": { + "ttb": 400, + "textureInfo": "rice_stage7", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "onMinedAura": 5, + "id": 1098, + "name": "Rice|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Rice", + "rootId": 1092, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cranberries": { + "displayName": { + "translationKey": "item:cranberries" + }, + "ttb": 400, + "textureInfo": "berry_bush_stage0", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cranberries", + "description": { + "translationKey": "item:cranberriesDescription" + }, + "id": 1099, + "name": "Cranberries", + "stackable": true, + "meta": { + "rootName": "Cranberries", + "rootId": 1099, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cranberries_stage1": { + "ttb": 400, + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Cranberries", + "textureInfo": "berry_bush_stage1", + "id": 1100, + "name": "Cranberries_stage1", + "stackable": true, + "meta": { + "rootName": "Cranberries_stage1", + "rootId": 1100, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cranberries_stage2": { + "ttb": 400, + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Cranberries", + "textureInfo": "berry_bush_stage2", + "onMinedAura": 5, + "id": 1101, + "name": "Cranberries_stage2", + "stackable": true, + "meta": { + "rootName": "Cranberries_stage2", + "rootId": 1101, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Mushroom": { + "displayName": { + "translationKey": "item:redMushroom" + }, + "ttb": 400, + "textureInfo": "red_mushroom", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "red_mushroom", + "id": 1102, + "name": "Red Mushroom", + "stackable": true, + "meta": { + "rootName": "Red Mushroom", + "rootId": 1102, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Brown Mushroom": { + "displayName": { + "translationKey": "item:brownMushroom" + }, + "ttb": 400, + "textureInfo": "brown_mushroom", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "brown_mushroom", + "id": 1103, + "name": "Brown Mushroom", + "stackable": true, + "meta": { + "rootName": "Brown Mushroom", + "rootId": 1103, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cotton Seeds": { + "displayName": { + "translationKey": "item:cottonSeeds" + }, + "ttb": 400, + "textureInfo": "cotton_plant_stage0", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cotton_seeds", + "description": { + "translationKey": "item:cottonSeedsDescription" + }, + "id": 1104, + "name": "Cotton Seeds", + "stackable": true, + "meta": { + "rootName": "Cotton Seeds", + "rootId": 1104, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cotton_stage1": { + "displayName": { + "translationKey": "item:cotton" + }, + "ttb": 400, + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Cotton Seeds", + "textureInfo": "cotton_plant_stage1", + "id": 1105, + "name": "Cotton_stage1", + "stackable": true, + "meta": { + "rootName": "Cotton_stage1", + "rootId": 1105, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cotton_stage2": { + "displayName": { + "translationKey": "item:cotton" + }, + "ttb": 400, + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Cotton Seeds", + "textureInfo": "cotton_plant_stage2", + "id": 1106, + "name": "Cotton_stage2", + "stackable": true, + "meta": { + "rootName": "Cotton_stage2", + "rootId": 1106, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cotton_stage3": { + "displayName": { + "translationKey": "item:cotton" + }, + "ttb": 400, + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Cotton Seeds", + "textureInfo": "cotton_plant_stage3", + "onMinedAura": 5, + "id": 1107, + "name": "Cotton_stage3", + "stackable": true, + "meta": { + "rootName": "Cotton_stage3", + "rootId": 1107, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Tribe Protector": { + "displayName": { + "translationKey": "item:tribeProtector" + }, + "ttb": 5000, + "textureInfo": "protector_tribe", + "harvestType": "rock", + "description": { + "translationKey": "item:tribeProtectorDescription" + }, + "id": 1108, + "name": "Tribe Protector", + "stackable": true, + "meta": { + "rootName": "Tribe Protector", + "rootId": 1108, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 452 + }, + "Tall Grass": { + "displayName": { + "translationKey": "item:tallGrass" + }, + "ttb": 1, + "textureInfo": "tall_grass_bottom", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Tall Grass" + }, + "itemTexture": "tall_grass_bottom", + "canBePlacedOver": true, + "id": 1109, + "name": "Tall Grass", + "stackable": true, + "meta": { + "rootName": "Tall Grass", + "rootId": 1109, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Tall Grass|Top": { + "ttb": 1, + "textureInfo": "tall_grass_top", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Tall Grass" + }, + "itemTexture": "tall_grass_top", + "canBePlacedOver": true, + "id": 1110, + "name": "Tall Grass|Top", + "stackable": true, + "meta": { + "rootName": "Tall Grass", + "rootId": 1109, + "metaStr": "Top", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Faction Protector": { + "ttb": 5000, + "textureInfo": "protector_faction", + "harvestType": "rock", + "description": "Prevents other factions from changing blocks and\nopening chests in the placed chunk", + "id": 1111, + "name": "Faction Protector", + "stackable": true, + "meta": { + "rootName": "Faction Protector", + "rootId": 1111, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 453 + }, + "Barkless Palm Log": { + "displayName": { + "translationKey": "item:barklessPalmLog" + }, + "ttb": 2000, + "textureInfo": "stripped_palm_log", + "harvestType": "wood", + "id": 1112, + "name": "Barkless Palm Log", + "stackable": true, + "meta": { + "rootName": "Barkless Palm Log", + "rootId": 1112, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 454 + }, + "Barkless Pear Log": { + "displayName": { + "translationKey": "item:barklessPearLog" + }, + "ttb": 2000, + "textureInfo": "stripped_pear_log", + "harvestType": "wood", + "id": 1113, + "name": "Barkless Pear Log", + "stackable": true, + "meta": { + "rootName": "Barkless Pear Log", + "rootId": 1113, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 455 + }, + "Barkless Maple Log|TreeBase|Maple": { + "ttb": 2000, + "textureInfo": "stripped_maple_log", + "harvestType": "wood", + "drops": "Barkless Maple Log", + "id": 1114, + "name": "Barkless Maple Log|TreeBase|Maple", + "stackable": true, + "meta": { + "rootName": "Barkless Maple Log", + "rootId": 21, + "metaStr": "TreeBase|Maple", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Maple", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 96 + }, + "Barkless Plum Log|TreeBase|Plum": { + "ttb": 2000, + "textureInfo": "stripped_plum_log", + "harvestType": "wood", + "drops": "Barkless Plum Log", + "id": 1115, + "name": "Barkless Plum Log|TreeBase|Plum", + "stackable": true, + "meta": { + "rootName": "Barkless Plum Log", + "rootId": 23, + "metaStr": "TreeBase|Plum", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Plum", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 98 + }, + "Barkless Cedar Log|TreeBase|Cedar": { + "ttb": 2000, + "textureInfo": "stripped_cedar_log", + "harvestType": "wood", + "drops": "Barkless Cedar Log", + "id": 1116, + "name": "Barkless Cedar Log|TreeBase|Cedar", + "stackable": true, + "meta": { + "rootName": "Barkless Cedar Log", + "rootId": 26, + "metaStr": "TreeBase|Cedar", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cedar", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 101 + }, + "Barkless Aspen Log|TreeBase|Aspen": { + "ttb": 2000, + "textureInfo": "stripped_aspen_log", + "harvestType": "wood", + "drops": "Barkless Aspen Log", + "id": 1117, + "name": "Barkless Aspen Log|TreeBase|Aspen", + "stackable": true, + "meta": { + "rootName": "Barkless Aspen Log", + "rootId": 22, + "metaStr": "TreeBase|Aspen", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Aspen", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 97 + }, + "Barkless Jungle Log|TreeBase|Jungle": { + "ttb": 2000, + "textureInfo": "stripped_jungle_log", + "harvestType": "wood", + "drops": "Barkless Jungle Log", + "id": 1118, + "name": "Barkless Jungle Log|TreeBase|Jungle", + "stackable": true, + "meta": { + "rootName": "Barkless Jungle Log", + "rootId": 24, + "metaStr": "TreeBase|Jungle", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Jungle", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 99 + }, + "Barkless Pine Log|TreeBase|Pine": { + "ttb": 2000, + "textureInfo": "stripped_pine_log", + "harvestType": "wood", + "drops": "Barkless Pine Log", + "id": 1119, + "name": "Barkless Pine Log|TreeBase|Pine", + "stackable": true, + "meta": { + "rootName": "Barkless Pine Log", + "rootId": 25, + "metaStr": "TreeBase|Pine", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pine", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 100 + }, + "Barkless Palm Log|TreeBase|Palm": { + "ttb": 2000, + "textureInfo": "stripped_palm_log", + "harvestType": "wood", + "drops": "Barkless Palm Log", + "id": 1120, + "name": "Barkless Palm Log|TreeBase|Palm", + "stackable": true, + "meta": { + "rootName": "Barkless Palm Log", + "rootId": 1112, + "metaStr": "TreeBase|Palm", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Palm", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 454 + }, + "Barkless Pear Log|TreeBase|Pear": { + "ttb": 2000, + "textureInfo": "stripped_pear_log", + "harvestType": "wood", + "drops": "Barkless Pear Log", + "id": 1121, + "name": "Barkless Pear Log|TreeBase|Pear", + "stackable": true, + "meta": { + "rootName": "Barkless Pear Log", + "rootId": 1113, + "metaStr": "TreeBase|Pear", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pear", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 455 + }, + "Mystery Block": { + "displayName": { + "translationKey": "item:mysteryBlock" + }, + "ttb": 1200, + "textureInfo": "mystery_block", + "harvestType": "rock", + "description": { + "translationKey": "item:mysteryBlockDescription" + }, + "id": 1122, + "name": "Mystery Block", + "stackable": true, + "meta": { + "rootName": "Mystery Block", + "rootId": 1122, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 456 + }, + "Rocket": { + "displayName": { + "translationKey": "item:rocket" + }, + "ttb": 1, + "textureInfo": "rocket_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1123, + "name": "Rocket", + "stackable": true, + "meta": { + "rootName": "Rocket", + "rootId": 1123, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 457 + }, + "Super Rocket": { + "displayName": { + "translationKey": "item:superRocket" + }, + "ttb": 1, + "textureInfo": "super_rocket_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1124, + "name": "Super Rocket", + "stackable": true, + "meta": { + "rootName": "Super Rocket", + "rootId": 1124, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 458 + }, + "Yellow Concrete Slab": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Yellow Concrete Slab|meta|rot1|bot", + "id": 1125, + "name": "Yellow Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "Yellow Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1126, + "name": "Yellow Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "Yellow Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1127, + "name": "Yellow Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "Yellow Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1128, + "name": "Yellow Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "Yellow Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1129, + "name": "Yellow Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "Yellow Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:yellowConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "yellow_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1130, + "name": "Yellow Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 172 + }, + "White Concrete Slab": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "White Concrete Slab|meta|rot1|bot", + "id": 1131, + "name": "White Concrete Slab", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "White Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1132, + "name": "White Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "White Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1133, + "name": "White Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "White Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1134, + "name": "White Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "White Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1135, + "name": "White Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "White Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:whiteConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "white_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1136, + "name": "White Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 170 + }, + "Red Concrete Slab": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Red Concrete Slab|meta|rot1|bot", + "id": 1137, + "name": "Red Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "Red Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1138, + "name": "Red Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "Red Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1139, + "name": "Red Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "Red Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1140, + "name": "Red Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "Red Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1141, + "name": "Red Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "Red Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:redConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "red_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1142, + "name": "Red Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 169 + }, + "Purple Concrete Slab": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Purple Concrete Slab|meta|rot1|bot", + "id": 1143, + "name": "Purple Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "Purple Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1144, + "name": "Purple Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "Purple Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1145, + "name": "Purple Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "Purple Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1146, + "name": "Purple Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "Purple Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1147, + "name": "Purple Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "Purple Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:purpleConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "purple_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1148, + "name": "Purple Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 168 + }, + "Pink Concrete Slab": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Pink Concrete Slab|meta|rot1|bot", + "id": 1149, + "name": "Pink Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "Pink Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1150, + "name": "Pink Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "Pink Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1151, + "name": "Pink Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "Pink Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1152, + "name": "Pink Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "Pink Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1153, + "name": "Pink Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "Pink Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:pinkConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "pink_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1154, + "name": "Pink Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 167 + }, + "Orange Concrete Slab": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Orange Concrete Slab|meta|rot1|bot", + "id": 1155, + "name": "Orange Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "Orange Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1156, + "name": "Orange Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "Orange Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1157, + "name": "Orange Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "Orange Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1158, + "name": "Orange Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "Orange Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1159, + "name": "Orange Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "Orange Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:orangeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "orange_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1160, + "name": "Orange Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 166 + }, + "Magenta Concrete Slab": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Magenta Concrete Slab|meta|rot1|bot", + "id": 1161, + "name": "Magenta Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "Magenta Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1162, + "name": "Magenta Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "Magenta Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1163, + "name": "Magenta Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "Magenta Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1164, + "name": "Magenta Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "Magenta Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1165, + "name": "Magenta Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "Magenta Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:magentaConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "magenta_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1166, + "name": "Magenta Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 165 + }, + "Lime Concrete Slab": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Lime Concrete Slab|meta|rot1|bot", + "id": 1167, + "name": "Lime Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "Lime Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1168, + "name": "Lime Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "Lime Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1169, + "name": "Lime Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "Lime Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1170, + "name": "Lime Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "Lime Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1171, + "name": "Lime Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "Lime Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:limeConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "lime_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1172, + "name": "Lime Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 164 + }, + "Light Gray Concrete Slab": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Light Gray Concrete Slab|meta|rot1|bot", + "id": 1173, + "name": "Light Gray Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "Light Gray Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1174, + "name": "Light Gray Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "Light Gray Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1175, + "name": "Light Gray Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "Light Gray Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1176, + "name": "Light Gray Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "Light Gray Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1177, + "name": "Light Gray Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "Light Gray Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:lightGrayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1178, + "name": "Light Gray Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 158 + }, + "Light Blue Concrete Slab": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Light Blue Concrete Slab|meta|rot1|bot", + "id": 1179, + "name": "Light Blue Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "Light Blue Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1180, + "name": "Light Blue Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "Light Blue Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1181, + "name": "Light Blue Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "Light Blue Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1182, + "name": "Light Blue Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "Light Blue Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1183, + "name": "Light Blue Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "Light Blue Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:lightBlueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "light_blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1184, + "name": "Light Blue Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 163 + }, + "Green Concrete Slab": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Green Concrete Slab|meta|rot1|bot", + "id": 1185, + "name": "Green Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "Green Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1186, + "name": "Green Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "Green Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1187, + "name": "Green Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "Green Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1188, + "name": "Green Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "Green Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1189, + "name": "Green Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "Green Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:greenConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "green_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1190, + "name": "Green Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 171 + }, + "Gray Concrete Slab": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Gray Concrete Slab|meta|rot1|bot", + "id": 1191, + "name": "Gray Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "Gray Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1192, + "name": "Gray Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "Gray Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1193, + "name": "Gray Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "Gray Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1194, + "name": "Gray Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "Gray Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1195, + "name": "Gray Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "Gray Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:grayConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "gray_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1196, + "name": "Gray Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 157 + }, + "Cyan Concrete Slab": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Cyan Concrete Slab|meta|rot1|bot", + "id": 1197, + "name": "Cyan Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "Cyan Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1198, + "name": "Cyan Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "Cyan Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1199, + "name": "Cyan Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "Cyan Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1200, + "name": "Cyan Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "Cyan Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1201, + "name": "Cyan Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "Cyan Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:cyanConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "cyan_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1202, + "name": "Cyan Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 162 + }, + "Brown Concrete Slab": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Brown Concrete Slab|meta|rot1|bot", + "id": 1203, + "name": "Brown Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "Brown Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1204, + "name": "Brown Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "Brown Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1205, + "name": "Brown Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "Brown Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1206, + "name": "Brown Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "Brown Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1207, + "name": "Brown Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "Brown Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:brownConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "brown_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1208, + "name": "Brown Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 161 + }, + "Blue Concrete Slab": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Blue Concrete Slab|meta|rot1|bot", + "id": 1209, + "name": "Blue Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "Blue Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1210, + "name": "Blue Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "Blue Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1211, + "name": "Blue Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "Blue Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1212, + "name": "Blue Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "Blue Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1213, + "name": "Blue Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "Blue Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:blueConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "blue_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1214, + "name": "Blue Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 160 + }, + "Black Concrete Slab": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Black Concrete Slab|meta|rot1|bot", + "id": 1215, + "name": "Black Concrete Slab", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "Black Concrete Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1216, + "name": "Black Concrete Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "Black Concrete Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1217, + "name": "Black Concrete Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "Black Concrete Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1218, + "name": "Black Concrete Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "Black Concrete Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1219, + "name": "Black Concrete Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "Black Concrete Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:blackConcreteSlab" + }, + "ttb": 1080, + "textureInfo": "black_concrete", + "model": "Slab", + "harvestType": "rock", + "id": 1220, + "name": "Black Concrete Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 159 + }, + "Grenade": { + "displayName": { + "translationKey": "item:grenade" + }, + "ttb": 1, + "textureInfo": "grenade_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1221, + "name": "Grenade", + "stackable": true, + "meta": { + "rootName": "Grenade", + "rootId": 1221, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 459 + }, + "Cherry Log": { + "displayName": { + "translationKey": "item:cherryLog" + }, + "ttb": 2400, + "textureInfo": "log_cherry", + "harvestType": "wood", + "id": 1222, + "name": "Cherry Log", + "stackable": true, + "meta": { + "rootName": "Cherry Log", + "rootId": 1222, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 460 + }, + "Barkless Cherry Log": { + "displayName": { + "translationKey": "item:barklessCherryLog" + }, + "ttb": 2000, + "textureInfo": "stripped_cherry_log", + "harvestType": "wood", + "id": 1223, + "name": "Barkless Cherry Log", + "stackable": true, + "meta": { + "rootName": "Barkless Cherry Log", + "rootId": 1223, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 461 + }, + "Barkless Cherry Log|TreeBase|Cherry": { + "ttb": 2000, + "textureInfo": "stripped_cherry_log", + "harvestType": "wood", + "drops": "Barkless Cherry Log", + "id": 1224, + "name": "Barkless Cherry Log|TreeBase|Cherry", + "stackable": true, + "meta": { + "rootName": "Barkless Cherry Log", + "rootId": 1223, + "metaStr": "TreeBase|Cherry", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cherry", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 461 + }, + "Cherry Wood Planks": { + "displayName": { + "translationKey": "item:cherryWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_cherry", + "harvestType": "wood", + "id": 1225, + "name": "Cherry Wood Planks", + "stackable": true, + "meta": { + "rootName": "Cherry Wood Planks", + "rootId": 1225, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 462 + }, + "Cherry Leaves": { + "displayName": { + "translationKey": "item:cherryLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_cherry", + "harvestType": "cuttable", + "id": 1226, + "name": "Cherry Leaves", + "stackable": true, + "meta": { + "rootName": "Cherry Leaves", + "rootId": 1226, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 463 + }, + "Fallen Cherry Leaves": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "rootMetaDesc": "Fallen Cherry Leaves|meta|rot1|bot", + "id": 1227, + "name": "Fallen Cherry Leaves", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "Fallen Cherry Leaves|meta|rot1|top": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 1228, + "name": "Fallen Cherry Leaves|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "Fallen Cherry Leaves|meta|rot1|side": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 1229, + "name": "Fallen Cherry Leaves|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "Fallen Cherry Leaves|meta|rot2|side": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 1230, + "name": "Fallen Cherry Leaves|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "Fallen Cherry Leaves|meta|rot3|side": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 1231, + "name": "Fallen Cherry Leaves|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "Fallen Cherry Leaves|meta|rot4|side": { + "displayName": { + "translationKey": "item:fallenCherryLeaves" + }, + "ttb": 350, + "textureInfo": [ + "fallen_cherry_leaves_side", + "leaves_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "TB": false, + "harvestType": "cuttable", + "id": 1232, + "name": "Fallen Cherry Leaves|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 464, + 463 + ] + }, + "Cherry Door": { + "displayName": { + "translationKey": "item:cherryDoor" + }, + "ttb": 3600, + "itemTexture": "cherry_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Cherry Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Cherry Door", + "id": 1233, + "name": "Cherry Door", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Door|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1234, + "name": "Cherry Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Door|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 1235, + "name": "Cherry Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Door|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1236, + "name": "Cherry Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Door|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 1237, + "name": "Cherry Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Door|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1238, + "name": "Cherry Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Door|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 1239, + "name": "Cherry Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Door|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1240, + "name": "Cherry Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cherry Door Top": { + "ttb": 3600, + "itemTexture": "cherry_door", + "harvestType": "wood", + "model": "door", + "drops": "Cherry Door", + "rootMetaDesc": "_Cherry Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Cherry Door Top", + "id": 1241, + "name": "_Cherry Door Top", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cherry Door Top|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "TB": false, + "id": 1242, + "name": "_Cherry Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cherry Door Top|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "id": 1243, + "name": "_Cherry Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cherry Door Top|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "TB": false, + "id": 1244, + "name": "_Cherry Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cherry Door Top|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "id": 1245, + "name": "_Cherry Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cherry Door Top|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "TB": false, + "id": 1246, + "name": "_Cherry Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cherry Door Top|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "id": 1247, + "name": "_Cherry Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cherry Door Top|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Cherry Door", + "TB": false, + "id": 1248, + "name": "_Cherry Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Trapdoor": { + "displayName": { + "translationKey": "item:cherryTrapdoor" + }, + "ttb": 2800, + "itemTexture": "cherry_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Cherry Trapdoor|meta|rot1|closed", + "blockModel": "Cherry Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 1249, + "name": "Cherry Trapdoor", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Trapdoor|meta|rot1|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1250, + "name": "Cherry Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Trapdoor|meta|rot2|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 1251, + "name": "Cherry Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Trapdoor|meta|rot2|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1252, + "name": "Cherry Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Trapdoor|meta|rot3|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 1253, + "name": "Cherry Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Trapdoor|meta|rot3|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1254, + "name": "Cherry Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Trapdoor|meta|rot4|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 1255, + "name": "Cherry Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Trapdoor|meta|rot4|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1256, + "name": "Cherry Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Sapling": { + "displayName": { + "translationKey": "item:cherrySapling" + }, + "ttb": 1, + "textureInfo": "cherry_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "cherry_sapling", + "id": 1257, + "name": "Cherry Sapling", + "stackable": true, + "meta": { + "rootName": "Cherry Sapling", + "rootId": 1257, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Log|TreeBase|Cherry": { + "ttb": 2400, + "textureInfo": "log_cherry", + "harvestType": "wood", + "drops": "Cherry Log", + "id": 1258, + "name": "Cherry Log|TreeBase|Cherry", + "stackable": true, + "meta": { + "rootName": "Cherry Log", + "rootId": 1222, + "metaStr": "TreeBase|Cherry", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cherry", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 460 + }, + "Cherry Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_cherry", + "harvestType": "cuttable", + "drops": "Cherry Leaves", + "id": 1259, + "name": "Cherry Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Cherry Leaves", + "rootId": 1226, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 463 + }, + "Cherry Slab": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Cherry Slab|meta|rot1|bot", + "id": 1260, + "name": "Cherry Slab", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "Cherry Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1261, + "name": "Cherry Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "Cherry Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1262, + "name": "Cherry Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "Cherry Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1263, + "name": "Cherry Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "Cherry Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1264, + "name": "Cherry Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "Cherry Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:cherrySlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_cherry_side", + "planks_cherry" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1265, + "name": "Cherry Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 465, + 462 + ] + }, + "Cherry Ladder": { + "displayName": { + "translationKey": "item:cherryLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cherry", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Cherry Ladder|meta|rot1", + "modelScale": 1, + "TB": false, + "blockModel": "Cherry Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1266, + "name": "Cherry Ladder", + "stackable": true, + "meta": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:cherryLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cherry", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Cherry Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1267, + "name": "Cherry Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:cherryLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cherry", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Cherry Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1268, + "name": "Cherry Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:cherryLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_cherry", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Cherry Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1269, + "name": "Cherry Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cherry Block": { + "displayName": { + "translationKey": "item:cherryBlock" + }, + "ttb": 600, + "textureInfo": [ + "cherry_block_side", + "cherry_block_top", + "cherry_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 1270, + "name": "Cherry Block", + "stackable": true, + "meta": { + "rootName": "Cherry Block", + "rootId": 1270, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 466, + 467, + 468 + ] + }, + "Bouncy Bomb Block": { + "displayName": { + "translationKey": "item:bouncyBombBlock" + }, + "ttb": 1, + "textureInfo": "bouncy_bomb_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1271, + "name": "Bouncy Bomb Block", + "stackable": true, + "meta": { + "rootName": "Bouncy Bomb Block", + "rootId": 1271, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 469 + }, + "Obby Rocket": { + "displayName": { + "translationKey": "item:rocket" + }, + "ttb": 1, + "textureInfo": "rocket_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1272, + "name": "Obby Rocket", + "stackable": true, + "meta": { + "rootName": "Obby Rocket", + "rootId": 1272, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 457 + }, + "Wood Spikes": { + "displayName": { + "translationKey": "item:woodSpikes" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_wood", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Wood", + "description": { + "translationKey": "item:spikesDescription" + }, + "id": 1273, + "name": "Wood Spikes", + "stackable": true, + "meta": { + "rootName": "Wood Spikes", + "rootId": 1273, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Stone Spikes": { + "displayName": { + "translationKey": "item:stoneSpikes" + }, + "ttb": 1200, + "harvestType": "rock", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_stone", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Stone", + "description": { + "translationKey": "item:spikesDescription" + }, + "id": 1274, + "name": "Stone Spikes", + "stackable": true, + "meta": { + "rootName": "Stone Spikes", + "rootId": 1274, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Iron Spikes": { + "displayName": { + "translationKey": "item:ironSpikes" + }, + "ttb": 1200, + "harvestType": "rock", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_iron", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Iron", + "description": { + "translationKey": "item:spikesDescription" + }, + "id": 1275, + "name": "Iron Spikes", + "stackable": true, + "meta": { + "rootName": "Iron Spikes", + "rootId": 1275, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gold Spikes": { + "displayName": { + "translationKey": "item:goldSpikes" + }, + "ttb": 1200, + "harvestType": "rock", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_gold", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Gold", + "description": { + "translationKey": "item:spikesDescription" + }, + "id": 1276, + "name": "Gold Spikes", + "stackable": true, + "meta": { + "rootName": "Gold Spikes", + "rootId": 1276, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Diamond Spikes": { + "displayName": { + "translationKey": "item:diamondSpikes" + }, + "ttb": 1200, + "harvestType": "rock", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_diamond", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Diamond", + "description": { + "translationKey": "item:spikesDescription" + }, + "id": 1277, + "name": "Diamond Spikes", + "stackable": true, + "meta": { + "rootName": "Diamond Spikes", + "rootId": 1277, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Kill Spikes": { + "displayName": { + "translationKey": "item:killSpikes" + }, + "ttb": 1200, + "harvestType": "rock", + "model": "CustomModel", + "customModelInfo": { + "yOffset": -0.125 + }, + "itemTexture": "spikes_kill", + "TB": false, + "modelScale": 10, + "blockModel": "Spikes_Kill", + "description": { + "translationKey": "item:killSpikesDescription" + }, + "id": 1278, + "name": "Kill Spikes", + "stackable": true, + "meta": { + "rootName": "Kill Spikes", + "rootId": 1278, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Corn Block": { + "displayName": { + "translationKey": "item:cornBlock" + }, + "ttb": 600, + "textureInfo": [ + "corn_block_side", + "corn_block_top", + "corn_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 1279, + "name": "Corn Block", + "stackable": true, + "meta": { + "rootName": "Corn Block", + "rootId": 1279, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 470, + 471, + 472 + ] + }, + "Corn Seeds": { + "displayName": { + "translationKey": "item:cornSeeds" + }, + "ttb": 400, + "textureInfo": "corn_stage0", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "corn_seeds", + "description": { + "translationKey": "item:cornSeedsDescription" + }, + "id": 1280, + "name": "Corn Seeds", + "stackable": true, + "meta": { + "rootName": "Corn Seeds", + "rootId": 1280, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Corn Seeds_stage1": { + "displayName": { + "translationKey": "item:cornSeeds" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage1", + "id": 1281, + "name": "Corn Seeds_stage1", + "stackable": true, + "meta": { + "rootName": "Corn Seeds_stage1", + "rootId": 1281, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Corn Seeds|FreshlyGrown": { + "ttb": 400, + "textureInfo": "corn_stage2", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "id": 1282, + "name": "Corn Seeds|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Corn Seeds", + "rootId": 1280, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Corn Seeds|Growing": { + "ttb": 400, + "textureInfo": "corn_stage2", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "id": 1283, + "name": "Corn Seeds|Growing", + "stackable": true, + "meta": { + "rootName": "Corn Seeds", + "rootId": 1280, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Corn Plant_stage1": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage0", + "id": 1284, + "name": "Corn Plant_stage1", + "stackable": true, + "meta": { + "rootName": "Corn Plant_stage1", + "rootId": 1284, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Corn Plant_stage2": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage1", + "id": 1285, + "name": "Corn Plant_stage2", + "stackable": true, + "meta": { + "rootName": "Corn Plant_stage2", + "rootId": 1285, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Corn Plant_stage3": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage2", + "id": 1286, + "name": "Corn Plant_stage3", + "stackable": true, + "meta": { + "rootName": "Corn Plant_stage3", + "rootId": 1286, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Corn Plant_stage4": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage3", + "id": 1287, + "name": "Corn Plant_stage4", + "stackable": true, + "meta": { + "rootName": "Corn Plant_stage4", + "rootId": 1287, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Corn Plant_stage5": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "textureInfo": "corn_stage4", + "id": 1288, + "name": "Corn Plant_stage5", + "stackable": true, + "meta": { + "rootName": "Corn Plant_stage5", + "rootId": 1288, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Corn Plant": { + "displayName": { + "translationKey": "item:corn" + }, + "ttb": 400, + "textureInfo": "corn_stage5", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "id": 1289, + "name": "Corn Plant", + "stackable": true, + "meta": { + "rootName": "Corn Plant", + "rootId": 1289, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Corn Plant|FreshlyGrown": { + "ttb": 400, + "textureInfo": "corn_stage5", + "model": "SquareSided", + "TB": false, + "harvestType": "cuttable", + "drops": "Corn Seeds", + "onMinedAura": 10, + "id": 1290, + "name": "Corn Plant|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Corn Plant", + "rootId": 1289, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Loot Chest": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "rootMetaDesc": "Loot Chest|meta|rot1", + "drops": "Chest", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 0, + 1 + ], + "id": 1291, + "name": "Loot Chest", + "stackable": true, + "meta": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "Loot Chest|meta|rot2": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "drops": "Chest", + "texturePerSide": [ + 0, + 1, + 2, + 2, + 1, + 1 + ], + "id": 1292, + "name": "Loot Chest|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "Loot Chest|meta|rot3": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "drops": "Chest", + "texturePerSide": [ + 1, + 1, + 2, + 2, + 1, + 0 + ], + "id": 1293, + "name": "Loot Chest|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "Loot Chest|meta|rot4": { + "displayName": { + "translationKey": "item:chest" + }, + "ttb": 3000, + "textureInfo": [ + "chest_front", + "chest_side", + "chest_top" + ], + "harvestType": "wood", + "drops": "Chest", + "texturePerSide": [ + 1, + 0, + 2, + 2, + 1, + 1 + ], + "id": 1294, + "name": "Loot Chest|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 227, + 228, + 229 + ] + }, + "Melting Ice": { + "displayName": { + "translationKey": "item:ice" + }, + "ttb": 1200, + "textureInfo": "ice", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "drops": "Ice", + "id": 1295, + "name": "Melting Ice", + "stackable": true, + "meta": { + "rootName": "Melting Ice", + "rootId": 1295, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 212 + }, + "Melting Ice|Breaking": { + "ttb": 200, + "textureInfo": "melting_ice", + "harvestType": "rock", + "harvestLevel": 0, + "stoodOnSpeedMultiplier": 1.4, + "drops": null, + "id": 1296, + "name": "Melting Ice|Breaking", + "stackable": true, + "meta": { + "rootName": "Melting Ice", + "rootId": 1295, + "metaStr": "Breaking", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 473 + }, + "Yellow Paintball Explosive": { + "textureInfo": [ + "explosive_paint_yellow_side", + "explosive_paint_yellow_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1297, + "name": "Yellow Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Yellow Paintball Explosive", + "rootId": 1297, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 474, + 475 + ] + }, + "White Paintball Explosive": { + "textureInfo": [ + "explosive_paint_white_side", + "explosive_paint_white_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1298, + "name": "White Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "White Paintball Explosive", + "rootId": 1298, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 476, + 477 + ] + }, + "Red Paintball Explosive": { + "textureInfo": [ + "explosive_paint_red_side", + "explosive_paint_red_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1299, + "name": "Red Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Red Paintball Explosive", + "rootId": 1299, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 478, + 479 + ] + }, + "Purple Paintball Explosive": { + "textureInfo": [ + "explosive_paint_purple_side", + "explosive_paint_purple_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1300, + "name": "Purple Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Purple Paintball Explosive", + "rootId": 1300, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 480, + 481 + ] + }, + "Pink Paintball Explosive": { + "textureInfo": [ + "explosive_paint_pink_side", + "explosive_paint_pink_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1301, + "name": "Pink Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Pink Paintball Explosive", + "rootId": 1301, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 482, + 483 + ] + }, + "Orange Paintball Explosive": { + "textureInfo": [ + "explosive_paint_orange_side", + "explosive_paint_orange_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1302, + "name": "Orange Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Orange Paintball Explosive", + "rootId": 1302, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 484, + 485 + ] + }, + "Magenta Paintball Explosive": { + "textureInfo": [ + "explosive_paint_magenta_side", + "explosive_paint_magenta_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1303, + "name": "Magenta Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Magenta Paintball Explosive", + "rootId": 1303, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 486, + 487 + ] + }, + "Lime Paintball Explosive": { + "textureInfo": [ + "explosive_paint_lime_side", + "explosive_paint_lime_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1304, + "name": "Lime Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Lime Paintball Explosive", + "rootId": 1304, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 488, + 489 + ] + }, + "Light Gray Paintball Explosive": { + "textureInfo": [ + "explosive_paint_light_gray_side", + "explosive_paint_light_gray_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1305, + "name": "Light Gray Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Gray Paintball Explosive", + "rootId": 1305, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 490, + 491 + ] + }, + "Light Blue Paintball Explosive": { + "textureInfo": [ + "explosive_paint_light_blue_side", + "explosive_paint_light_blue_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1306, + "name": "Light Blue Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Blue Paintball Explosive", + "rootId": 1306, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 492, + 493 + ] + }, + "Green Paintball Explosive": { + "textureInfo": [ + "explosive_paint_green_side", + "explosive_paint_green_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1307, + "name": "Green Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Green Paintball Explosive", + "rootId": 1307, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 494, + 495 + ] + }, + "Gray Paintball Explosive": { + "textureInfo": [ + "explosive_paint_gray_side", + "explosive_paint_gray_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1308, + "name": "Gray Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Gray Paintball Explosive", + "rootId": 1308, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 496, + 497 + ] + }, + "Cyan Paintball Explosive": { + "textureInfo": [ + "explosive_paint_cyan_side", + "explosive_paint_cyan_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1309, + "name": "Cyan Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Cyan Paintball Explosive", + "rootId": 1309, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 498, + 499 + ] + }, + "Brown Paintball Explosive": { + "textureInfo": [ + "explosive_paint_brown_side", + "explosive_paint_brown_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1310, + "name": "Brown Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Brown Paintball Explosive", + "rootId": 1310, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 500, + 501 + ] + }, + "Blue Paintball Explosive": { + "textureInfo": [ + "explosive_paint_blue_side", + "explosive_paint_blue_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1311, + "name": "Blue Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Blue Paintball Explosive", + "rootId": 1311, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 502, + 503 + ] + }, + "Black Paintball Explosive": { + "textureInfo": [ + "explosive_paint_black_side", + "explosive_paint_black_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "cuttable", + "ttb": 50, + "id": 1312, + "name": "Black Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Black Paintball Explosive", + "rootId": 1312, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 504, + 505 + ] + }, + "Yellow Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_yellow", + "harvestType": "cuttable", + "ttb": 50, + "id": 1313, + "name": "Yellow Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Yellow Quick Paintball Explosive", + "rootId": 1313, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 506 + }, + "White Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_white", + "harvestType": "cuttable", + "ttb": 50, + "id": 1314, + "name": "White Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "White Quick Paintball Explosive", + "rootId": 1314, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 507 + }, + "Red Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_red", + "harvestType": "cuttable", + "ttb": 50, + "id": 1315, + "name": "Red Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Red Quick Paintball Explosive", + "rootId": 1315, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 508 + }, + "Purple Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_purple", + "harvestType": "cuttable", + "ttb": 50, + "id": 1316, + "name": "Purple Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Purple Quick Paintball Explosive", + "rootId": 1316, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 509 + }, + "Pink Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_pink", + "harvestType": "cuttable", + "ttb": 50, + "id": 1317, + "name": "Pink Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Pink Quick Paintball Explosive", + "rootId": 1317, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 510 + }, + "Orange Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_orange", + "harvestType": "cuttable", + "ttb": 50, + "id": 1318, + "name": "Orange Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Orange Quick Paintball Explosive", + "rootId": 1318, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 511 + }, + "Magenta Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_magenta", + "harvestType": "cuttable", + "ttb": 50, + "id": 1319, + "name": "Magenta Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Magenta Quick Paintball Explosive", + "rootId": 1319, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 512 + }, + "Lime Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_lime", + "harvestType": "cuttable", + "ttb": 50, + "id": 1320, + "name": "Lime Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Lime Quick Paintball Explosive", + "rootId": 1320, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 513 + }, + "Light Gray Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_light_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1321, + "name": "Light Gray Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Gray Quick Paintball Explosive", + "rootId": 1321, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 514 + }, + "Light Blue Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_light_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1322, + "name": "Light Blue Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Blue Quick Paintball Explosive", + "rootId": 1322, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 515 + }, + "Green Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_green", + "harvestType": "cuttable", + "ttb": 50, + "id": 1323, + "name": "Green Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Green Quick Paintball Explosive", + "rootId": 1323, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 516 + }, + "Gray Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1324, + "name": "Gray Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Gray Quick Paintball Explosive", + "rootId": 1324, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 517 + }, + "Cyan Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_cyan", + "harvestType": "cuttable", + "ttb": 50, + "id": 1325, + "name": "Cyan Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Cyan Quick Paintball Explosive", + "rootId": 1325, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 518 + }, + "Brown Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_brown", + "harvestType": "cuttable", + "ttb": 50, + "id": 1326, + "name": "Brown Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Brown Quick Paintball Explosive", + "rootId": 1326, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 519 + }, + "Blue Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1327, + "name": "Blue Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Blue Quick Paintball Explosive", + "rootId": 1327, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 520 + }, + "Black Quick Paintball Explosive": { + "textureInfo": "explosive_paint_quick_black", + "harvestType": "cuttable", + "ttb": 50, + "id": 1328, + "name": "Black Quick Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Black Quick Paintball Explosive", + "rootId": 1328, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 521 + }, + "Yellow Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_yellow", + "harvestType": "cuttable", + "ttb": 50, + "id": 1329, + "name": "Yellow Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Yellow Seeking Paintball Explosive", + "rootId": 1329, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 522 + }, + "White Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_white", + "harvestType": "cuttable", + "ttb": 50, + "id": 1330, + "name": "White Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "White Seeking Paintball Explosive", + "rootId": 1330, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 523 + }, + "Red Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_red", + "harvestType": "cuttable", + "ttb": 50, + "id": 1331, + "name": "Red Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Red Seeking Paintball Explosive", + "rootId": 1331, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 524 + }, + "Purple Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_purple", + "harvestType": "cuttable", + "ttb": 50, + "id": 1332, + "name": "Purple Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Purple Seeking Paintball Explosive", + "rootId": 1332, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 525 + }, + "Pink Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_pink", + "harvestType": "cuttable", + "ttb": 50, + "id": 1333, + "name": "Pink Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Pink Seeking Paintball Explosive", + "rootId": 1333, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 526 + }, + "Orange Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_orange", + "harvestType": "cuttable", + "ttb": 50, + "id": 1334, + "name": "Orange Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Orange Seeking Paintball Explosive", + "rootId": 1334, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 527 + }, + "Magenta Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_magenta", + "harvestType": "cuttable", + "ttb": 50, + "id": 1335, + "name": "Magenta Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Magenta Seeking Paintball Explosive", + "rootId": 1335, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 528 + }, + "Lime Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_lime", + "harvestType": "cuttable", + "ttb": 50, + "id": 1336, + "name": "Lime Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Lime Seeking Paintball Explosive", + "rootId": 1336, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 529 + }, + "Light Gray Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_light_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1337, + "name": "Light Gray Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Gray Seeking Paintball Explosive", + "rootId": 1337, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 530 + }, + "Light Blue Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_light_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1338, + "name": "Light Blue Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Blue Seeking Paintball Explosive", + "rootId": 1338, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 531 + }, + "Green Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_green", + "harvestType": "cuttable", + "ttb": 50, + "id": 1339, + "name": "Green Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Green Seeking Paintball Explosive", + "rootId": 1339, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 532 + }, + "Gray Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1340, + "name": "Gray Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Gray Seeking Paintball Explosive", + "rootId": 1340, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 533 + }, + "Cyan Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_cyan", + "harvestType": "cuttable", + "ttb": 50, + "id": 1341, + "name": "Cyan Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Cyan Seeking Paintball Explosive", + "rootId": 1341, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 534 + }, + "Brown Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_brown", + "harvestType": "cuttable", + "ttb": 50, + "id": 1342, + "name": "Brown Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Brown Seeking Paintball Explosive", + "rootId": 1342, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 535 + }, + "Blue Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1343, + "name": "Blue Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Blue Seeking Paintball Explosive", + "rootId": 1343, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 536 + }, + "Black Seeking Paintball Explosive": { + "textureInfo": "explosive_paint_seeking_black", + "harvestType": "cuttable", + "ttb": 50, + "id": 1344, + "name": "Black Seeking Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Black Seeking Paintball Explosive", + "rootId": 1344, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 537 + }, + "Yellow Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_yellow", + "harvestType": "cuttable", + "ttb": 50, + "id": 1345, + "name": "Yellow Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Yellow Sticky Paintball Explosive", + "rootId": 1345, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 538 + }, + "White Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_white", + "harvestType": "cuttable", + "ttb": 50, + "id": 1346, + "name": "White Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "White Sticky Paintball Explosive", + "rootId": 1346, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 539 + }, + "Red Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_red", + "harvestType": "cuttable", + "ttb": 50, + "id": 1347, + "name": "Red Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Red Sticky Paintball Explosive", + "rootId": 1347, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 540 + }, + "Purple Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_purple", + "harvestType": "cuttable", + "ttb": 50, + "id": 1348, + "name": "Purple Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Purple Sticky Paintball Explosive", + "rootId": 1348, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 541 + }, + "Pink Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_pink", + "harvestType": "cuttable", + "ttb": 50, + "id": 1349, + "name": "Pink Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Pink Sticky Paintball Explosive", + "rootId": 1349, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 542 + }, + "Orange Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_orange", + "harvestType": "cuttable", + "ttb": 50, + "id": 1350, + "name": "Orange Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Orange Sticky Paintball Explosive", + "rootId": 1350, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 543 + }, + "Magenta Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_magenta", + "harvestType": "cuttable", + "ttb": 50, + "id": 1351, + "name": "Magenta Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Magenta Sticky Paintball Explosive", + "rootId": 1351, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 544 + }, + "Lime Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_lime", + "harvestType": "cuttable", + "ttb": 50, + "id": 1352, + "name": "Lime Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Lime Sticky Paintball Explosive", + "rootId": 1352, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 545 + }, + "Light Gray Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_light_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1353, + "name": "Light Gray Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Gray Sticky Paintball Explosive", + "rootId": 1353, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 546 + }, + "Light Blue Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_light_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1354, + "name": "Light Blue Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Light Blue Sticky Paintball Explosive", + "rootId": 1354, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 547 + }, + "Green Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_green", + "harvestType": "cuttable", + "ttb": 50, + "id": 1355, + "name": "Green Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Green Sticky Paintball Explosive", + "rootId": 1355, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 548 + }, + "Gray Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_gray", + "harvestType": "cuttable", + "ttb": 50, + "id": 1356, + "name": "Gray Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Gray Sticky Paintball Explosive", + "rootId": 1356, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 549 + }, + "Cyan Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_cyan", + "harvestType": "cuttable", + "ttb": 50, + "id": 1357, + "name": "Cyan Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Cyan Sticky Paintball Explosive", + "rootId": 1357, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 550 + }, + "Brown Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_brown", + "harvestType": "cuttable", + "ttb": 50, + "id": 1358, + "name": "Brown Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Brown Sticky Paintball Explosive", + "rootId": 1358, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 551 + }, + "Blue Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_blue", + "harvestType": "cuttable", + "ttb": 50, + "id": 1359, + "name": "Blue Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Blue Sticky Paintball Explosive", + "rootId": 1359, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 552 + }, + "Black Sticky Paintball Explosive": { + "textureInfo": "explosive_paint_sticky_black", + "harvestType": "cuttable", + "ttb": 50, + "id": 1360, + "name": "Black Sticky Paintball Explosive", + "stackable": true, + "meta": { + "rootName": "Black Sticky Paintball Explosive", + "rootId": 1360, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 553 + }, + "White Strongbed": { + "displayName": { + "translationKey": "item:whiteStrongbed" + }, + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "White Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Strongbed", + "id": 1361, + "name": "White Strongbed", + "stackable": true, + "meta": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "White Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:whiteStrongbed" + }, + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Strongbed", + "id": 1362, + "name": "White Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "White Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:whiteStrongbed" + }, + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Strongbed", + "id": 1363, + "name": "White Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "White Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:whiteStrongbed" + }, + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "White Strongbed", + "id": 1364, + "name": "White Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_White Strongbed Head": { + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "White Strongbed", + "rootMetaDesc": "_White Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Strongbed Head", + "id": 1365, + "name": "_White Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_White Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "White Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Strongbed Head", + "id": 1366, + "name": "_White Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_White Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "White Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Strongbed Head", + "id": 1367, + "name": "_White Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_White Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "white_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "White Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_White Strongbed Head", + "id": 1368, + "name": "_White Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Orange Strongbed": { + "displayName": { + "translationKey": "item:orangeStrongbed" + }, + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Orange Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Strongbed", + "id": 1369, + "name": "Orange Strongbed", + "stackable": true, + "meta": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Orange Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:orangeStrongbed" + }, + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Strongbed", + "id": 1370, + "name": "Orange Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Orange Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:orangeStrongbed" + }, + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Strongbed", + "id": 1371, + "name": "Orange Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Orange Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:orangeStrongbed" + }, + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Orange Strongbed", + "id": 1372, + "name": "Orange Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Orange Strongbed Head": { + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Orange Strongbed", + "rootMetaDesc": "_Orange Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Strongbed Head", + "id": 1373, + "name": "_Orange Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Orange Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Orange Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Strongbed Head", + "id": 1374, + "name": "_Orange Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Orange Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Orange Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Strongbed Head", + "id": 1375, + "name": "_Orange Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Orange Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "orange_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Orange Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Orange Strongbed Head", + "id": 1376, + "name": "_Orange Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Magenta Strongbed": { + "displayName": { + "translationKey": "item:magentaStrongbed" + }, + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Magenta Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Strongbed", + "id": 1377, + "name": "Magenta Strongbed", + "stackable": true, + "meta": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Magenta Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:magentaStrongbed" + }, + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Strongbed", + "id": 1378, + "name": "Magenta Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Magenta Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:magentaStrongbed" + }, + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Strongbed", + "id": 1379, + "name": "Magenta Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Magenta Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:magentaStrongbed" + }, + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Magenta Strongbed", + "id": 1380, + "name": "Magenta Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Magenta Strongbed Head": { + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Magenta Strongbed", + "rootMetaDesc": "_Magenta Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Strongbed Head", + "id": 1381, + "name": "_Magenta Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Magenta Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Magenta Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Strongbed Head", + "id": 1382, + "name": "_Magenta Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Magenta Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Magenta Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Strongbed Head", + "id": 1383, + "name": "_Magenta Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Magenta Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "magenta_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Magenta Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Magenta Strongbed Head", + "id": 1384, + "name": "_Magenta Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Blue Strongbed": { + "displayName": { + "translationKey": "item:lightBlueStrongbed" + }, + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Light Blue Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Strongbed", + "id": 1385, + "name": "Light Blue Strongbed", + "stackable": true, + "meta": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Blue Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:lightBlueStrongbed" + }, + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Strongbed", + "id": 1386, + "name": "Light Blue Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Blue Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:lightBlueStrongbed" + }, + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Strongbed", + "id": 1387, + "name": "Light Blue Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Blue Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:lightBlueStrongbed" + }, + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Blue Strongbed", + "id": 1388, + "name": "Light Blue Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Blue Strongbed Head": { + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Blue Strongbed", + "rootMetaDesc": "_Light Blue Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Strongbed Head", + "id": 1389, + "name": "_Light Blue Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Blue Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Strongbed Head", + "id": 1390, + "name": "_Light Blue Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Blue Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Strongbed Head", + "id": 1391, + "name": "_Light Blue Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Blue Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "light_blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Blue Strongbed Head", + "id": 1392, + "name": "_Light Blue Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Yellow Strongbed": { + "displayName": { + "translationKey": "item:yellowStrongbed" + }, + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Yellow Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Strongbed", + "id": 1393, + "name": "Yellow Strongbed", + "stackable": true, + "meta": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Yellow Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:yellowStrongbed" + }, + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Strongbed", + "id": 1394, + "name": "Yellow Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Yellow Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:yellowStrongbed" + }, + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Strongbed", + "id": 1395, + "name": "Yellow Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Yellow Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:yellowStrongbed" + }, + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Yellow Strongbed", + "id": 1396, + "name": "Yellow Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Yellow Strongbed Head": { + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Yellow Strongbed", + "rootMetaDesc": "_Yellow Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Strongbed Head", + "id": 1397, + "name": "_Yellow Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Yellow Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Yellow Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Strongbed Head", + "id": 1398, + "name": "_Yellow Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Yellow Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Yellow Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Strongbed Head", + "id": 1399, + "name": "_Yellow Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Yellow Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "yellow_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Yellow Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Yellow Strongbed Head", + "id": 1400, + "name": "_Yellow Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lime Strongbed": { + "displayName": { + "translationKey": "item:limeStrongbed" + }, + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Lime Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Strongbed", + "id": 1401, + "name": "Lime Strongbed", + "stackable": true, + "meta": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lime Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:limeStrongbed" + }, + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Strongbed", + "id": 1402, + "name": "Lime Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lime Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:limeStrongbed" + }, + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Strongbed", + "id": 1403, + "name": "Lime Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lime Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:limeStrongbed" + }, + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Lime Strongbed", + "id": 1404, + "name": "Lime Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Lime Strongbed Head": { + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Lime Strongbed", + "rootMetaDesc": "_Lime Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Strongbed Head", + "id": 1405, + "name": "_Lime Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Lime Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Lime Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Strongbed Head", + "id": 1406, + "name": "_Lime Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Lime Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Lime Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Strongbed Head", + "id": 1407, + "name": "_Lime Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Lime Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "lime_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Lime Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Lime Strongbed Head", + "id": 1408, + "name": "_Lime Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pink Strongbed": { + "displayName": { + "translationKey": "item:pinkStrongbed" + }, + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Pink Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Strongbed", + "id": 1409, + "name": "Pink Strongbed", + "stackable": true, + "meta": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pink Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:pinkStrongbed" + }, + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Strongbed", + "id": 1410, + "name": "Pink Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pink Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:pinkStrongbed" + }, + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Strongbed", + "id": 1411, + "name": "Pink Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pink Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:pinkStrongbed" + }, + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Pink Strongbed", + "id": 1412, + "name": "Pink Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pink Strongbed Head": { + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Pink Strongbed", + "rootMetaDesc": "_Pink Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Strongbed Head", + "id": 1413, + "name": "_Pink Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pink Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Pink Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Strongbed Head", + "id": 1414, + "name": "_Pink Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pink Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Pink Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Strongbed Head", + "id": 1415, + "name": "_Pink Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Pink Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "pink_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Pink Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Pink Strongbed Head", + "id": 1416, + "name": "_Pink Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gray Strongbed": { + "displayName": { + "translationKey": "item:grayStrongbed" + }, + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Gray Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Strongbed", + "id": 1417, + "name": "Gray Strongbed", + "stackable": true, + "meta": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gray Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:grayStrongbed" + }, + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Strongbed", + "id": 1418, + "name": "Gray Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gray Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:grayStrongbed" + }, + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Strongbed", + "id": 1419, + "name": "Gray Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gray Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:grayStrongbed" + }, + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Gray Strongbed", + "id": 1420, + "name": "Gray Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Gray Strongbed Head": { + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Gray Strongbed", + "rootMetaDesc": "_Gray Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Strongbed Head", + "id": 1421, + "name": "_Gray Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Gray Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Strongbed Head", + "id": 1422, + "name": "_Gray Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Gray Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Strongbed Head", + "id": 1423, + "name": "_Gray Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Gray Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Gray Strongbed Head", + "id": 1424, + "name": "_Gray Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Gray Strongbed": { + "displayName": { + "translationKey": "item:lightGrayStrongbed" + }, + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Light Gray Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Strongbed", + "id": 1425, + "name": "Light Gray Strongbed", + "stackable": true, + "meta": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Gray Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:lightGrayStrongbed" + }, + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Strongbed", + "id": 1426, + "name": "Light Gray Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Gray Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:lightGrayStrongbed" + }, + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Strongbed", + "id": 1427, + "name": "Light Gray Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Light Gray Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:lightGrayStrongbed" + }, + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Light Gray Strongbed", + "id": 1428, + "name": "Light Gray Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Gray Strongbed Head": { + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Gray Strongbed", + "rootMetaDesc": "_Light Gray Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Strongbed Head", + "id": 1429, + "name": "_Light Gray Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Gray Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Strongbed Head", + "id": 1430, + "name": "_Light Gray Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Gray Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Strongbed Head", + "id": 1431, + "name": "_Light Gray Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Light Gray Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "light_gray_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Light Gray Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Light Gray Strongbed Head", + "id": 1432, + "name": "_Light Gray Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cyan Strongbed": { + "displayName": { + "translationKey": "item:cyanStrongbed" + }, + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Cyan Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Strongbed", + "id": 1433, + "name": "Cyan Strongbed", + "stackable": true, + "meta": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cyan Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:cyanStrongbed" + }, + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Strongbed", + "id": 1434, + "name": "Cyan Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cyan Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:cyanStrongbed" + }, + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Strongbed", + "id": 1435, + "name": "Cyan Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Cyan Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:cyanStrongbed" + }, + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Cyan Strongbed", + "id": 1436, + "name": "Cyan Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cyan Strongbed Head": { + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Cyan Strongbed", + "rootMetaDesc": "_Cyan Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Strongbed Head", + "id": 1437, + "name": "_Cyan Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cyan Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Cyan Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Strongbed Head", + "id": 1438, + "name": "_Cyan Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cyan Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Cyan Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Strongbed Head", + "id": 1439, + "name": "_Cyan Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Cyan Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "cyan_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Cyan Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Cyan Strongbed Head", + "id": 1440, + "name": "_Cyan Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Purple Strongbed": { + "displayName": { + "translationKey": "item:purpleStrongbed" + }, + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Purple Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Strongbed", + "id": 1441, + "name": "Purple Strongbed", + "stackable": true, + "meta": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Purple Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:purpleStrongbed" + }, + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Strongbed", + "id": 1442, + "name": "Purple Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Purple Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:purpleStrongbed" + }, + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Strongbed", + "id": 1443, + "name": "Purple Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Purple Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:purpleStrongbed" + }, + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Purple Strongbed", + "id": 1444, + "name": "Purple Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Purple Strongbed Head": { + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Purple Strongbed", + "rootMetaDesc": "_Purple Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Strongbed Head", + "id": 1445, + "name": "_Purple Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Purple Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Purple Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Strongbed Head", + "id": 1446, + "name": "_Purple Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Purple Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Purple Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Strongbed Head", + "id": 1447, + "name": "_Purple Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Purple Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "purple_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Purple Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Purple Strongbed Head", + "id": 1448, + "name": "_Purple Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Blue Strongbed": { + "displayName": { + "translationKey": "item:blueStrongbed" + }, + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Blue Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Strongbed", + "id": 1449, + "name": "Blue Strongbed", + "stackable": true, + "meta": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Blue Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:blueStrongbed" + }, + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Strongbed", + "id": 1450, + "name": "Blue Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Blue Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:blueStrongbed" + }, + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Strongbed", + "id": 1451, + "name": "Blue Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Blue Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:blueStrongbed" + }, + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Blue Strongbed", + "id": 1452, + "name": "Blue Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Blue Strongbed Head": { + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Blue Strongbed", + "rootMetaDesc": "_Blue Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Strongbed Head", + "id": 1453, + "name": "_Blue Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Blue Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Strongbed Head", + "id": 1454, + "name": "_Blue Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Blue Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Strongbed Head", + "id": 1455, + "name": "_Blue Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Blue Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "blue_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Blue Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Blue Strongbed Head", + "id": 1456, + "name": "_Blue Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Brown Strongbed": { + "displayName": { + "translationKey": "item:brownStrongbed" + }, + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Brown Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Strongbed", + "id": 1457, + "name": "Brown Strongbed", + "stackable": true, + "meta": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Brown Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:brownStrongbed" + }, + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Strongbed", + "id": 1458, + "name": "Brown Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Brown Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:brownStrongbed" + }, + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Strongbed", + "id": 1459, + "name": "Brown Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Brown Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:brownStrongbed" + }, + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Brown Strongbed", + "id": 1460, + "name": "Brown Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Brown Strongbed Head": { + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Brown Strongbed", + "rootMetaDesc": "_Brown Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Strongbed Head", + "id": 1461, + "name": "_Brown Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Brown Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Brown Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Strongbed Head", + "id": 1462, + "name": "_Brown Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Brown Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Brown Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Strongbed Head", + "id": 1463, + "name": "_Brown Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Brown Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "brown_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Brown Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Brown Strongbed Head", + "id": 1464, + "name": "_Brown Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Green Strongbed": { + "displayName": { + "translationKey": "item:greenStrongbed" + }, + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Green Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Strongbed", + "id": 1465, + "name": "Green Strongbed", + "stackable": true, + "meta": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Green Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:greenStrongbed" + }, + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Strongbed", + "id": 1466, + "name": "Green Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Green Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:greenStrongbed" + }, + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Strongbed", + "id": 1467, + "name": "Green Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Green Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:greenStrongbed" + }, + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Green Strongbed", + "id": 1468, + "name": "Green Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Green Strongbed Head": { + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Green Strongbed", + "rootMetaDesc": "_Green Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Strongbed Head", + "id": 1469, + "name": "_Green Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Green Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Green Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Strongbed Head", + "id": 1470, + "name": "_Green Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Green Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Green Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Strongbed Head", + "id": 1471, + "name": "_Green Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Green Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "green_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Green Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Green Strongbed Head", + "id": 1472, + "name": "_Green Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Strongbed": { + "displayName": { + "translationKey": "item:redStrongbed" + }, + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Red Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Strongbed", + "id": 1473, + "name": "Red Strongbed", + "stackable": true, + "meta": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:redStrongbed" + }, + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Strongbed", + "id": 1474, + "name": "Red Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:redStrongbed" + }, + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Strongbed", + "id": 1475, + "name": "Red Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Red Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:redStrongbed" + }, + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Red Strongbed", + "id": 1476, + "name": "Red Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Red Strongbed Head": { + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Red Strongbed", + "rootMetaDesc": "_Red Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Strongbed Head", + "id": 1477, + "name": "_Red Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Red Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Red Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Strongbed Head", + "id": 1478, + "name": "_Red Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Red Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Red Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Strongbed Head", + "id": 1479, + "name": "_Red Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Red Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "red_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Red Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Red Strongbed Head", + "id": 1480, + "name": "_Red Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Black Strongbed": { + "displayName": { + "translationKey": "item:blackStrongbed" + }, + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "rootMetaDesc": "Black Strongbed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Strongbed", + "id": 1481, + "name": "Black Strongbed", + "stackable": true, + "meta": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Black Strongbed|meta|rot2": { + "displayName": { + "translationKey": "item:blackStrongbed" + }, + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Strongbed", + "id": 1482, + "name": "Black Strongbed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Black Strongbed|meta|rot3": { + "displayName": { + "translationKey": "item:blackStrongbed" + }, + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Strongbed", + "id": 1483, + "name": "Black Strongbed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Black Strongbed|meta|rot4": { + "displayName": { + "translationKey": "item:blackStrongbed" + }, + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Black Strongbed", + "id": 1484, + "name": "Black Strongbed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Black Strongbed Head": { + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Black Strongbed", + "rootMetaDesc": "_Black Strongbed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Strongbed Head", + "id": 1485, + "name": "_Black Strongbed Head", + "stackable": true, + "meta": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Black Strongbed Head|meta|rot2": { + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Black Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Strongbed Head", + "id": 1486, + "name": "_Black Strongbed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Black Strongbed Head|meta|rot3": { + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Black Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Strongbed Head", + "id": 1487, + "name": "_Black Strongbed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Black Strongbed Head|meta|rot4": { + "ttb": 480, + "itemTexture": "black_strongbed", + "model": "rotatable", + "harvestType": "rock", + "drops": "Black Strongbed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "_Black Strongbed Head", + "id": 1488, + "name": "_Black Strongbed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Timed Spike Bomb Block": { + "ttb": 30000, + "itemTexture": "timed_spike_bomb", + "harvestType": "rock", + "drops": null, + "modelScale": 10, + "model": "CustomModel", + "blockModel": "Timed Spike Bomb Block", + "TB": false, + "id": 1489, + "name": "Timed Spike Bomb Block", + "stackable": true, + "meta": { + "rootName": "Timed Spike Bomb Block", + "rootId": 1489, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Timed Spike Bomb Block|Flashing": { + "ttb": 30000, + "itemTexture": "timed_spike_bomb", + "harvestType": "rock", + "drops": null, + "modelScale": 10, + "model": "CustomModel", + "blockModel": "Timed Spike Bomb Block", + "TB": false, + "customModelInfo": { + "emissiveColor": [ + 255, + 255, + 255 + ] + }, + "id": 1490, + "name": "Timed Spike Bomb Block|Flashing", + "stackable": true, + "meta": { + "rootName": "Timed Spike Bomb Block", + "rootId": 1489, + "metaStr": "Flashing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Lava": { + "displayName": { + "translationKey": "item:lava" + }, + "textureInfo": { + "colour": [ + 0.95, + 0.4, + 0.05, + 0.95 + ], + "animTextures": [ + "lava0", + "lava1", + "lava2", + "lava3", + "lava4", + "lava5", + "lava6", + "lava7" + ], + "animationInterval": 200 + }, + "xn": true, + "drops": null, + "harvestType": "rock", + "id": 1491, + "name": "Lava", + "stackable": true, + "meta": { + "rootName": "Lava", + "rootId": 1491, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 0, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + "Fat Brown Mushroom": { + "displayName": { + "translationKey": "item:fatBrownMushroom" + }, + "ttb": 1200, + "itemTexture": "fatBrownMushroom", + "harvestType": "cuttable", + "blockModel": "Fat Brown Mushroom", + "blockModelItem": true, + "model": "CustomModel", + "modelScale": 10, + "heldItemScale": 10, + "description": { + "translationKey": "item:fatMushroomDescription" + }, + "id": 1492, + "name": "Fat Brown Mushroom", + "stackable": true, + "meta": { + "rootName": "Fat Brown Mushroom", + "rootId": 1492, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Fat Red Mushroom": { + "displayName": { + "translationKey": "item:fatRedMushroom" + }, + "ttb": 1200, + "itemTexture": "fatRedMushroom", + "harvestType": "cuttable", + "blockModel": "Fat Red Mushroom", + "blockModelItem": true, + "model": "CustomModel", + "modelScale": 10, + "heldItemScale": 10, + "description": { + "translationKey": "item:fatMushroomDescription" + }, + "id": 1493, + "name": "Fat Red Mushroom", + "stackable": true, + "meta": { + "rootName": "Fat Red Mushroom", + "rootId": 1493, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Block": { + "displayName": { + "translationKey": "item:chiliPepperBlock" + }, + "ttb": 600, + "textureInfo": [ + "chili_pepper_block_side", + "chili_pepper_block_top", + "chili_pepper_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 1494, + "name": "Chili Pepper Block", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Block", + "rootId": 1494, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 554, + 555, + 556 + ] + }, + "Chili Pepper Seeds": { + "displayName": { + "translationKey": "item:chiliPepperSeeds" + }, + "ttb": 400, + "itemTexture": "chili_pepper_seeds", + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage0_model", + "description": { + "translationKey": "item:chiliPepperSeedsDescription" + }, + "id": 1495, + "name": "Chili Pepper Seeds", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Seeds", + "rootId": 1495, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant_stage1": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage1_model", + "drops": "Chili Pepper Seeds", + "id": 1496, + "name": "Chili Pepper Plant_stage1", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage1", + "rootId": 1496, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant_stage2": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage2_model", + "drops": "Chili Pepper Seeds", + "id": 1497, + "name": "Chili Pepper Plant_stage2", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage2", + "rootId": 1497, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant_stage3": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage3_model", + "drops": "Chili Pepper Seeds", + "id": 1498, + "name": "Chili Pepper Plant_stage3", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage3", + "rootId": 1498, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant_stage4": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage4_model", + "drops": "Chili Pepper Seeds", + "id": 1499, + "name": "Chili Pepper Plant_stage4", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage4", + "rootId": 1499, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage5_model", + "drops": "Chili Pepper Seeds", + "id": 1500, + "name": "Chili Pepper Plant", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant", + "rootId": 1500, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant|FreshlyGrown": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage5_model", + "drops": "Chili Pepper Seeds", + "onMinedAura": 10, + "id": 1501, + "name": "Chili Pepper Plant|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant", + "rootId": 1500, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Seeds|Lava": { + "displayName": { + "translationKey": "item:chiliPepperSeeds" + }, + "ttb": 400, + "itemTexture": "chili_pepper_seeds", + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage0_lava_model", + "description": { + "translationKey": "item:chiliPepperSeedsDescription" + }, + "drops": "Chili Pepper Seeds", + "id": 1502, + "name": "Chili Pepper Seeds|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Seeds", + "rootId": 1495, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant_stage1|Lava": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage1_lava_model", + "drops": "Chili Pepper Seeds", + "id": 1503, + "name": "Chili Pepper Plant_stage1|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage1", + "rootId": 1496, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant_stage2|Lava": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage2_lava_model", + "drops": "Chili Pepper Seeds", + "id": 1504, + "name": "Chili Pepper Plant_stage2|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage2", + "rootId": 1497, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant_stage3|Lava": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage3_lava_model", + "drops": "Chili Pepper Seeds", + "id": 1505, + "name": "Chili Pepper Plant_stage3|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage3", + "rootId": 1498, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant_stage4|Lava": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage4_lava_model", + "drops": "Chili Pepper Seeds", + "id": 1506, + "name": "Chili Pepper Plant_stage4|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage4", + "rootId": 1499, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant_stage5": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage5_model", + "drops": "Chili Pepper Seeds", + "id": 1507, + "name": "Chili Pepper Plant_stage5", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage5", + "rootId": 1507, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant_stage5|Lava": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage5_lava_model", + "drops": "Chili Pepper Seeds", + "id": 1508, + "name": "Chili Pepper Plant_stage5|Lava", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant_stage5", + "rootId": 1507, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chili Pepper Plant|Lava|FreshlyGrown": { + "ttb": 400, + "model": "CustomModel", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375 + }, + "harvestType": "cuttable", + "TB": false, + "blockModel": "chili_pepper_stage6_lava_model", + "drops": "Chili Pepper Seeds", + "onMinedAura": 20, + "id": 1509, + "name": "Chili Pepper Plant|Lava|FreshlyGrown", + "stackable": true, + "meta": { + "rootName": "Chili Pepper Plant", + "rootId": 1500, + "metaStr": "Lava|FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Code Block": { + "displayName": { + "translationKey": "item:codeBlock" + }, + "ttb": 500000000000, + "textureInfo": "code_block", + "soundType": { + "break": "stone", + "place": "stone" + }, + "id": 1510, + "name": "Code Block", + "stackable": true, + "meta": { + "rootName": "Code Block", + "rootId": 1510, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 557 + }, + "Toxin Ball Block": { + "displayName": { + "translationKey": "item:toxinBallBlock" + }, + "ttb": 1, + "textureInfo": "toxin_ball_block", + "harvestType": "rock", + "unlitStandaloneMesh": true, + "id": 1511, + "name": "Toxin Ball Block", + "stackable": true, + "meta": { + "rootName": "Toxin Ball Block", + "rootId": 1511, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 558 + }, + "Spawn Block (Yellow)": { + "displayName": { + "translationKey": "item:yellowSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "yellow_spawn_block_top[rot[1", + "yellow_spawn_block_top[rot[2", + "yellow_spawn_block_top[rot[3", + "yellow_spawn_block_top[rot[4", + "yellow_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Yellow)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1512, + "name": "Spawn Block (Yellow)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 559, + 560, + 561, + 562, + 563 + ] + }, + "Spawn Block (White)": { + "displayName": { + "translationKey": "item:whiteSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "white_spawn_block_top[rot[1", + "white_spawn_block_top[rot[2", + "white_spawn_block_top[rot[3", + "white_spawn_block_top[rot[4", + "white_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (White)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1513, + "name": "Spawn Block (White)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 564, + 565, + 566, + 567, + 568 + ] + }, + "Spawn Block (Red)": { + "displayName": { + "translationKey": "item:redSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "red_spawn_block_top[rot[1", + "red_spawn_block_top[rot[2", + "red_spawn_block_top[rot[3", + "red_spawn_block_top[rot[4", + "red_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Red)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1514, + "name": "Spawn Block (Red)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 569, + 570, + 571, + 572, + 573 + ] + }, + "Spawn Block (Purple)": { + "displayName": { + "translationKey": "item:purpleSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "purple_spawn_block_top[rot[1", + "purple_spawn_block_top[rot[2", + "purple_spawn_block_top[rot[3", + "purple_spawn_block_top[rot[4", + "purple_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Purple)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1515, + "name": "Spawn Block (Purple)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 574, + 575, + 576, + 577, + 578 + ] + }, + "Spawn Block (Pink)": { + "displayName": { + "translationKey": "item:pinkSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "pink_spawn_block_top[rot[1", + "pink_spawn_block_top[rot[2", + "pink_spawn_block_top[rot[3", + "pink_spawn_block_top[rot[4", + "pink_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Pink)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1516, + "name": "Spawn Block (Pink)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 579, + 580, + 581, + 582, + 583 + ] + }, + "Spawn Block (Orange)": { + "displayName": { + "translationKey": "item:orangeSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "orange_spawn_block_top[rot[1", + "orange_spawn_block_top[rot[2", + "orange_spawn_block_top[rot[3", + "orange_spawn_block_top[rot[4", + "orange_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Orange)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1517, + "name": "Spawn Block (Orange)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 584, + 585, + 586, + 587, + 588 + ] + }, + "Spawn Block (Magenta)": { + "displayName": { + "translationKey": "item:magentaSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "magenta_spawn_block_top[rot[1", + "magenta_spawn_block_top[rot[2", + "magenta_spawn_block_top[rot[3", + "magenta_spawn_block_top[rot[4", + "magenta_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Magenta)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1518, + "name": "Spawn Block (Magenta)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 589, + 590, + 591, + 592, + 593 + ] + }, + "Spawn Block (Lime)": { + "displayName": { + "translationKey": "item:limeSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "lime_spawn_block_top[rot[1", + "lime_spawn_block_top[rot[2", + "lime_spawn_block_top[rot[3", + "lime_spawn_block_top[rot[4", + "lime_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Lime)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1519, + "name": "Spawn Block (Lime)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 594, + 595, + 596, + 597, + 598 + ] + }, + "Spawn Block (Light Gray)": { + "displayName": { + "translationKey": "item:lightGraySpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "light_gray_spawn_block_top[rot[1", + "light_gray_spawn_block_top[rot[2", + "light_gray_spawn_block_top[rot[3", + "light_gray_spawn_block_top[rot[4", + "light_gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Light Gray)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1520, + "name": "Spawn Block (Light Gray)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 599, + 600, + 601, + 602, + 603 + ] + }, + "Spawn Block (Light Blue)": { + "displayName": { + "translationKey": "item:lightBlueSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "light_blue_spawn_block_top[rot[1", + "light_blue_spawn_block_top[rot[2", + "light_blue_spawn_block_top[rot[3", + "light_blue_spawn_block_top[rot[4", + "light_blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Light Blue)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1521, + "name": "Spawn Block (Light Blue)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 604, + 605, + 606, + 607, + 608 + ] + }, + "Spawn Block (Green)": { + "displayName": { + "translationKey": "item:greenSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "green_spawn_block_top[rot[1", + "green_spawn_block_top[rot[2", + "green_spawn_block_top[rot[3", + "green_spawn_block_top[rot[4", + "green_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Green)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1522, + "name": "Spawn Block (Green)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 609, + 610, + 611, + 612, + 613 + ] + }, + "Spawn Block (Gray)": { + "displayName": { + "translationKey": "item:graySpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "gray_spawn_block_top[rot[1", + "gray_spawn_block_top[rot[2", + "gray_spawn_block_top[rot[3", + "gray_spawn_block_top[rot[4", + "gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Gray)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1523, + "name": "Spawn Block (Gray)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 614, + 615, + 616, + 617, + 618 + ] + }, + "Spawn Block (Cyan)": { + "displayName": { + "translationKey": "item:cyanSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "cyan_spawn_block_top[rot[1", + "cyan_spawn_block_top[rot[2", + "cyan_spawn_block_top[rot[3", + "cyan_spawn_block_top[rot[4", + "cyan_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Cyan)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1524, + "name": "Spawn Block (Cyan)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 619, + 620, + 621, + 622, + 623 + ] + }, + "Spawn Block (Brown)": { + "displayName": { + "translationKey": "item:brownSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "brown_spawn_block_top[rot[1", + "brown_spawn_block_top[rot[2", + "brown_spawn_block_top[rot[3", + "brown_spawn_block_top[rot[4", + "brown_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Brown)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1525, + "name": "Spawn Block (Brown)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 624, + 625, + 626, + 627, + 628 + ] + }, + "Spawn Block (Blue)": { + "displayName": { + "translationKey": "item:blueSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "blue_spawn_block_top[rot[1", + "blue_spawn_block_top[rot[2", + "blue_spawn_block_top[rot[3", + "blue_spawn_block_top[rot[4", + "blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Blue)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1526, + "name": "Spawn Block (Blue)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 629, + 630, + 631, + 632, + 633 + ] + }, + "Spawn Block (Black)": { + "displayName": { + "translationKey": "item:blackSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "black_spawn_block_top[rot[1", + "black_spawn_block_top[rot[2", + "black_spawn_block_top[rot[3", + "black_spawn_block_top[rot[4", + "black_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "harvestType": "rock", + "rootMetaDesc": "Spawn Block (Black)|meta|rot1", + "description": { + "translationKey": "item:spawnBlockDescription" + }, + "id": 1527, + "name": "Spawn Block (Black)", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 634, + 635, + 636, + 637, + 638 + ] + }, + "Spawn Block (Yellow)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "yellow_spawn_block_top[rot[1", + "yellow_spawn_block_top[rot[2", + "yellow_spawn_block_top[rot[3", + "yellow_spawn_block_top[rot[4", + "yellow_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1528, + "name": "Spawn Block (Yellow)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 559, + 560, + 561, + 562, + 563 + ] + }, + "Spawn Block (White)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "white_spawn_block_top[rot[1", + "white_spawn_block_top[rot[2", + "white_spawn_block_top[rot[3", + "white_spawn_block_top[rot[4", + "white_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1529, + "name": "Spawn Block (White)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 564, + 565, + 566, + 567, + 568 + ] + }, + "Spawn Block (Red)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "red_spawn_block_top[rot[1", + "red_spawn_block_top[rot[2", + "red_spawn_block_top[rot[3", + "red_spawn_block_top[rot[4", + "red_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1530, + "name": "Spawn Block (Red)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 569, + 570, + 571, + 572, + 573 + ] + }, + "Spawn Block (Purple)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "purple_spawn_block_top[rot[1", + "purple_spawn_block_top[rot[2", + "purple_spawn_block_top[rot[3", + "purple_spawn_block_top[rot[4", + "purple_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1531, + "name": "Spawn Block (Purple)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 574, + 575, + 576, + 577, + 578 + ] + }, + "Spawn Block (Pink)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "pink_spawn_block_top[rot[1", + "pink_spawn_block_top[rot[2", + "pink_spawn_block_top[rot[3", + "pink_spawn_block_top[rot[4", + "pink_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1532, + "name": "Spawn Block (Pink)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 579, + 580, + 581, + 582, + 583 + ] + }, + "Spawn Block (Orange)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "orange_spawn_block_top[rot[1", + "orange_spawn_block_top[rot[2", + "orange_spawn_block_top[rot[3", + "orange_spawn_block_top[rot[4", + "orange_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1533, + "name": "Spawn Block (Orange)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 584, + 585, + 586, + 587, + 588 + ] + }, + "Spawn Block (Magenta)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "magenta_spawn_block_top[rot[1", + "magenta_spawn_block_top[rot[2", + "magenta_spawn_block_top[rot[3", + "magenta_spawn_block_top[rot[4", + "magenta_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1534, + "name": "Spawn Block (Magenta)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 589, + 590, + 591, + 592, + 593 + ] + }, + "Spawn Block (Lime)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "lime_spawn_block_top[rot[1", + "lime_spawn_block_top[rot[2", + "lime_spawn_block_top[rot[3", + "lime_spawn_block_top[rot[4", + "lime_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1535, + "name": "Spawn Block (Lime)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 594, + 595, + 596, + 597, + 598 + ] + }, + "Spawn Block (Light Gray)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "light_gray_spawn_block_top[rot[1", + "light_gray_spawn_block_top[rot[2", + "light_gray_spawn_block_top[rot[3", + "light_gray_spawn_block_top[rot[4", + "light_gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1536, + "name": "Spawn Block (Light Gray)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 599, + 600, + 601, + 602, + 603 + ] + }, + "Spawn Block (Light Blue)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "light_blue_spawn_block_top[rot[1", + "light_blue_spawn_block_top[rot[2", + "light_blue_spawn_block_top[rot[3", + "light_blue_spawn_block_top[rot[4", + "light_blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1537, + "name": "Spawn Block (Light Blue)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 604, + 605, + 606, + 607, + 608 + ] + }, + "Spawn Block (Green)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "green_spawn_block_top[rot[1", + "green_spawn_block_top[rot[2", + "green_spawn_block_top[rot[3", + "green_spawn_block_top[rot[4", + "green_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1538, + "name": "Spawn Block (Green)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 609, + 610, + 611, + 612, + 613 + ] + }, + "Spawn Block (Gray)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "gray_spawn_block_top[rot[1", + "gray_spawn_block_top[rot[2", + "gray_spawn_block_top[rot[3", + "gray_spawn_block_top[rot[4", + "gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1539, + "name": "Spawn Block (Gray)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 614, + 615, + 616, + 617, + 618 + ] + }, + "Spawn Block (Cyan)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "cyan_spawn_block_top[rot[1", + "cyan_spawn_block_top[rot[2", + "cyan_spawn_block_top[rot[3", + "cyan_spawn_block_top[rot[4", + "cyan_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1540, + "name": "Spawn Block (Cyan)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 619, + 620, + 621, + 622, + 623 + ] + }, + "Spawn Block (Brown)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "brown_spawn_block_top[rot[1", + "brown_spawn_block_top[rot[2", + "brown_spawn_block_top[rot[3", + "brown_spawn_block_top[rot[4", + "brown_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1541, + "name": "Spawn Block (Brown)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 624, + 625, + 626, + 627, + 628 + ] + }, + "Spawn Block (Blue)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "blue_spawn_block_top[rot[1", + "blue_spawn_block_top[rot[2", + "blue_spawn_block_top[rot[3", + "blue_spawn_block_top[rot[4", + "blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1542, + "name": "Spawn Block (Blue)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 629, + 630, + 631, + 632, + 633 + ] + }, + "Spawn Block (Black)|meta|rot2": { + "ttb": 1500, + "textureInfo": [ + "black_spawn_block_top[rot[1", + "black_spawn_block_top[rot[2", + "black_spawn_block_top[rot[3", + "black_spawn_block_top[rot[4", + "black_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1543, + "name": "Spawn Block (Black)|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 634, + 635, + 636, + 637, + 638 + ] + }, + "Spawn Block (Yellow)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "yellow_spawn_block_top[rot[1", + "yellow_spawn_block_top[rot[2", + "yellow_spawn_block_top[rot[3", + "yellow_spawn_block_top[rot[4", + "yellow_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1544, + "name": "Spawn Block (Yellow)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 559, + 560, + 561, + 562, + 563 + ] + }, + "Spawn Block (White)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "white_spawn_block_top[rot[1", + "white_spawn_block_top[rot[2", + "white_spawn_block_top[rot[3", + "white_spawn_block_top[rot[4", + "white_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1545, + "name": "Spawn Block (White)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 564, + 565, + 566, + 567, + 568 + ] + }, + "Spawn Block (Red)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "red_spawn_block_top[rot[1", + "red_spawn_block_top[rot[2", + "red_spawn_block_top[rot[3", + "red_spawn_block_top[rot[4", + "red_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1546, + "name": "Spawn Block (Red)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 569, + 570, + 571, + 572, + 573 + ] + }, + "Spawn Block (Purple)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "purple_spawn_block_top[rot[1", + "purple_spawn_block_top[rot[2", + "purple_spawn_block_top[rot[3", + "purple_spawn_block_top[rot[4", + "purple_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1547, + "name": "Spawn Block (Purple)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 574, + 575, + 576, + 577, + 578 + ] + }, + "Spawn Block (Pink)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "pink_spawn_block_top[rot[1", + "pink_spawn_block_top[rot[2", + "pink_spawn_block_top[rot[3", + "pink_spawn_block_top[rot[4", + "pink_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1548, + "name": "Spawn Block (Pink)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 579, + 580, + 581, + 582, + 583 + ] + }, + "Spawn Block (Orange)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "orange_spawn_block_top[rot[1", + "orange_spawn_block_top[rot[2", + "orange_spawn_block_top[rot[3", + "orange_spawn_block_top[rot[4", + "orange_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1549, + "name": "Spawn Block (Orange)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 584, + 585, + 586, + 587, + 588 + ] + }, + "Spawn Block (Magenta)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "magenta_spawn_block_top[rot[1", + "magenta_spawn_block_top[rot[2", + "magenta_spawn_block_top[rot[3", + "magenta_spawn_block_top[rot[4", + "magenta_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1550, + "name": "Spawn Block (Magenta)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 589, + 590, + 591, + 592, + 593 + ] + }, + "Spawn Block (Lime)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "lime_spawn_block_top[rot[1", + "lime_spawn_block_top[rot[2", + "lime_spawn_block_top[rot[3", + "lime_spawn_block_top[rot[4", + "lime_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1551, + "name": "Spawn Block (Lime)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 594, + 595, + 596, + 597, + 598 + ] + }, + "Spawn Block (Light Gray)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "light_gray_spawn_block_top[rot[1", + "light_gray_spawn_block_top[rot[2", + "light_gray_spawn_block_top[rot[3", + "light_gray_spawn_block_top[rot[4", + "light_gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1552, + "name": "Spawn Block (Light Gray)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 599, + 600, + 601, + 602, + 603 + ] + }, + "Spawn Block (Light Blue)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "light_blue_spawn_block_top[rot[1", + "light_blue_spawn_block_top[rot[2", + "light_blue_spawn_block_top[rot[3", + "light_blue_spawn_block_top[rot[4", + "light_blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1553, + "name": "Spawn Block (Light Blue)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 604, + 605, + 606, + 607, + 608 + ] + }, + "Spawn Block (Green)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "green_spawn_block_top[rot[1", + "green_spawn_block_top[rot[2", + "green_spawn_block_top[rot[3", + "green_spawn_block_top[rot[4", + "green_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1554, + "name": "Spawn Block (Green)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 609, + 610, + 611, + 612, + 613 + ] + }, + "Spawn Block (Gray)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "gray_spawn_block_top[rot[1", + "gray_spawn_block_top[rot[2", + "gray_spawn_block_top[rot[3", + "gray_spawn_block_top[rot[4", + "gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1555, + "name": "Spawn Block (Gray)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 614, + 615, + 616, + 617, + 618 + ] + }, + "Spawn Block (Cyan)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "cyan_spawn_block_top[rot[1", + "cyan_spawn_block_top[rot[2", + "cyan_spawn_block_top[rot[3", + "cyan_spawn_block_top[rot[4", + "cyan_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1556, + "name": "Spawn Block (Cyan)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 619, + 620, + 621, + 622, + 623 + ] + }, + "Spawn Block (Brown)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "brown_spawn_block_top[rot[1", + "brown_spawn_block_top[rot[2", + "brown_spawn_block_top[rot[3", + "brown_spawn_block_top[rot[4", + "brown_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1557, + "name": "Spawn Block (Brown)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 624, + 625, + 626, + 627, + 628 + ] + }, + "Spawn Block (Blue)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "blue_spawn_block_top[rot[1", + "blue_spawn_block_top[rot[2", + "blue_spawn_block_top[rot[3", + "blue_spawn_block_top[rot[4", + "blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1558, + "name": "Spawn Block (Blue)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 629, + 630, + 631, + 632, + 633 + ] + }, + "Spawn Block (Black)|meta|rot3": { + "ttb": 1500, + "textureInfo": [ + "black_spawn_block_top[rot[1", + "black_spawn_block_top[rot[2", + "black_spawn_block_top[rot[3", + "black_spawn_block_top[rot[4", + "black_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1559, + "name": "Spawn Block (Black)|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 634, + 635, + 636, + 637, + 638 + ] + }, + "Spawn Block (Yellow)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "yellow_spawn_block_top[rot[1", + "yellow_spawn_block_top[rot[2", + "yellow_spawn_block_top[rot[3", + "yellow_spawn_block_top[rot[4", + "yellow_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1560, + "name": "Spawn Block (Yellow)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 559, + 560, + 561, + 562, + 563 + ] + }, + "Spawn Block (White)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "white_spawn_block_top[rot[1", + "white_spawn_block_top[rot[2", + "white_spawn_block_top[rot[3", + "white_spawn_block_top[rot[4", + "white_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1561, + "name": "Spawn Block (White)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 564, + 565, + 566, + 567, + 568 + ] + }, + "Spawn Block (Red)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "red_spawn_block_top[rot[1", + "red_spawn_block_top[rot[2", + "red_spawn_block_top[rot[3", + "red_spawn_block_top[rot[4", + "red_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1562, + "name": "Spawn Block (Red)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 569, + 570, + 571, + 572, + 573 + ] + }, + "Spawn Block (Purple)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "purple_spawn_block_top[rot[1", + "purple_spawn_block_top[rot[2", + "purple_spawn_block_top[rot[3", + "purple_spawn_block_top[rot[4", + "purple_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1563, + "name": "Spawn Block (Purple)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 574, + 575, + 576, + 577, + 578 + ] + }, + "Spawn Block (Pink)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "pink_spawn_block_top[rot[1", + "pink_spawn_block_top[rot[2", + "pink_spawn_block_top[rot[3", + "pink_spawn_block_top[rot[4", + "pink_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1564, + "name": "Spawn Block (Pink)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 579, + 580, + 581, + 582, + 583 + ] + }, + "Spawn Block (Orange)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "orange_spawn_block_top[rot[1", + "orange_spawn_block_top[rot[2", + "orange_spawn_block_top[rot[3", + "orange_spawn_block_top[rot[4", + "orange_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1565, + "name": "Spawn Block (Orange)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 584, + 585, + 586, + 587, + 588 + ] + }, + "Spawn Block (Magenta)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "magenta_spawn_block_top[rot[1", + "magenta_spawn_block_top[rot[2", + "magenta_spawn_block_top[rot[3", + "magenta_spawn_block_top[rot[4", + "magenta_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1566, + "name": "Spawn Block (Magenta)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 589, + 590, + 591, + 592, + 593 + ] + }, + "Spawn Block (Lime)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "lime_spawn_block_top[rot[1", + "lime_spawn_block_top[rot[2", + "lime_spawn_block_top[rot[3", + "lime_spawn_block_top[rot[4", + "lime_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1567, + "name": "Spawn Block (Lime)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 594, + 595, + 596, + 597, + 598 + ] + }, + "Spawn Block (Light Gray)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "light_gray_spawn_block_top[rot[1", + "light_gray_spawn_block_top[rot[2", + "light_gray_spawn_block_top[rot[3", + "light_gray_spawn_block_top[rot[4", + "light_gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1568, + "name": "Spawn Block (Light Gray)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 599, + 600, + 601, + 602, + 603 + ] + }, + "Spawn Block (Light Blue)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "light_blue_spawn_block_top[rot[1", + "light_blue_spawn_block_top[rot[2", + "light_blue_spawn_block_top[rot[3", + "light_blue_spawn_block_top[rot[4", + "light_blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1569, + "name": "Spawn Block (Light Blue)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 604, + 605, + 606, + 607, + 608 + ] + }, + "Spawn Block (Green)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "green_spawn_block_top[rot[1", + "green_spawn_block_top[rot[2", + "green_spawn_block_top[rot[3", + "green_spawn_block_top[rot[4", + "green_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1570, + "name": "Spawn Block (Green)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 609, + 610, + 611, + 612, + 613 + ] + }, + "Spawn Block (Gray)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "gray_spawn_block_top[rot[1", + "gray_spawn_block_top[rot[2", + "gray_spawn_block_top[rot[3", + "gray_spawn_block_top[rot[4", + "gray_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1571, + "name": "Spawn Block (Gray)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 614, + 615, + 616, + 617, + 618 + ] + }, + "Spawn Block (Cyan)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "cyan_spawn_block_top[rot[1", + "cyan_spawn_block_top[rot[2", + "cyan_spawn_block_top[rot[3", + "cyan_spawn_block_top[rot[4", + "cyan_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1572, + "name": "Spawn Block (Cyan)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 619, + 620, + 621, + 622, + 623 + ] + }, + "Spawn Block (Brown)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "brown_spawn_block_top[rot[1", + "brown_spawn_block_top[rot[2", + "brown_spawn_block_top[rot[3", + "brown_spawn_block_top[rot[4", + "brown_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1573, + "name": "Spawn Block (Brown)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 624, + 625, + 626, + 627, + 628 + ] + }, + "Spawn Block (Blue)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "blue_spawn_block_top[rot[1", + "blue_spawn_block_top[rot[2", + "blue_spawn_block_top[rot[3", + "blue_spawn_block_top[rot[4", + "blue_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1574, + "name": "Spawn Block (Blue)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 629, + 630, + 631, + 632, + 633 + ] + }, + "Spawn Block (Black)|meta|rot4": { + "ttb": 1500, + "textureInfo": [ + "black_spawn_block_top[rot[1", + "black_spawn_block_top[rot[2", + "black_spawn_block_top[rot[3", + "black_spawn_block_top[rot[4", + "black_spawn_block_side" + ], + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "harvestType": "rock", + "id": 1575, + "name": "Spawn Block (Black)|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 634, + 635, + 636, + 637, + 638 + ] + }, + "Checkpoint Block": { + "displayName": { + "translationKey": "item:checkpointBlock" + }, + "ttb": 1500, + "textureInfo": [ + "checkpoint_block[rot[1", + "checkpoint_block[rot[2", + "checkpoint_block[rot[3", + "checkpoint_block[rot[4" + ], + "harvestType": "rock", + "rootMetaDesc": "Checkpoint Block|meta|rot1", + "description": { + "translationKey": "item:checkpointBlockDescription" + }, + "texturePerSide": [ + 0, + 0, + 2, + 0, + 0, + 0 + ], + "id": 1576, + "name": "Checkpoint Block", + "stackable": true, + "meta": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 639, + 640, + 641, + 642 + ] + }, + "Checkpoint Block|meta|rot2": { + "displayName": { + "translationKey": "item:checkpointBlock" + }, + "ttb": 1500, + "textureInfo": [ + "checkpoint_block[rot[1", + "checkpoint_block[rot[2", + "checkpoint_block[rot[3", + "checkpoint_block[rot[4" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:checkpointBlockDescription" + }, + "texturePerSide": [ + 0, + 0, + 3, + 0, + 0, + 0 + ], + "id": 1577, + "name": "Checkpoint Block|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 639, + 640, + 641, + 642 + ] + }, + "Checkpoint Block|meta|rot3": { + "displayName": { + "translationKey": "item:checkpointBlock" + }, + "ttb": 1500, + "textureInfo": [ + "checkpoint_block[rot[1", + "checkpoint_block[rot[2", + "checkpoint_block[rot[3", + "checkpoint_block[rot[4" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:checkpointBlockDescription" + }, + "texturePerSide": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "id": 1578, + "name": "Checkpoint Block|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 639, + 640, + 641, + 642 + ] + }, + "Checkpoint Block|meta|rot4": { + "displayName": { + "translationKey": "item:checkpointBlock" + }, + "ttb": 1500, + "textureInfo": [ + "checkpoint_block[rot[1", + "checkpoint_block[rot[2", + "checkpoint_block[rot[3", + "checkpoint_block[rot[4" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:checkpointBlockDescription" + }, + "texturePerSide": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "id": 1579, + "name": "Checkpoint Block|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 639, + 640, + 641, + 642 + ] + }, + "Custom Lobby Block": { + "displayName": { + "translationKey": "item:customLobbyBlock" + }, + "ttb": 1500, + "textureInfo": [ + "custom_lobby_block_top[rot[1", + "custom_lobby_block_top[rot[2", + "custom_lobby_block_top[rot[3", + "custom_lobby_block_top[rot[4", + "custom_lobby_block_side" + ], + "harvestType": "rock", + "rootMetaDesc": "Custom Lobby Block|meta|rot1", + "description": { + "translationKey": "item:customLobbyBlockDescription" + }, + "texturePerSide": [ + 4, + 4, + 2, + 4, + 4, + 4 + ], + "id": 1580, + "name": "Custom Lobby Block", + "stackable": true, + "meta": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 643, + 644, + 645, + 646, + 647 + ] + }, + "Custom Lobby Block|meta|rot2": { + "displayName": { + "translationKey": "item:customLobbyBlock" + }, + "ttb": 1500, + "textureInfo": [ + "custom_lobby_block_top[rot[1", + "custom_lobby_block_top[rot[2", + "custom_lobby_block_top[rot[3", + "custom_lobby_block_top[rot[4", + "custom_lobby_block_side" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:customLobbyBlockDescription" + }, + "texturePerSide": [ + 4, + 4, + 3, + 4, + 4, + 4 + ], + "id": 1581, + "name": "Custom Lobby Block|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 643, + 644, + 645, + 646, + 647 + ] + }, + "Custom Lobby Block|meta|rot3": { + "displayName": { + "translationKey": "item:customLobbyBlock" + }, + "ttb": 1500, + "textureInfo": [ + "custom_lobby_block_top[rot[1", + "custom_lobby_block_top[rot[2", + "custom_lobby_block_top[rot[3", + "custom_lobby_block_top[rot[4", + "custom_lobby_block_side" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:customLobbyBlockDescription" + }, + "texturePerSide": [ + 4, + 4, + 0, + 4, + 4, + 4 + ], + "id": 1582, + "name": "Custom Lobby Block|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 643, + 644, + 645, + 646, + 647 + ] + }, + "Custom Lobby Block|meta|rot4": { + "displayName": { + "translationKey": "item:customLobbyBlock" + }, + "ttb": 1500, + "textureInfo": [ + "custom_lobby_block_top[rot[1", + "custom_lobby_block_top[rot[2", + "custom_lobby_block_top[rot[3", + "custom_lobby_block_top[rot[4", + "custom_lobby_block_side" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:customLobbyBlockDescription" + }, + "texturePerSide": [ + 4, + 4, + 1, + 4, + 4, + 4 + ], + "id": 1583, + "name": "Custom Lobby Block|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 643, + 644, + 645, + 646, + 647 + ] + }, + "Generator Spawn Block (Red)": { + "displayName": { + "translationKey": "item:redGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "red_gen_spawn_top", + "red_gen_spawn_coal", + "red_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1584, + "name": "Generator Spawn Block (Red)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Red)", + "rootId": 1584, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 648, + 649, + 650 + ] + }, + "Generator Spawn Block (Blue)": { + "displayName": { + "translationKey": "item:blueGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "blue_gen_spawn_top", + "blue_gen_spawn_coal", + "blue_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1585, + "name": "Generator Spawn Block (Blue)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Blue)", + "rootId": 1585, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 651, + 652, + 653 + ] + }, + "Generator Spawn Block (Lime)": { + "displayName": { + "translationKey": "item:limeGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "lime_gen_spawn_top", + "lime_gen_spawn_coal", + "lime_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1586, + "name": "Generator Spawn Block (Lime)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Lime)", + "rootId": 1586, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 654, + 655, + 656 + ] + }, + "Generator Spawn Block (Yellow)": { + "displayName": { + "translationKey": "item:yellowGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "yellow_gen_spawn_top", + "yellow_gen_spawn_coal", + "yellow_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1587, + "name": "Generator Spawn Block (Yellow)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Yellow)", + "rootId": 1587, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 657, + 658, + 659 + ] + }, + "Generator Spawn Block (Cyan)": { + "displayName": { + "translationKey": "item:cyanGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "cyan_gen_spawn_top", + "cyan_gen_spawn_coal", + "cyan_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1588, + "name": "Generator Spawn Block (Cyan)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Cyan)", + "rootId": 1588, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 660, + 661, + 662 + ] + }, + "Generator Spawn Block (White)": { + "displayName": { + "translationKey": "item:whiteGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "white_gen_spawn_top", + "white_gen_spawn_coal", + "white_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1589, + "name": "Generator Spawn Block (White)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (White)", + "rootId": 1589, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 663, + 664, + 665 + ] + }, + "Generator Spawn Block (Pink)": { + "displayName": { + "translationKey": "item:pinkGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "pink_gen_spawn_top", + "pink_gen_spawn_coal", + "pink_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1590, + "name": "Generator Spawn Block (Pink)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Pink)", + "rootId": 1590, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 666, + 667, + 668 + ] + }, + "Generator Spawn Block (Gray)": { + "displayName": { + "translationKey": "item:grayGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "gray_gen_spawn_top", + "gray_gen_spawn_coal", + "gray_gen_spawn_iron" + ], + "texturePerSide": [ + 2, + 2, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:teamGeneratorSpawnBlockDescription" + }, + "id": 1591, + "name": "Generator Spawn Block (Gray)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Gray)", + "rootId": 1591, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 669, + 670, + 671 + ] + }, + "Trader Shop Spawn Block": { + "displayName": { + "translationKey": "item:traderShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_trader_spawn_top[rot[1", + "shop_trader_spawn_top[rot[2", + "shop_trader_spawn_top[rot[3", + "shop_trader_spawn_top[rot[4", + "shop_trader_spawn_side", + "shop_trader_spawn_face" + ], + "harvestType": "rock", + "rootMetaDesc": "Trader Shop Spawn Block|meta|rot1", + "description": { + "translationKey": "item:traderShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 2, + 4, + 4, + 4 + ], + "id": 1592, + "name": "Trader Shop Spawn Block", + "stackable": true, + "meta": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 672, + 673, + 674, + 675, + 676, + 677 + ] + }, + "Trader Shop Spawn Block|meta|rot2": { + "displayName": { + "translationKey": "item:traderShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_trader_spawn_top[rot[1", + "shop_trader_spawn_top[rot[2", + "shop_trader_spawn_top[rot[3", + "shop_trader_spawn_top[rot[4", + "shop_trader_spawn_side", + "shop_trader_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:traderShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 3, + 4, + 4, + 4 + ], + "id": 1593, + "name": "Trader Shop Spawn Block|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 672, + 673, + 674, + 675, + 676, + 677 + ] + }, + "Trader Shop Spawn Block|meta|rot3": { + "displayName": { + "translationKey": "item:traderShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_trader_spawn_top[rot[1", + "shop_trader_spawn_top[rot[2", + "shop_trader_spawn_top[rot[3", + "shop_trader_spawn_top[rot[4", + "shop_trader_spawn_side", + "shop_trader_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:traderShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 0, + 4, + 4, + 4 + ], + "id": 1594, + "name": "Trader Shop Spawn Block|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 672, + 673, + 674, + 675, + 676, + 677 + ] + }, + "Trader Shop Spawn Block|meta|rot4": { + "displayName": { + "translationKey": "item:traderShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_trader_spawn_top[rot[1", + "shop_trader_spawn_top[rot[2", + "shop_trader_spawn_top[rot[3", + "shop_trader_spawn_top[rot[4", + "shop_trader_spawn_side", + "shop_trader_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:traderShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 1, + 4, + 4, + 4 + ], + "id": 1595, + "name": "Trader Shop Spawn Block|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 672, + 673, + 674, + 675, + 676, + 677 + ] + }, + "Wizard Shop Spawn Block": { + "displayName": { + "translationKey": "item:wizardShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_wizard_spawn_top[rot[1", + "shop_wizard_spawn_top[rot[2", + "shop_wizard_spawn_top[rot[3", + "shop_wizard_spawn_top[rot[4", + "shop_wizard_spawn_side", + "shop_wizard_spawn_face" + ], + "harvestType": "rock", + "rootMetaDesc": "Wizard Shop Spawn Block|meta|rot1", + "description": { + "translationKey": "item:wizardShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 2, + 4, + 4, + 4 + ], + "id": 1596, + "name": "Wizard Shop Spawn Block", + "stackable": true, + "meta": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 678, + 679, + 680, + 681, + 682, + 683 + ] + }, + "Wizard Shop Spawn Block|meta|rot2": { + "displayName": { + "translationKey": "item:wizardShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_wizard_spawn_top[rot[1", + "shop_wizard_spawn_top[rot[2", + "shop_wizard_spawn_top[rot[3", + "shop_wizard_spawn_top[rot[4", + "shop_wizard_spawn_side", + "shop_wizard_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:wizardShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 3, + 4, + 4, + 4 + ], + "id": 1597, + "name": "Wizard Shop Spawn Block|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 678, + 679, + 680, + 681, + 682, + 683 + ] + }, + "Wizard Shop Spawn Block|meta|rot3": { + "displayName": { + "translationKey": "item:wizardShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_wizard_spawn_top[rot[1", + "shop_wizard_spawn_top[rot[2", + "shop_wizard_spawn_top[rot[3", + "shop_wizard_spawn_top[rot[4", + "shop_wizard_spawn_side", + "shop_wizard_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:wizardShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 0, + 4, + 4, + 4 + ], + "id": 1598, + "name": "Wizard Shop Spawn Block|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 678, + 679, + 680, + 681, + 682, + 683 + ] + }, + "Wizard Shop Spawn Block|meta|rot4": { + "displayName": { + "translationKey": "item:wizardShopSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "shop_wizard_spawn_top[rot[1", + "shop_wizard_spawn_top[rot[2", + "shop_wizard_spawn_top[rot[3", + "shop_wizard_spawn_top[rot[4", + "shop_wizard_spawn_side", + "shop_wizard_spawn_face" + ], + "harvestType": "rock", + "description": { + "translationKey": "item:wizardShopSpawnBlockDescription" + }, + "texturePerSide": [ + 5, + 5, + 1, + 4, + 4, + 4 + ], + "id": 1599, + "name": "Wizard Shop Spawn Block|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 678, + 679, + 680, + 681, + 682, + 683 + ] + }, + "Generator Spawn Block (Diamond)": { + "displayName": { + "translationKey": "item:diamondGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "diamond_gen_spawn_top", + "diamond_gen_spawn_side" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:diamondGeneratorSpawnBlockDescription" + }, + "id": 1600, + "name": "Generator Spawn Block (Diamond)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Diamond)", + "rootId": 1600, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 684, + 685 + ] + }, + "Generator Spawn Block (Moonstone)": { + "displayName": { + "translationKey": "item:moonstoneGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "moonstone_gen_spawn_top", + "moonstone_gen_spawn_side" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:moonstoneGeneratorSpawnBlockDescription" + }, + "id": 1601, + "name": "Generator Spawn Block (Moonstone)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Moonstone)", + "rootId": 1601, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 686, + 687 + ] + }, + "Generator Spawn Block (Ore)": { + "displayName": { + "translationKey": "item:oreGeneratorSpawnBlock" + }, + "ttb": 1500, + "textureInfo": [ + "ore_gen_spawn_top", + "ore_gen_spawn_side" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:oreGeneratorSpawnBlockDescription" + }, + "id": 1602, + "name": "Generator Spawn Block (Ore)", + "stackable": true, + "meta": { + "rootName": "Generator Spawn Block (Ore)", + "rootId": 1602, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 688, + 689 + ] + }, + "Goal Block (Red)": { + "displayName": { + "translationKey": "item:redGoalBlock" + }, + "ttb": 1500, + "textureInfo": [ + "explosive_paint_red_top", + "red_spawn_block_top[rot[3" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:goalBlockDescription" + }, + "id": 1603, + "name": "Goal Block (Red)", + "stackable": true, + "meta": { + "rootName": "Goal Block (Red)", + "rootId": 1603, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 479, + 571 + ] + }, + "Goal Block (Blue)": { + "displayName": { + "translationKey": "item:blueGoalBlock" + }, + "ttb": 1500, + "textureInfo": [ + "explosive_paint_blue_top", + "blue_spawn_block_top[rot[3" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:goalBlockDescription" + }, + "id": 1604, + "name": "Goal Block (Blue)", + "stackable": true, + "meta": { + "rootName": "Goal Block (Blue)", + "rootId": 1604, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 503, + 631 + ] + }, + "Finish Block": { + "displayName": { + "translationKey": "item:finishBlock" + }, + "ttb": 1500, + "textureInfo": "finish_block", + "harvestType": "rock", + "description": { + "translationKey": "item:finishBlockDescription" + }, + "id": 1605, + "name": "Finish Block", + "stackable": true, + "meta": { + "rootName": "Finish Block", + "rootId": 1605, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 690 + }, + "Drop Location Block": { + "displayName": { + "translationKey": "item:dropLocationBlock" + }, + "ttb": 1500, + "textureInfo": [ + "drop_location_block_top", + "drop_location_block_side" + ], + "texturePerSide": [ + 1, + 1, + 0, + 0, + 1, + 1 + ], + "harvestType": "rock", + "description": { + "translationKey": "item:dropLocationBlockDescription" + }, + "id": 1606, + "name": "Drop Location Block", + "stackable": true, + "meta": { + "rootName": "Drop Location Block", + "rootId": 1606, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 691, + 692 + ] + }, + "Obby Death Block": { + "displayName": { + "translationKey": "item:obbyDeathBlock" + }, + "ttb": 1500, + "textureInfo": "obby_death_block", + "harvestType": "rock", + "description": { + "translationKey": "item:obbyDeathBlockDescription" + }, + "id": 1607, + "name": "Obby Death Block", + "stackable": true, + "meta": { + "rootName": "Obby Death Block", + "rootId": 1607, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 693 + }, + "Obby Absorb Block": { + "displayName": { + "translationKey": "item:obbyAbsorbBlock" + }, + "ttb": 1500, + "textureInfo": "obby_absorb_block", + "harvestType": "rock", + "description": { + "translationKey": "item:obbyAbsorbBlockDescription" + }, + "id": 1608, + "name": "Obby Absorb Block", + "stackable": true, + "meta": { + "rootName": "Obby Absorb Block", + "rootId": 1608, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 694 + }, + "Obby Absorb Death Block": { + "displayName": { + "translationKey": "item:obbyAbsorbDeathBlock" + }, + "ttb": 1500, + "textureInfo": "obby_absorb_death_block", + "harvestType": "rock", + "description": { + "translationKey": "item:obbyAbsorbDeathBlockDescription" + }, + "id": 1609, + "name": "Obby Absorb Death Block", + "stackable": true, + "meta": { + "rootName": "Obby Absorb Death Block", + "rootId": 1609, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 695 + }, + "Bone Block": { + "displayName": { + "translationKey": "item:boneBlock" + }, + "ttb": 960, + "textureInfo": [ + "bone_block_side", + "bone_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "rock", + "id": 1610, + "name": "Bone Block", + "stackable": true, + "meta": { + "rootName": "Bone Block", + "rootId": 1610, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 696, + 697 + ] + }, + "Pig Spawner Block": { + "displayName": { + "translationKey": "item:pigMobSpawnerBlock" + }, + "description": { + "translationKey": "item:pigMobSpawnerBlockDescription" + }, + "itemTexture": "pig_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_passive_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Pig Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1611, + "name": "Pig Spawner Block", + "stackable": true, + "meta": { + "rootName": "Pig Spawner Block", + "rootId": 1611, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 698, + 699 + ] + }, + "Cow Spawner Block": { + "displayName": { + "translationKey": "item:cowMobSpawnerBlock" + }, + "description": { + "translationKey": "item:cowMobSpawnerBlockDescription" + }, + "itemTexture": "cow_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_passive_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Cow Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1612, + "name": "Cow Spawner Block", + "stackable": true, + "meta": { + "rootName": "Cow Spawner Block", + "rootId": 1612, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 698, + 699 + ] + }, + "Sheep Spawner Block": { + "displayName": { + "translationKey": "item:sheepMobSpawnerBlock" + }, + "description": { + "translationKey": "item:sheepMobSpawnerBlockDescription" + }, + "itemTexture": "sheep_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_passive_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Sheep Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1613, + "name": "Sheep Spawner Block", + "stackable": true, + "meta": { + "rootName": "Sheep Spawner Block", + "rootId": 1613, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 698, + 699 + ] + }, + "Cave Golem Spawner Block": { + "displayName": { + "translationKey": "item:caveGolemMobSpawnerBlock" + }, + "description": { + "translationKey": "item:caveGolemMobSpawnerBlockDescription" + }, + "itemTexture": "cave_golem_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Cave Golem Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1614, + "name": "Cave Golem Spawner Block", + "stackable": true, + "meta": { + "rootName": "Cave Golem Spawner Block", + "rootId": 1614, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Draugr Zombie Spawner Block": { + "displayName": { + "translationKey": "item:draugrZombieMobSpawnerBlock" + }, + "description": { + "translationKey": "item:draugrZombieMobSpawnerBlockDescription" + }, + "itemTexture": "draugr_zombie_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Draugr Zombie Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1615, + "name": "Draugr Zombie Spawner Block", + "stackable": true, + "meta": { + "rootName": "Draugr Zombie Spawner Block", + "rootId": 1615, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Draugr Skeleton Spawner Block": { + "displayName": { + "translationKey": "item:draugrSkeletonMobSpawnerBlock" + }, + "description": { + "translationKey": "item:draugrSkeletonMobSpawnerBlockDescription" + }, + "itemTexture": "draugr_skeleton_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Draugr Skeleton Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1616, + "name": "Draugr Skeleton Spawner Block", + "stackable": true, + "meta": { + "rootName": "Draugr Skeleton Spawner Block", + "rootId": 1616, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Empty Spawner Block": { + "displayName": { + "translationKey": "item:emptyMobSpawnerBlock" + }, + "description": { + "translationKey": "item:emptyMobSpawnerBlockDescription" + }, + "itemTexture": "empty_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_block_empty_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Empty Spawner Block" + }, + "particlesIgnoreBlack": true, + "twoDBlockItem": true, + "id": 1617, + "name": "Empty Spawner Block", + "stackable": true, + "meta": { + "rootName": "Empty Spawner Block", + "rootId": 1617, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 701, + 699 + ] + }, + "Frost Golem Spawner Block": { + "displayName": { + "translationKey": "item:frostGolemMobSpawnerBlock" + }, + "description": { + "translationKey": "item:frostGolemMobSpawnerBlockDescription" + }, + "itemTexture": "frost_golem_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Frost Golem Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1618, + "name": "Frost Golem Spawner Block", + "stackable": true, + "meta": { + "rootName": "Frost Golem Spawner Block", + "rootId": 1618, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Frost Zombie Spawner Block": { + "displayName": { + "translationKey": "item:frostZombieMobSpawnerBlock" + }, + "description": { + "translationKey": "item:frostZombieMobSpawnerBlockDescription" + }, + "itemTexture": "frost_zombie_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Frost Zombie Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1619, + "name": "Frost Zombie Spawner Block", + "stackable": true, + "meta": { + "rootName": "Frost Zombie Spawner Block", + "rootId": 1619, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Frost Skeleton Spawner Block": { + "displayName": { + "translationKey": "item:frostSkeletonMobSpawnerBlock" + }, + "description": { + "translationKey": "item:frostSkeletonMobSpawnerBlockDescription" + }, + "itemTexture": "frost_skeleton_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Frost Skeleton Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1620, + "name": "Frost Skeleton Spawner Block", + "stackable": true, + "meta": { + "rootName": "Frost Skeleton Spawner Block", + "rootId": 1620, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Snowy Messy Stone": { + "displayName": { + "translationKey": "item:snowyMessyStone" + }, + "ttb": 1800, + "textureInfo": "snowy_messy_stone", + "harvestType": "rock", + "id": 1621, + "name": "Snowy Messy Stone", + "stackable": true, + "meta": { + "rootName": "Snowy Messy Stone", + "rootId": 1621, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 702 + }, + "Snowy Stone Slab": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "rootMetaDesc": "Snowy Stone Slab|meta|rot1|bot", + "id": 1622, + "name": "Snowy Stone Slab", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "Snowy Stone Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 1623, + "name": "Snowy Stone Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "Snowy Stone Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 1624, + "name": "Snowy Stone Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "Snowy Stone Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 1625, + "name": "Snowy Stone Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "Snowy Stone Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 1626, + "name": "Snowy Stone Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "Snowy Stone Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:snowyStoneSlab" + }, + "ttb": 1200, + "textureInfo": [ + "snowy_messy_stone_side", + "snowy_messy_stone" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "rock", + "id": 1627, + "name": "Snowy Stone Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 703, + 702 + ] + }, + "Draugr Knight Spawner Block": { + "displayName": { + "translationKey": "item:draugrKnightMobSpawnerBlock" + }, + "description": { + "translationKey": "item:draugrKnightMobSpawnerBlockDescription" + }, + "itemTexture": "draugr_knight_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Draugr Knight Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1628, + "name": "Draugr Knight Spawner Block", + "stackable": true, + "meta": { + "rootName": "Draugr Knight Spawner Block", + "rootId": 1628, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Packed Snow": { + "displayName": { + "translationKey": "item:packedSnow" + }, + "ttb": 1800, + "textureInfo": "packed_snow", + "harvestType": "granule", + "soundType": { + "break": "snow", + "place": "snow" + }, + "id": 1629, + "name": "Packed Snow", + "stackable": true, + "meta": { + "rootName": "Packed Snow", + "rootId": 1629, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 704 + }, + "Carved Messy Stone": { + "displayName": { + "translationKey": "item:carvedMessyStone" + }, + "ttb": 1800, + "textureInfo": "carved_messy_stone", + "harvestType": "rock", + "id": 1630, + "name": "Carved Messy Stone", + "stackable": true, + "meta": { + "rootName": "Carved Messy Stone", + "rootId": 1630, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 705 + }, + "Spectral Grass": { + "displayName": { + "translationKey": "item:spectralGrass" + }, + "ttb": 1, + "textureInfo": "spectral_grass", + "model": "CentreCross", + "TB": false, + "drops": null, + "harvestType": "cuttable", + "specialToolDrop": { + "tool": "Shears", + "drops": "Spectral Grass" + }, + "canBePlacedOver": true, + "id": 1631, + "name": "Spectral Grass", + "stackable": true, + "meta": { + "rootName": "Spectral Grass", + "rootId": 1631, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Log": { + "displayName": { + "translationKey": "item:spectralLog" + }, + "ttb": 2400, + "textureInfo": "log_spectral", + "harvestType": "wood", + "id": 1632, + "name": "Spectral Log", + "stackable": true, + "meta": { + "rootName": "Spectral Log", + "rootId": 1632, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 706 + }, + "Barkless Spectral Log": { + "displayName": { + "translationKey": "item:barklessSpectralLog" + }, + "ttb": 2000, + "textureInfo": "stripped_spectral_log", + "harvestType": "wood", + "id": 1633, + "name": "Barkless Spectral Log", + "stackable": true, + "meta": { + "rootName": "Barkless Spectral Log", + "rootId": 1633, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 707 + }, + "Barkless Spectral Log|TreeBase|Spectral": { + "ttb": 2000, + "textureInfo": "stripped_spectral_log", + "harvestType": "wood", + "drops": "Barkless Spectral Log", + "id": 1634, + "name": "Barkless Spectral Log|TreeBase|Spectral", + "stackable": true, + "meta": { + "rootName": "Barkless Spectral Log", + "rootId": 1633, + "metaStr": "TreeBase|Spectral", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Spectral", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 707 + }, + "Spectral Wood Planks": { + "displayName": { + "translationKey": "item:spectralWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_spectral", + "harvestType": "wood", + "id": 1635, + "name": "Spectral Wood Planks", + "stackable": true, + "meta": { + "rootName": "Spectral Wood Planks", + "rootId": 1635, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 708 + }, + "Spectral Leaves": { + "displayName": { + "translationKey": "item:spectralLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_spectral", + "harvestType": "cuttable", + "id": 1636, + "name": "Spectral Leaves", + "stackable": true, + "meta": { + "rootName": "Spectral Leaves", + "rootId": 1636, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 709 + }, + "Spectral Door": { + "displayName": { + "translationKey": "item:spectralDoor" + }, + "ttb": 3600, + "itemTexture": "spectral_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Spectral Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Spectral Door", + "id": 1637, + "name": "Spectral Door", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Door|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1638, + "name": "Spectral Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Door|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 1639, + "name": "Spectral Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Door|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1640, + "name": "Spectral Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Door|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 1641, + "name": "Spectral Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Door|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1642, + "name": "Spectral Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Door|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 1643, + "name": "Spectral Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Door|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1644, + "name": "Spectral Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Spectral Door Top": { + "ttb": 3600, + "itemTexture": "spectral_door", + "harvestType": "wood", + "model": "door", + "drops": "Spectral Door", + "rootMetaDesc": "_Spectral Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Spectral Door Top", + "id": 1645, + "name": "_Spectral Door Top", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Spectral Door Top|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "TB": false, + "id": 1646, + "name": "_Spectral Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Spectral Door Top|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "id": 1647, + "name": "_Spectral Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Spectral Door Top|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "TB": false, + "id": 1648, + "name": "_Spectral Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Spectral Door Top|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "id": 1649, + "name": "_Spectral Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Spectral Door Top|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "TB": false, + "id": 1650, + "name": "_Spectral Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Spectral Door Top|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "id": 1651, + "name": "_Spectral Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Spectral Door Top|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Spectral Door", + "TB": false, + "id": 1652, + "name": "_Spectral Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Trapdoor": { + "displayName": { + "translationKey": "item:spectralTrapdoor" + }, + "ttb": 2800, + "itemTexture": "spectral_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Spectral Trapdoor|meta|rot1|closed", + "blockModel": "Spectral Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 1653, + "name": "Spectral Trapdoor", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Trapdoor|meta|rot1|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1654, + "name": "Spectral Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Trapdoor|meta|rot2|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 1655, + "name": "Spectral Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Trapdoor|meta|rot2|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1656, + "name": "Spectral Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Trapdoor|meta|rot3|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 1657, + "name": "Spectral Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Trapdoor|meta|rot3|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1658, + "name": "Spectral Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Trapdoor|meta|rot4|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 1659, + "name": "Spectral Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Trapdoor|meta|rot4|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1660, + "name": "Spectral Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Sapling": { + "displayName": { + "translationKey": "item:spectralSapling" + }, + "ttb": 1, + "textureInfo": "spectral_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "spectral_sapling", + "id": 1661, + "name": "Spectral Sapling", + "stackable": true, + "meta": { + "rootName": "Spectral Sapling", + "rootId": 1661, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Log|TreeBase|Spectral": { + "ttb": 2400, + "textureInfo": "log_spectral", + "harvestType": "wood", + "drops": "Spectral Log", + "id": 1662, + "name": "Spectral Log|TreeBase|Spectral", + "stackable": true, + "meta": { + "rootName": "Spectral Log", + "rootId": 1632, + "metaStr": "TreeBase|Spectral", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Spectral", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 706 + }, + "Spectral Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_spectral", + "harvestType": "cuttable", + "drops": "Spectral Leaves", + "id": 1663, + "name": "Spectral Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Spectral Leaves", + "rootId": 1636, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 709 + }, + "Spectral Slab": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Spectral Slab|meta|rot1|bot", + "id": 1664, + "name": "Spectral Slab", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "Spectral Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1665, + "name": "Spectral Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "Spectral Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1666, + "name": "Spectral Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "Spectral Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1667, + "name": "Spectral Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "Spectral Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1668, + "name": "Spectral Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "Spectral Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:spectralSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_spectral_side", + "planks_spectral" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1669, + "name": "Spectral Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 710, + 708 + ] + }, + "Spectral Ladder": { + "displayName": { + "translationKey": "item:spectralLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_spectral", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Spectral Ladder|meta|rot1", + "modelScale": 1, + "TB": false, + "blockModel": "Spectral Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1670, + "name": "Spectral Ladder", + "stackable": true, + "meta": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:spectralLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_spectral", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Spectral Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1671, + "name": "Spectral Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:spectralLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_spectral", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Spectral Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1672, + "name": "Spectral Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Spectral Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:spectralLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_spectral", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Spectral Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 1673, + "name": "Spectral Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Wood Enchanting Table": { + "displayName": { + "translationKey": "item:woodEnchantingTable" + }, + "ttb": 800, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "wood_enchanting_table", + "rootMetaDesc": "Wood Enchanting Table|meta|rot1", + "modelScale": 10, + "blockModel": "Wood Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1674, + "name": "Wood Enchanting Table", + "stackable": true, + "meta": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Wood Enchanting Table|meta|rot2": { + "displayName": { + "translationKey": "item:woodEnchantingTable" + }, + "ttb": 800, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "wood_enchanting_table", + "modelScale": 10, + "blockModel": "Wood Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1675, + "name": "Wood Enchanting Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Wood Enchanting Table|meta|rot3": { + "displayName": { + "translationKey": "item:woodEnchantingTable" + }, + "ttb": 800, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "wood_enchanting_table", + "modelScale": 10, + "blockModel": "Wood Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1676, + "name": "Wood Enchanting Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Wood Enchanting Table|meta|rot4": { + "displayName": { + "translationKey": "item:woodEnchantingTable" + }, + "ttb": 800, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "wood_enchanting_table", + "modelScale": 10, + "blockModel": "Wood Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1677, + "name": "Wood Enchanting Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Stone Enchanting Table": { + "displayName": { + "translationKey": "item:stoneEnchantingTable" + }, + "ttb": 1000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "stone_enchanting_table", + "rootMetaDesc": "Stone Enchanting Table|meta|rot1", + "modelScale": 10, + "blockModel": "Stone Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1678, + "name": "Stone Enchanting Table", + "stackable": true, + "meta": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Stone Enchanting Table|meta|rot2": { + "displayName": { + "translationKey": "item:stoneEnchantingTable" + }, + "ttb": 1000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "stone_enchanting_table", + "modelScale": 10, + "blockModel": "Stone Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1679, + "name": "Stone Enchanting Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Stone Enchanting Table|meta|rot3": { + "displayName": { + "translationKey": "item:stoneEnchantingTable" + }, + "ttb": 1000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "stone_enchanting_table", + "modelScale": 10, + "blockModel": "Stone Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1680, + "name": "Stone Enchanting Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Stone Enchanting Table|meta|rot4": { + "displayName": { + "translationKey": "item:stoneEnchantingTable" + }, + "ttb": 1000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "stone_enchanting_table", + "modelScale": 10, + "blockModel": "Stone Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1681, + "name": "Stone Enchanting Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Iron Enchanting Table": { + "displayName": { + "translationKey": "item:ironEnchantingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "iron_enchanting_table", + "rootMetaDesc": "Iron Enchanting Table|meta|rot1", + "modelScale": 10, + "blockModel": "Iron Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1682, + "name": "Iron Enchanting Table", + "stackable": true, + "meta": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Iron Enchanting Table|meta|rot2": { + "displayName": { + "translationKey": "item:ironEnchantingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "iron_enchanting_table", + "modelScale": 10, + "blockModel": "Iron Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1683, + "name": "Iron Enchanting Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Iron Enchanting Table|meta|rot3": { + "displayName": { + "translationKey": "item:ironEnchantingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "iron_enchanting_table", + "modelScale": 10, + "blockModel": "Iron Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1684, + "name": "Iron Enchanting Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Iron Enchanting Table|meta|rot4": { + "displayName": { + "translationKey": "item:ironEnchantingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "iron_enchanting_table", + "modelScale": 10, + "blockModel": "Iron Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1685, + "name": "Iron Enchanting Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gold Enchanting Table": { + "displayName": { + "translationKey": "item:goldEnchantingTable" + }, + "ttb": 1500, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "gold_enchanting_table", + "rootMetaDesc": "Gold Enchanting Table|meta|rot1", + "modelScale": 10, + "blockModel": "Gold Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1686, + "name": "Gold Enchanting Table", + "stackable": true, + "meta": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gold Enchanting Table|meta|rot2": { + "displayName": { + "translationKey": "item:goldEnchantingTable" + }, + "ttb": 1500, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "gold_enchanting_table", + "modelScale": 10, + "blockModel": "Gold Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1687, + "name": "Gold Enchanting Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gold Enchanting Table|meta|rot3": { + "displayName": { + "translationKey": "item:goldEnchantingTable" + }, + "ttb": 1500, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "gold_enchanting_table", + "modelScale": 10, + "blockModel": "Gold Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1688, + "name": "Gold Enchanting Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gold Enchanting Table|meta|rot4": { + "displayName": { + "translationKey": "item:goldEnchantingTable" + }, + "ttb": 1500, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "gold_enchanting_table", + "modelScale": 10, + "blockModel": "Gold Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1689, + "name": "Gold Enchanting Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Diamond Enchanting Table": { + "displayName": { + "translationKey": "item:diamondEnchantingTable" + }, + "ttb": 2000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "diamond_enchanting_table", + "rootMetaDesc": "Diamond Enchanting Table|meta|rot1", + "modelScale": 10, + "blockModel": "Diamond Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1690, + "name": "Diamond Enchanting Table", + "stackable": true, + "meta": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Diamond Enchanting Table|meta|rot2": { + "displayName": { + "translationKey": "item:diamondEnchantingTable" + }, + "ttb": 2000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "diamond_enchanting_table", + "modelScale": 10, + "blockModel": "Diamond Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1691, + "name": "Diamond Enchanting Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Diamond Enchanting Table|meta|rot3": { + "displayName": { + "translationKey": "item:diamondEnchantingTable" + }, + "ttb": 2000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "diamond_enchanting_table", + "modelScale": 10, + "blockModel": "Diamond Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1692, + "name": "Diamond Enchanting Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Diamond Enchanting Table|meta|rot4": { + "displayName": { + "translationKey": "item:diamondEnchantingTable" + }, + "ttb": 2000, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "diamond_enchanting_table", + "modelScale": 10, + "blockModel": "Diamond Enchanting Table", + "description": { + "translationKey": "item:enchantingTableDescription" + }, + "id": 1693, + "name": "Diamond Enchanting Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Grass Block": { + "displayName": { + "translationKey": "item:pineGrassBlock" + }, + "ttb": 720, + "textureInfo": "pine_grass_block", + "harvestType": "granule", + "soundType": { + "break": "grass", + "place": "grass" + }, + "id": 1694, + "name": "Pine Grass Block", + "stackable": true, + "meta": { + "rootName": "Pine Grass Block", + "rootId": 1694, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 711 + }, + "Pine Grass Slab": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "rootMetaDesc": "Pine Grass Slab|meta|rot1|bot", + "id": 1695, + "name": "Pine Grass Slab", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "Pine Grass Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1696, + "name": "Pine Grass Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "Pine Grass Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1697, + "name": "Pine Grass Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "Pine Grass Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1698, + "name": "Pine Grass Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "Pine Grass Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1699, + "name": "Pine Grass Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "Pine Grass Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:pineGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_pine_grass_top_side", + "pine_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1700, + "name": "Pine Grass Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 712, + 711 + ] + }, + "Pine Grass": { + "displayName": { + "translationKey": "item:pineGrass" + }, + "ttb": 1, + "textureInfo": "pine_grass", + "model": "CentreCross", + "TB": false, + "drops": null, + "harvestType": "cuttable", + "specialToolDrop": { + "tool": "Shears", + "drops": "Pine Grass" + }, + "canBePlacedOver": true, + "id": 1701, + "name": "Pine Grass", + "stackable": true, + "meta": { + "rootName": "Pine Grass", + "rootId": 1701, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Fern": { + "displayName": { + "translationKey": "item:pineFern" + }, + "ttb": 1, + "textureInfo": "pine_fern", + "model": "CentreCross", + "TB": false, + "drops": null, + "harvestType": "cuttable", + "specialToolDrop": { + "tool": "Shears", + "drops": "Pine Fern" + }, + "canBePlacedOver": true, + "id": 1702, + "name": "Pine Fern", + "stackable": true, + "meta": { + "rootName": "Pine Fern", + "rootId": 1702, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Fallen Pine Cone": { + "displayName": { + "translationKey": "item:fallenPineCone" + }, + "ttb": 1, + "textureInfo": "fallen_pine_cone", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "id": 1703, + "name": "Fallen Pine Cone", + "stackable": true, + "meta": { + "rootName": "Fallen Pine Cone", + "rootId": 1703, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Pine Cone Block": { + "displayName": { + "translationKey": "item:pineConeBlock" + }, + "ttb": 600, + "textureInfo": [ + "pine_cone_block_side", + "pine_cone_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "id": 1704, + "name": "Pine Cone Block", + "stackable": true, + "meta": { + "rootName": "Pine Cone Block", + "rootId": 1704, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 713, + 714 + ] + }, + "Wolf Spawner Block": { + "displayName": { + "translationKey": "item:wolfMobSpawnerBlock" + }, + "description": { + "translationKey": "item:wolfMobSpawnerBlockDescription" + }, + "itemTexture": "wolf_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_neutral_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Wolf Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1705, + "name": "Wolf Spawner Block", + "stackable": true, + "meta": { + "rootName": "Wolf Spawner Block", + "rootId": 1705, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 715, + 699 + ] + }, + "Bear Spawner Block": { + "displayName": { + "translationKey": "item:bearMobSpawnerBlock" + }, + "description": { + "translationKey": "item:bearMobSpawnerBlockDescription" + }, + "itemTexture": "bear_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Bear Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1706, + "name": "Bear Spawner Block", + "stackable": true, + "meta": { + "rootName": "Bear Spawner Block", + "rootId": 1706, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Deer Spawner Block": { + "displayName": { + "translationKey": "item:deerMobSpawnerBlock" + }, + "description": { + "translationKey": "item:deerMobSpawnerBlockDescription" + }, + "itemTexture": "deer_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_passive_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Deer Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1707, + "name": "Deer Spawner Block", + "stackable": true, + "meta": { + "rootName": "Deer Spawner Block", + "rootId": 1707, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 698, + 699 + ] + }, + "Stag Spawner Block": { + "displayName": { + "translationKey": "item:stagMobSpawnerBlock" + }, + "description": { + "translationKey": "item:stagMobSpawnerBlockDescription" + }, + "itemTexture": "stag_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Stag Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1708, + "name": "Stag Spawner Block", + "stackable": true, + "meta": { + "rootName": "Stag Spawner Block", + "rootId": 1708, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Bone Antlers": { + "displayName": { + "translationKey": "item:boneAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "bone_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "rootMetaDesc": "Bone Antlers|meta|rot1", + "TB": false, + "blockModel": "bone_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1709, + "name": "Bone Antlers", + "stackable": true, + "meta": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Bone Antlers|meta|rot2": { + "displayName": { + "translationKey": "item:boneAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "bone_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "bone_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1710, + "name": "Bone Antlers|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Bone Antlers|meta|rot3": { + "displayName": { + "translationKey": "item:boneAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "bone_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "bone_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1711, + "name": "Bone Antlers|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Bone Antlers|meta|rot4": { + "displayName": { + "translationKey": "item:boneAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "bone_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "bone_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1712, + "name": "Bone Antlers|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gold Antlers": { + "displayName": { + "translationKey": "item:goldAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "gold_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "rootMetaDesc": "Gold Antlers|meta|rot1", + "TB": false, + "blockModel": "gold_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1713, + "name": "Gold Antlers", + "stackable": true, + "meta": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gold Antlers|meta|rot2": { + "displayName": { + "translationKey": "item:goldAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "gold_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "gold_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1714, + "name": "Gold Antlers|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gold Antlers|meta|rot3": { + "displayName": { + "translationKey": "item:goldAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "gold_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "gold_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1715, + "name": "Gold Antlers|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gold Antlers|meta|rot4": { + "displayName": { + "translationKey": "item:goldAntlers" + }, + "description": { + "translationKey": "item:antlersDescription" + }, + "ttb": 1500, + "itemTexture": "gold_antlers_icon", + "model": "rotatableOffset", + "harvestType": "rock", + "TB": false, + "blockModel": "gold_antlers_model", + "modelScale": 10, + "particlesIgnoreBlack": true, + "id": 1716, + "name": "Gold Antlers|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gold Watermelon Stag Spawner Block": { + "displayName": { + "translationKey": "item:goldWatermelonStagMobSpawnerBlock" + }, + "description": { + "translationKey": "item:goldWatermelonStagMobSpawnerBlockDescription" + }, + "itemTexture": "gold_watermelon_stag_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Gold Watermelon Stag Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 1717, + "name": "Gold Watermelon Stag Spawner Block", + "stackable": true, + "meta": { + "rootName": "Gold Watermelon Stag Spawner Block", + "rootId": 1717, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Salvaging Table": { + "displayName": { + "translationKey": "item:salvagingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "salvaging_table", + "TB": false, + "rootMetaDesc": "Salvaging Table|meta|rot1", + "modelScale": 10, + "blockModel": "Salvaging Table", + "description": { + "translationKey": "item:salvagingTableDescription" + }, + "id": 1718, + "name": "Salvaging Table", + "stackable": true, + "meta": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Salvaging Table|meta|rot2": { + "displayName": { + "translationKey": "item:salvagingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "salvaging_table", + "TB": false, + "modelScale": 10, + "blockModel": "Salvaging Table", + "description": { + "translationKey": "item:salvagingTableDescription" + }, + "id": 1719, + "name": "Salvaging Table|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Salvaging Table|meta|rot3": { + "displayName": { + "translationKey": "item:salvagingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "salvaging_table", + "TB": false, + "modelScale": 10, + "blockModel": "Salvaging Table", + "description": { + "translationKey": "item:salvagingTableDescription" + }, + "id": 1720, + "name": "Salvaging Table|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Salvaging Table|meta|rot4": { + "displayName": { + "translationKey": "item:salvagingTable" + }, + "ttb": 1200, + "harvestType": "wood", + "model": "rotatable", + "itemTexture": "salvaging_table", + "TB": false, + "modelScale": 10, + "blockModel": "Salvaging Table", + "description": { + "translationKey": "item:salvagingTableDescription" + }, + "id": 1721, + "name": "Salvaging Table|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Chalk": { + "displayName": { + "translationKey": "item:chalk" + }, + "description": { + "translationKey": "item:chalkDescription" + }, + "ttb": 850, + "textureInfo": "chalk", + "harvestType": "rock", + "id": 1722, + "name": "Chalk", + "stackable": true, + "meta": { + "rootName": "Chalk", + "rootId": 1722, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 716 + }, + "Yellow Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "ttb": 850, + "textureInfo": "chalk_yellow", + "harvestType": "rock", + "id": 1723, + "name": "Yellow Chalk", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk", + "rootId": 1723, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "White Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "ttb": 850, + "textureInfo": "chalk_white", + "harvestType": "rock", + "id": 1724, + "name": "White Chalk", + "stackable": true, + "meta": { + "rootName": "White Chalk", + "rootId": 1724, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "Red Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "ttb": 850, + "textureInfo": "chalk_red", + "harvestType": "rock", + "id": 1725, + "name": "Red Chalk", + "stackable": true, + "meta": { + "rootName": "Red Chalk", + "rootId": 1725, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "Purple Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "ttb": 850, + "textureInfo": "chalk_purple", + "harvestType": "rock", + "id": 1726, + "name": "Purple Chalk", + "stackable": true, + "meta": { + "rootName": "Purple Chalk", + "rootId": 1726, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "Pink Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "ttb": 850, + "textureInfo": "chalk_pink", + "harvestType": "rock", + "id": 1727, + "name": "Pink Chalk", + "stackable": true, + "meta": { + "rootName": "Pink Chalk", + "rootId": 1727, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "Orange Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "ttb": 850, + "textureInfo": "chalk_orange", + "harvestType": "rock", + "id": 1728, + "name": "Orange Chalk", + "stackable": true, + "meta": { + "rootName": "Orange Chalk", + "rootId": 1728, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "Magenta Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "ttb": 850, + "textureInfo": "chalk_magenta", + "harvestType": "rock", + "id": 1729, + "name": "Magenta Chalk", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk", + "rootId": 1729, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "Lime Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "ttb": 850, + "textureInfo": "chalk_lime", + "harvestType": "rock", + "id": 1730, + "name": "Lime Chalk", + "stackable": true, + "meta": { + "rootName": "Lime Chalk", + "rootId": 1730, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "Light Gray Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "ttb": 850, + "textureInfo": "chalk_light_gray", + "harvestType": "rock", + "id": 1731, + "name": "Light Gray Chalk", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk", + "rootId": 1731, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "Light Blue Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "ttb": 850, + "textureInfo": "chalk_light_blue", + "harvestType": "rock", + "id": 1732, + "name": "Light Blue Chalk", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk", + "rootId": 1732, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "Green Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "ttb": 850, + "textureInfo": "chalk_green", + "harvestType": "rock", + "id": 1733, + "name": "Green Chalk", + "stackable": true, + "meta": { + "rootName": "Green Chalk", + "rootId": 1733, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "Gray Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "ttb": 850, + "textureInfo": "chalk_gray", + "harvestType": "rock", + "id": 1734, + "name": "Gray Chalk", + "stackable": true, + "meta": { + "rootName": "Gray Chalk", + "rootId": 1734, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "Cyan Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "ttb": 850, + "textureInfo": "chalk_cyan", + "harvestType": "rock", + "id": 1735, + "name": "Cyan Chalk", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk", + "rootId": 1735, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "Brown Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "ttb": 850, + "textureInfo": "chalk_brown", + "harvestType": "rock", + "id": 1736, + "name": "Brown Chalk", + "stackable": true, + "meta": { + "rootName": "Brown Chalk", + "rootId": 1736, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "Blue Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "ttb": 850, + "textureInfo": "chalk_blue", + "harvestType": "rock", + "id": 1737, + "name": "Blue Chalk", + "stackable": true, + "meta": { + "rootName": "Blue Chalk", + "rootId": 1737, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "Black Chalk": { + "displayName": { + "translationKey": "item:colouredChalk", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "ttb": 850, + "textureInfo": "chalk_black", + "harvestType": "rock", + "id": 1738, + "name": "Black Chalk", + "stackable": true, + "meta": { + "rootName": "Black Chalk", + "rootId": 1738, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "Yellow Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_yellow", + "harvestType": "rock", + "id": 1739, + "name": "Yellow Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks", + "rootId": 1739, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 733 + }, + "White Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_white", + "harvestType": "rock", + "id": 1740, + "name": "White Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks", + "rootId": 1740, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 734 + }, + "Red Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_red", + "harvestType": "rock", + "id": 1741, + "name": "Red Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks", + "rootId": 1741, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 735 + }, + "Purple Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_purple", + "harvestType": "rock", + "id": 1742, + "name": "Purple Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks", + "rootId": 1742, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 736 + }, + "Pink Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_pink", + "harvestType": "rock", + "id": 1743, + "name": "Pink Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks", + "rootId": 1743, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 737 + }, + "Orange Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_orange", + "harvestType": "rock", + "id": 1744, + "name": "Orange Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks", + "rootId": 1744, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 738 + }, + "Magenta Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_magenta", + "harvestType": "rock", + "id": 1745, + "name": "Magenta Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks", + "rootId": 1745, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 739 + }, + "Lime Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_lime", + "harvestType": "rock", + "id": 1746, + "name": "Lime Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks", + "rootId": 1746, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 740 + }, + "Light Gray Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_light_gray", + "harvestType": "rock", + "id": 1747, + "name": "Light Gray Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks", + "rootId": 1747, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 741 + }, + "Light Blue Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_light_blue", + "harvestType": "rock", + "id": 1748, + "name": "Light Blue Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks", + "rootId": 1748, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 742 + }, + "Green Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_green", + "harvestType": "rock", + "id": 1749, + "name": "Green Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks", + "rootId": 1749, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 743 + }, + "Gray Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_gray", + "harvestType": "rock", + "id": 1750, + "name": "Gray Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks", + "rootId": 1750, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 744 + }, + "Cyan Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_cyan", + "harvestType": "rock", + "id": 1751, + "name": "Cyan Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks", + "rootId": 1751, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 745 + }, + "Brown Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_brown", + "harvestType": "rock", + "id": 1752, + "name": "Brown Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks", + "rootId": 1752, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 746 + }, + "Blue Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_blue", + "harvestType": "rock", + "id": 1753, + "name": "Blue Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks", + "rootId": 1753, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 747 + }, + "Black Chalk Bricks": { + "displayName": { + "translationKey": "item:colouredChalkBricks", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "ttb": 850, + "textureInfo": "chalk_bricks_black", + "harvestType": "rock", + "id": 1754, + "name": "Black Chalk Bricks", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks", + "rootId": 1754, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 748 + }, + "Yellow Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "rootMetaDesc": "Yellow Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1755, + "name": "Yellow Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "Yellow Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "ttb": 550, + "harvestType": "rock", + "id": 1756, + "name": "Yellow Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "Yellow Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "ttb": 550, + "harvestType": "rock", + "id": 1757, + "name": "Yellow Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "Yellow Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "ttb": 550, + "harvestType": "rock", + "id": 1758, + "name": "Yellow Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "Yellow Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "ttb": 550, + "harvestType": "rock", + "id": 1759, + "name": "Yellow Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "Yellow Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": "chalk_yellow", + "ttb": 550, + "harvestType": "rock", + "id": 1760, + "name": "Yellow Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 717 + }, + "White Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "rootMetaDesc": "White Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1761, + "name": "White Chalk Slab", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "White Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "ttb": 550, + "harvestType": "rock", + "id": 1762, + "name": "White Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "White Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "ttb": 550, + "harvestType": "rock", + "id": 1763, + "name": "White Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "White Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "ttb": 550, + "harvestType": "rock", + "id": 1764, + "name": "White Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "White Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "ttb": 550, + "harvestType": "rock", + "id": 1765, + "name": "White Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "White Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": "chalk_white", + "ttb": 550, + "harvestType": "rock", + "id": 1766, + "name": "White Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 718 + }, + "Red Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "rootMetaDesc": "Red Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1767, + "name": "Red Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "Red Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "ttb": 550, + "harvestType": "rock", + "id": 1768, + "name": "Red Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "Red Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "ttb": 550, + "harvestType": "rock", + "id": 1769, + "name": "Red Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "Red Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "ttb": 550, + "harvestType": "rock", + "id": 1770, + "name": "Red Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "Red Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "ttb": 550, + "harvestType": "rock", + "id": 1771, + "name": "Red Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "Red Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": "chalk_red", + "ttb": 550, + "harvestType": "rock", + "id": 1772, + "name": "Red Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 719 + }, + "Purple Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "rootMetaDesc": "Purple Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1773, + "name": "Purple Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "Purple Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "ttb": 550, + "harvestType": "rock", + "id": 1774, + "name": "Purple Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "Purple Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "ttb": 550, + "harvestType": "rock", + "id": 1775, + "name": "Purple Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "Purple Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "ttb": 550, + "harvestType": "rock", + "id": 1776, + "name": "Purple Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "Purple Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "ttb": 550, + "harvestType": "rock", + "id": 1777, + "name": "Purple Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "Purple Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": "chalk_purple", + "ttb": 550, + "harvestType": "rock", + "id": 1778, + "name": "Purple Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 720 + }, + "Pink Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "rootMetaDesc": "Pink Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1779, + "name": "Pink Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "Pink Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "ttb": 550, + "harvestType": "rock", + "id": 1780, + "name": "Pink Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "Pink Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "ttb": 550, + "harvestType": "rock", + "id": 1781, + "name": "Pink Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "Pink Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "ttb": 550, + "harvestType": "rock", + "id": 1782, + "name": "Pink Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "Pink Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "ttb": 550, + "harvestType": "rock", + "id": 1783, + "name": "Pink Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "Pink Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": "chalk_pink", + "ttb": 550, + "harvestType": "rock", + "id": 1784, + "name": "Pink Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 721 + }, + "Orange Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "rootMetaDesc": "Orange Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1785, + "name": "Orange Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "Orange Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "ttb": 550, + "harvestType": "rock", + "id": 1786, + "name": "Orange Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "Orange Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "ttb": 550, + "harvestType": "rock", + "id": 1787, + "name": "Orange Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "Orange Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "ttb": 550, + "harvestType": "rock", + "id": 1788, + "name": "Orange Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "Orange Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "ttb": 550, + "harvestType": "rock", + "id": 1789, + "name": "Orange Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "Orange Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": "chalk_orange", + "ttb": 550, + "harvestType": "rock", + "id": 1790, + "name": "Orange Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 722 + }, + "Magenta Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "rootMetaDesc": "Magenta Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1791, + "name": "Magenta Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "Magenta Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "ttb": 550, + "harvestType": "rock", + "id": 1792, + "name": "Magenta Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "Magenta Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "ttb": 550, + "harvestType": "rock", + "id": 1793, + "name": "Magenta Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "Magenta Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "ttb": 550, + "harvestType": "rock", + "id": 1794, + "name": "Magenta Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "Magenta Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "ttb": 550, + "harvestType": "rock", + "id": 1795, + "name": "Magenta Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "Magenta Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": "chalk_magenta", + "ttb": 550, + "harvestType": "rock", + "id": 1796, + "name": "Magenta Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 723 + }, + "Lime Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "rootMetaDesc": "Lime Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1797, + "name": "Lime Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "Lime Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "ttb": 550, + "harvestType": "rock", + "id": 1798, + "name": "Lime Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "Lime Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "ttb": 550, + "harvestType": "rock", + "id": 1799, + "name": "Lime Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "Lime Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "ttb": 550, + "harvestType": "rock", + "id": 1800, + "name": "Lime Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "Lime Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "ttb": 550, + "harvestType": "rock", + "id": 1801, + "name": "Lime Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "Lime Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": "chalk_lime", + "ttb": 550, + "harvestType": "rock", + "id": 1802, + "name": "Lime Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 724 + }, + "Light Gray Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "rootMetaDesc": "Light Gray Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1803, + "name": "Light Gray Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "Light Gray Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1804, + "name": "Light Gray Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "Light Gray Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1805, + "name": "Light Gray Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "Light Gray Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1806, + "name": "Light Gray Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "Light Gray Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1807, + "name": "Light Gray Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "Light Gray Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1808, + "name": "Light Gray Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 725 + }, + "Light Blue Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "rootMetaDesc": "Light Blue Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1809, + "name": "Light Blue Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "Light Blue Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1810, + "name": "Light Blue Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "Light Blue Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1811, + "name": "Light Blue Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "Light Blue Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1812, + "name": "Light Blue Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "Light Blue Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1813, + "name": "Light Blue Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "Light Blue Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_light_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1814, + "name": "Light Blue Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 726 + }, + "Green Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "rootMetaDesc": "Green Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1815, + "name": "Green Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "Green Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "ttb": 550, + "harvestType": "rock", + "id": 1816, + "name": "Green Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "Green Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "ttb": 550, + "harvestType": "rock", + "id": 1817, + "name": "Green Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "Green Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "ttb": 550, + "harvestType": "rock", + "id": 1818, + "name": "Green Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "Green Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "ttb": 550, + "harvestType": "rock", + "id": 1819, + "name": "Green Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "Green Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": "chalk_green", + "ttb": 550, + "harvestType": "rock", + "id": 1820, + "name": "Green Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 727 + }, + "Gray Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "rootMetaDesc": "Gray Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1821, + "name": "Gray Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "Gray Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1822, + "name": "Gray Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "Gray Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1823, + "name": "Gray Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "Gray Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1824, + "name": "Gray Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "Gray Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1825, + "name": "Gray Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "Gray Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": "chalk_gray", + "ttb": 550, + "harvestType": "rock", + "id": 1826, + "name": "Gray Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 728 + }, + "Cyan Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "rootMetaDesc": "Cyan Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1827, + "name": "Cyan Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "Cyan Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "ttb": 550, + "harvestType": "rock", + "id": 1828, + "name": "Cyan Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "Cyan Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "ttb": 550, + "harvestType": "rock", + "id": 1829, + "name": "Cyan Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "Cyan Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "ttb": 550, + "harvestType": "rock", + "id": 1830, + "name": "Cyan Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "Cyan Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "ttb": 550, + "harvestType": "rock", + "id": 1831, + "name": "Cyan Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "Cyan Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": "chalk_cyan", + "ttb": 550, + "harvestType": "rock", + "id": 1832, + "name": "Cyan Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 729 + }, + "Brown Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "rootMetaDesc": "Brown Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1833, + "name": "Brown Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "Brown Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "ttb": 550, + "harvestType": "rock", + "id": 1834, + "name": "Brown Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "Brown Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "ttb": 550, + "harvestType": "rock", + "id": 1835, + "name": "Brown Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "Brown Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "ttb": 550, + "harvestType": "rock", + "id": 1836, + "name": "Brown Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "Brown Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "ttb": 550, + "harvestType": "rock", + "id": 1837, + "name": "Brown Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "Brown Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": "chalk_brown", + "ttb": 550, + "harvestType": "rock", + "id": 1838, + "name": "Brown Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 730 + }, + "Blue Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "rootMetaDesc": "Blue Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1839, + "name": "Blue Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "Blue Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1840, + "name": "Blue Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "Blue Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1841, + "name": "Blue Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "Blue Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1842, + "name": "Blue Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "Blue Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1843, + "name": "Blue Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "Blue Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": "chalk_blue", + "ttb": 550, + "harvestType": "rock", + "id": 1844, + "name": "Blue Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 731 + }, + "Black Chalk Slab": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "rootMetaDesc": "Black Chalk Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1845, + "name": "Black Chalk Slab", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "Black Chalk Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "ttb": 550, + "harvestType": "rock", + "id": 1846, + "name": "Black Chalk Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "Black Chalk Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "ttb": 550, + "harvestType": "rock", + "id": 1847, + "name": "Black Chalk Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "Black Chalk Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "ttb": 550, + "harvestType": "rock", + "id": 1848, + "name": "Black Chalk Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "Black Chalk Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "ttb": 550, + "harvestType": "rock", + "id": 1849, + "name": "Black Chalk Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "Black Chalk Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": "chalk_black", + "ttb": 550, + "harvestType": "rock", + "id": 1850, + "name": "Black Chalk Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 732 + }, + "Yellow Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Yellow Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1851, + "name": "Yellow Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "Yellow Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1852, + "name": "Yellow Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "Yellow Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1853, + "name": "Yellow Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "Yellow Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1854, + "name": "Yellow Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "Yellow Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1855, + "name": "Yellow Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "Yellow Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:yellow)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_yellow", + "chalk_bricks_yellow" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1856, + "name": "Yellow Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 749, + 733 + ] + }, + "White Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "White Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1857, + "name": "White Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "White Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1858, + "name": "White Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "White Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1859, + "name": "White Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "White Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1860, + "name": "White Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "White Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1861, + "name": "White Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "White Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:white)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:white)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_white", + "chalk_bricks_white" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1862, + "name": "White Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 750, + 734 + ] + }, + "Red Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Red Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1863, + "name": "Red Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "Red Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1864, + "name": "Red Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "Red Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1865, + "name": "Red Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "Red Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1866, + "name": "Red Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "Red Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1867, + "name": "Red Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "Red Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:red)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:red)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_red", + "chalk_bricks_red" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1868, + "name": "Red Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 751, + 735 + ] + }, + "Purple Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Purple Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1869, + "name": "Purple Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "Purple Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1870, + "name": "Purple Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "Purple Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1871, + "name": "Purple Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "Purple Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1872, + "name": "Purple Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "Purple Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1873, + "name": "Purple Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "Purple Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:purple)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:purple)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_purple", + "chalk_bricks_purple" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1874, + "name": "Purple Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 752, + 736 + ] + }, + "Pink Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Pink Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1875, + "name": "Pink Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "Pink Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1876, + "name": "Pink Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "Pink Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1877, + "name": "Pink Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "Pink Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1878, + "name": "Pink Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "Pink Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1879, + "name": "Pink Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "Pink Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:pink)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:pink)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_pink", + "chalk_bricks_pink" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1880, + "name": "Pink Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 753, + 737 + ] + }, + "Orange Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Orange Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1881, + "name": "Orange Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "Orange Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1882, + "name": "Orange Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "Orange Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1883, + "name": "Orange Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "Orange Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1884, + "name": "Orange Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "Orange Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1885, + "name": "Orange Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "Orange Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:orange)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:orange)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_orange", + "chalk_bricks_orange" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1886, + "name": "Orange Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 754, + 738 + ] + }, + "Magenta Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Magenta Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1887, + "name": "Magenta Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "Magenta Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1888, + "name": "Magenta Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "Magenta Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1889, + "name": "Magenta Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "Magenta Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1890, + "name": "Magenta Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "Magenta Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1891, + "name": "Magenta Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "Magenta Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:magenta)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_magenta", + "chalk_bricks_magenta" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1892, + "name": "Magenta Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 755, + 739 + ] + }, + "Lime Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Lime Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1893, + "name": "Lime Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "Lime Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1894, + "name": "Lime Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "Lime Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1895, + "name": "Lime Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "Lime Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1896, + "name": "Lime Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "Lime Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1897, + "name": "Lime Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "Lime Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:lime)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:lime)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_lime", + "chalk_bricks_lime" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1898, + "name": "Lime Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 756, + 740 + ] + }, + "Light Gray Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Light Gray Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1899, + "name": "Light Gray Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "Light Gray Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1900, + "name": "Light Gray Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "Light Gray Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1901, + "name": "Light Gray Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "Light Gray Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1902, + "name": "Light Gray Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "Light Gray Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1903, + "name": "Light Gray Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "Light Gray Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_gray", + "chalk_bricks_light_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1904, + "name": "Light Gray Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 757, + 741 + ] + }, + "Light Blue Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Light Blue Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1905, + "name": "Light Blue Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "Light Blue Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1906, + "name": "Light Blue Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "Light Blue Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1907, + "name": "Light Blue Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "Light Blue Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1908, + "name": "Light Blue Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "Light Blue Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1909, + "name": "Light Blue Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "Light Blue Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:light_blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_light_blue", + "chalk_bricks_light_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1910, + "name": "Light Blue Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 758, + 742 + ] + }, + "Green Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Green Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1911, + "name": "Green Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "Green Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1912, + "name": "Green Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "Green Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1913, + "name": "Green Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "Green Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1914, + "name": "Green Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "Green Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1915, + "name": "Green Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "Green Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:green)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:green)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_green", + "chalk_bricks_green" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1916, + "name": "Green Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 759, + 743 + ] + }, + "Gray Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Gray Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1917, + "name": "Gray Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "Gray Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1918, + "name": "Gray Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "Gray Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1919, + "name": "Gray Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "Gray Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1920, + "name": "Gray Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "Gray Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1921, + "name": "Gray Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "Gray Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:gray)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:gray)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_gray", + "chalk_bricks_gray" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1922, + "name": "Gray Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 760, + 744 + ] + }, + "Cyan Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Cyan Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1923, + "name": "Cyan Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "Cyan Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1924, + "name": "Cyan Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "Cyan Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1925, + "name": "Cyan Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "Cyan Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1926, + "name": "Cyan Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "Cyan Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1927, + "name": "Cyan Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "Cyan Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:cyan)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_cyan", + "chalk_bricks_cyan" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1928, + "name": "Cyan Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 761, + 745 + ] + }, + "Brown Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Brown Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1929, + "name": "Brown Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "Brown Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1930, + "name": "Brown Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "Brown Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1931, + "name": "Brown Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "Brown Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1932, + "name": "Brown Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "Brown Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1933, + "name": "Brown Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "Brown Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:brown)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:brown)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_brown", + "chalk_bricks_brown" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1934, + "name": "Brown Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 762, + 746 + ] + }, + "Blue Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Blue Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1935, + "name": "Blue Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "Blue Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1936, + "name": "Blue Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "Blue Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1937, + "name": "Blue Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "Blue Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1938, + "name": "Blue Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "Blue Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1939, + "name": "Blue Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "Blue Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:blue)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:blue)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_blue", + "chalk_bricks_blue" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1940, + "name": "Blue Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 763, + 747 + ] + }, + "Black Chalk Bricks Slab": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "rootMetaDesc": "Black Chalk Bricks Slab|meta|rot1|bot", + "ttb": 550, + "harvestType": "rock", + "id": 1941, + "name": "Black Chalk Bricks Slab", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "Black Chalk Bricks Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1942, + "name": "Black Chalk Bricks Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "Black Chalk Bricks Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1943, + "name": "Black Chalk Bricks Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "Black Chalk Bricks Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1944, + "name": "Black Chalk Bricks Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "Black Chalk Bricks Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1945, + "name": "Black Chalk Bricks Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "Black Chalk Bricks Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:colouredChalkBricksSlab", + "params": { + "colour": "$t(colour:black)" + } + }, + "description": { + "translationKey": "item:colouredChalkBricksSlabDescription", + "params": { + "colour": "$t(colour:black)" + } + }, + "model": "Slab", + "textureInfo": [ + "chalk_bricks_slab_side_black", + "chalk_bricks_black" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "ttb": 550, + "harvestType": "rock", + "id": 1946, + "name": "Black Chalk Bricks Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 764, + 748 + ] + }, + "Leaf Bed": { + "displayName": { + "translationKey": "item:leafBed" + }, + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "rootMetaDesc": "Leaf Bed|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1947, + "name": "Leaf Bed", + "stackable": true, + "meta": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Leaf Bed|meta|rot2": { + "displayName": { + "translationKey": "item:leafBed" + }, + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1948, + "name": "Leaf Bed|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Leaf Bed|meta|rot3": { + "displayName": { + "translationKey": "item:leafBed" + }, + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1949, + "name": "Leaf Bed|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Leaf Bed|meta|rot4": { + "displayName": { + "translationKey": "item:leafBed" + }, + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1950, + "name": "Leaf Bed|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Leaf Bed Head": { + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Leaf Bed", + "rootMetaDesc": "_Leaf Bed Head|meta|rot1", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1951, + "name": "_Leaf Bed Head", + "stackable": true, + "meta": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Leaf Bed Head|meta|rot2": { + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Leaf Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1952, + "name": "_Leaf Bed Head|meta|rot2", + "stackable": true, + "meta": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Leaf Bed Head|meta|rot3": { + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Leaf Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1953, + "name": "_Leaf Bed Head|meta|rot3", + "stackable": true, + "meta": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Leaf Bed Head|meta|rot4": { + "ttb": 240, + "itemTexture": "leaf_bed", + "model": "rotatable", + "harvestType": "wood", + "drops": "Leaf Bed", + "particlesIgnoreBlack": true, + "modelScale": 5, + "blockModel": "Leaf Bed", + "id": 1954, + "name": "_Leaf Bed Head|meta|rot4", + "stackable": true, + "meta": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Grass Block": { + "displayName": { + "translationKey": "item:jungleGrassBlock" + }, + "ttb": 720, + "textureInfo": "jungle_grass_block", + "harvestType": "granule", + "soundType": { + "break": "grass", + "place": "grass" + }, + "id": 1955, + "name": "Jungle Grass Block", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Block", + "rootId": 1955, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 765 + }, + "Jungle Grass Slab": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "rootMetaDesc": "Jungle Grass Slab|meta|rot1|bot", + "id": 1956, + "name": "Jungle Grass Slab", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "Jungle Grass Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1957, + "name": "Jungle Grass Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "Jungle Grass Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1958, + "name": "Jungle Grass Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "Jungle Grass Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1959, + "name": "Jungle Grass Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "Jungle Grass Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1960, + "name": "Jungle Grass Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "Jungle Grass Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:jungleGrassSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_jungle_grass_top_side", + "jungle_grass_block" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "granule", + "id": 1961, + "name": "Jungle Grass Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 766, + 765 + ] + }, + "Jungle Tall Grass": { + "displayName": { + "translationKey": "item:jungleTallGrass" + }, + "ttb": 1, + "textureInfo": "jungle_tall_grass_bottom", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Jungle Tall Grass" + }, + "itemTexture": "jungle_tall_grass_bottom", + "canBePlacedOver": true, + "id": 1962, + "name": "Jungle Tall Grass", + "stackable": true, + "meta": { + "rootName": "Jungle Tall Grass", + "rootId": 1962, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Jungle Tall Grass|Top": { + "ttb": 1, + "textureInfo": "jungle_tall_grass_top", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Jungle Tall Grass" + }, + "itemTexture": "jungle_tall_grass_top", + "canBePlacedOver": true, + "id": 1963, + "name": "Jungle Tall Grass|Top", + "stackable": true, + "meta": { + "rootName": "Jungle Tall Grass", + "rootId": 1962, + "metaStr": "Top", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Catnip": { + "displayName": { + "translationKey": "item:catnip" + }, + "ttb": 1, + "textureInfo": "catnip", + "model": "CentreCross", + "heldItemScale": 0.5, + "TB": false, + "drops": null, + "harvestType": "cuttable", + "specialToolDrop": { + "tool": "Shears", + "drops": "Catnip" + }, + "canBePlacedOver": true, + "id": 1964, + "name": "Catnip", + "stackable": true, + "meta": { + "rootName": "Catnip", + "rootId": 1964, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Log": { + "displayName": { + "translationKey": "item:mangoLog" + }, + "ttb": 2400, + "textureInfo": "log_mango", + "harvestType": "wood", + "id": 1965, + "name": "Mango Log", + "stackable": true, + "meta": { + "rootName": "Mango Log", + "rootId": 1965, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 767 + }, + "Barkless Mango Log": { + "displayName": { + "translationKey": "item:barklessMangoLog" + }, + "ttb": 2000, + "textureInfo": "stripped_mango_log", + "harvestType": "wood", + "id": 1966, + "name": "Barkless Mango Log", + "stackable": true, + "meta": { + "rootName": "Barkless Mango Log", + "rootId": 1966, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 768 + }, + "Barkless Mango Log|TreeBase|Mango": { + "ttb": 2000, + "textureInfo": "stripped_mango_log", + "harvestType": "wood", + "drops": "Barkless Mango Log", + "id": 1967, + "name": "Barkless Mango Log|TreeBase|Mango", + "stackable": true, + "meta": { + "rootName": "Barkless Mango Log", + "rootId": 1966, + "metaStr": "TreeBase|Mango", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Mango", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 768 + }, + "Mango Wood Planks": { + "displayName": { + "translationKey": "item:mangoWoodPlanks" + }, + "ttb": 1800, + "textureInfo": "planks_mango", + "harvestType": "wood", + "id": 1968, + "name": "Mango Wood Planks", + "stackable": true, + "meta": { + "rootName": "Mango Wood Planks", + "rootId": 1968, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 769 + }, + "Mango Leaves": { + "displayName": { + "translationKey": "item:mangoLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_mango", + "harvestType": "cuttable", + "id": 1969, + "name": "Mango Leaves", + "stackable": true, + "meta": { + "rootName": "Mango Leaves", + "rootId": 1969, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 770 + }, + "Mango Door": { + "displayName": { + "translationKey": "item:mangoDoor" + }, + "ttb": 3600, + "itemTexture": "mango_door", + "model": "door", + "harvestType": "wood", + "rootMetaDesc": "Mango Door|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "Mango Door", + "id": 1970, + "name": "Mango Door", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Door|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1971, + "name": "Mango Door|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Door|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 1972, + "name": "Mango Door|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Door|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1973, + "name": "Mango Door|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Door|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 1974, + "name": "Mango Door|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Door|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1975, + "name": "Mango Door|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Door|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "id": 1976, + "name": "Mango Door|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Door|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "TB": false, + "id": 1977, + "name": "Mango Door|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Mango Door Top": { + "ttb": 3600, + "itemTexture": "mango_door", + "harvestType": "wood", + "model": "door", + "drops": "Mango Door", + "rootMetaDesc": "_Mango Door Top|meta|rot1|closed", + "particlesIgnoreBlack": true, + "blockModel": "_Mango Door Top", + "id": 1978, + "name": "_Mango Door Top", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Mango Door Top|meta|rot1|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "TB": false, + "id": 1979, + "name": "_Mango Door Top|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Mango Door Top|meta|rot2|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "id": 1980, + "name": "_Mango Door Top|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Mango Door Top|meta|rot2|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "TB": false, + "id": 1981, + "name": "_Mango Door Top|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Mango Door Top|meta|rot3|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "id": 1982, + "name": "_Mango Door Top|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Mango Door Top|meta|rot3|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "TB": false, + "id": 1983, + "name": "_Mango Door Top|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Mango Door Top|meta|rot4|closed": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "id": 1984, + "name": "_Mango Door Top|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "_Mango Door Top|meta|rot4|open": { + "ttb": 3600, + "harvestType": "wood", + "drops": "Mango Door", + "TB": false, + "id": 1985, + "name": "_Mango Door Top|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Trapdoor": { + "displayName": { + "translationKey": "item:mangoTrapdoor" + }, + "ttb": 2800, + "itemTexture": "mango_trapdoor", + "model": "trapdoor", + "harvestType": "wood", + "rootMetaDesc": "Mango Trapdoor|meta|rot1|closed", + "blockModel": "Mango Trapdoor", + "heldItemScale": 0.5, + "blockModelItem": true, + "id": 1986, + "name": "Mango Trapdoor", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Trapdoor|meta|rot1|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1987, + "name": "Mango Trapdoor|meta|rot1|open", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Trapdoor|meta|rot2|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 1988, + "name": "Mango Trapdoor|meta|rot2|closed", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Trapdoor|meta|rot2|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1989, + "name": "Mango Trapdoor|meta|rot2|open", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Trapdoor|meta|rot3|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 1990, + "name": "Mango Trapdoor|meta|rot3|closed", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Trapdoor|meta|rot3|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1991, + "name": "Mango Trapdoor|meta|rot3|open", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Trapdoor|meta|rot4|closed": { + "ttb": 2800, + "harvestType": "wood", + "id": 1992, + "name": "Mango Trapdoor|meta|rot4|closed", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Trapdoor|meta|rot4|open": { + "ttb": 2800, + "harvestType": "wood", + "TB": false, + "id": 1993, + "name": "Mango Trapdoor|meta|rot4|open", + "stackable": true, + "meta": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Sapling": { + "displayName": { + "translationKey": "item:mangoSapling" + }, + "ttb": 1, + "textureInfo": "mango_sapling", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "mango_sapling", + "id": 1994, + "name": "Mango Sapling", + "stackable": true, + "meta": { + "rootName": "Mango Sapling", + "rootId": 1994, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Log|TreeBase|Mango": { + "ttb": 2400, + "textureInfo": "log_mango", + "harvestType": "wood", + "drops": "Mango Log", + "id": 1995, + "name": "Mango Log|TreeBase|Mango", + "stackable": true, + "meta": { + "rootName": "Mango Log", + "rootId": 1965, + "metaStr": "TreeBase|Mango", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Mango", + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 767 + }, + "Mango Leaves|TreeCanopy": { + "ttb": 350, + "textureInfo": "leaves_mango", + "harvestType": "cuttable", + "drops": "Mango Leaves", + "id": 1996, + "name": "Mango Leaves|TreeCanopy", + "stackable": true, + "meta": { + "rootName": "Mango Leaves", + "rootId": 1969, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 770 + }, + "Mango Slab": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "rootMetaDesc": "Mango Slab|meta|rot1|bot", + "id": 1997, + "name": "Mango Slab", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "Mango Slab|meta|rot1|top": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1998, + "name": "Mango Slab|meta|rot1|top", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "Mango Slab|meta|rot1|side": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 1999, + "name": "Mango Slab|meta|rot1|side", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "Mango Slab|meta|rot2|side": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 2000, + "name": "Mango Slab|meta|rot2|side", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "Mango Slab|meta|rot3|side": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 2001, + "name": "Mango Slab|meta|rot3|side", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "Mango Slab|meta|rot4|side": { + "displayName": { + "translationKey": "item:mangoSlab" + }, + "ttb": 1200, + "textureInfo": [ + "slab_mango_side", + "planks_mango" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "model": "Slab", + "harvestType": "wood", + "id": 2002, + "name": "Mango Slab|meta|rot4|side", + "stackable": true, + "meta": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 771, + 769 + ] + }, + "Mango Ladder": { + "displayName": { + "translationKey": "item:mangoLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_mango", + "model": "rotatableOffset", + "harvestType": "wood", + "rootMetaDesc": "Mango Ladder|meta|rot1", + "modelScale": 1, + "TB": false, + "blockModel": "Mango Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 2003, + "name": "Mango Ladder", + "stackable": true, + "meta": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Ladder|meta|rot2": { + "displayName": { + "translationKey": "item:mangoLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_mango", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Mango Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 2004, + "name": "Mango Ladder|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Ladder|meta|rot3": { + "displayName": { + "translationKey": "item:mangoLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_mango", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Mango Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 2005, + "name": "Mango Ladder|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Ladder|meta|rot4": { + "displayName": { + "translationKey": "item:mangoLadder" + }, + "ttb": 1000, + "itemTexture": "ladder_mango", + "model": "rotatableOffset", + "harvestType": "wood", + "modelScale": 1, + "TB": false, + "blockModel": "Mango Ladder", + "heldItemScale": 1, + "blockModelItem": true, + "id": 2006, + "name": "Mango Ladder|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Mango Block": { + "displayName": { + "translationKey": "item:mangoBlock" + }, + "ttb": 600, + "textureInfo": [ + "mango_block_side", + "mango_block_top", + "mango_block_bottom" + ], + "texturePerSide": [ + 0, + 0, + 1, + 2, + 0, + 0 + ], + "harvestType": "wood", + "id": 2007, + "name": "Mango Block", + "stackable": true, + "meta": { + "rootName": "Mango Block", + "rootId": 2007, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 772, + 773, + 774 + ] + }, + "Banana Block": { + "displayName": { + "translationKey": "item:bananaBlock" + }, + "ttb": 1200, + "textureInfo": [ + "banana_block_side", + "banana_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "harvestType": "wood", + "id": 2008, + "name": "Banana Block", + "stackable": true, + "meta": { + "rootName": "Banana Block", + "rootId": 2008, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 775, + 776 + ] + }, + "Banana Seeds": { + "displayName": { + "translationKey": "item:bananaSeeds" + }, + "ttb": 400, + "textureInfo": "banana_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "itemTexture": "banana_seeds", + "description": { + "translationKey": "item:bananaSeedsDescription" + }, + "id": 2009, + "name": "Banana Seeds", + "stackable": true, + "meta": { + "rootName": "Banana Seeds", + "rootId": 2009, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Banana Seeds|Growing": { + "ttb": 400, + "textureInfo": "banana_stem", + "model": "CentreCross", + "TB": false, + "harvestType": "cuttable", + "drops": "Banana Seeds", + "id": 2010, + "name": "Banana Seeds|Growing", + "stackable": true, + "meta": { + "rootName": "Banana Seeds", + "rootId": 2009, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Banana Stem": { + "displayName": { + "translationKey": "item:attachedBananaStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_banana_stem_wrapper", + "attached_banana_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Banana Seeds", + "rootMetaDesc": "Attached Banana Stem|meta|rot1", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 2011, + "name": "Attached Banana Stem", + "stackable": true, + "meta": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Banana Stem|meta|rot2": { + "displayName": { + "translationKey": "item:attachedBananaStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_banana_stem_wrapper", + "attached_banana_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Banana Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 2012, + "name": "Attached Banana Stem|meta|rot2", + "stackable": true, + "meta": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Banana Stem|meta|rot3": { + "displayName": { + "translationKey": "item:attachedBananaStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_banana_stem_wrapper", + "attached_banana_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Banana Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 2013, + "name": "Attached Banana Stem|meta|rot3", + "stackable": true, + "meta": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Attached Banana Stem|meta|rot4": { + "displayName": { + "translationKey": "item:attachedBananaStem" + }, + "ttb": 400, + "textureInfo": [ + "attached_banana_stem_wrapper", + "attached_banana_stem" + ], + "model": "CustomPlanes|rotatable", + "TB": false, + "harvestType": "cuttable", + "drops": "Banana Seeds", + "customPlanesInfo": [ + { + "textureIdx": 0, + "yRot": 0.7853981633974483 + }, + { + "textureIdx": 0, + "yRot": 2.356194490192345 + }, + { + "textureIdx": 1, + "yRot": 4.71238898038469 + } + ], + "id": 2014, + "name": "Attached Banana Stem|meta|rot4", + "stackable": true, + "meta": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Dangling Rope": { + "displayName": { + "translationKey": "item:danglingRope" + }, + "ttb": 225, + "itemTexture": "dangling_rope", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "Dangling Rope", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375, + "Re": true + }, + "description": { + "translationKey": "item:ceilingClimbableDescription" + }, + "id": 2015, + "name": "Dangling Rope", + "stackable": true, + "meta": { + "rootName": "Dangling Rope", + "rootId": 2015, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Dangling Vine": { + "displayName": { + "translationKey": "item:danglingVine" + }, + "ttb": 225, + "itemTexture": "dangling_vine", + "model": "CustomModel", + "harvestType": "cuttable", + "TB": false, + "blockModel": "Dangling Vine", + "modelScale": 10, + "customModelInfo": { + "yOffset": -0.4375, + "Re": true + }, + "description": { + "translationKey": "item:ceilingClimbableDescription" + }, + "id": 2016, + "name": "Dangling Vine", + "stackable": true, + "meta": { + "rootName": "Dangling Vine", + "rootId": 2016, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } + }, + "Gorilla Spawner Block": { + "displayName": { + "translationKey": "item:gorillaMobSpawnerBlock" + }, + "description": { + "translationKey": "item:gorillaMobSpawnerBlockDescription" + }, + "itemTexture": "gorilla_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Gorilla Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 2017, + "name": "Gorilla Spawner Block", + "stackable": true, + "meta": { + "rootName": "Gorilla Spawner Block", + "rootId": 2017, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Wildcat Spawner Block": { + "displayName": { + "translationKey": "item:wildcatMobSpawnerBlock" + }, + "description": { + "translationKey": "item:wildcatMobSpawnerBlockDescription" + }, + "itemTexture": "wildcat_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_neutral_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Wildcat Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 2018, + "name": "Wildcat Spawner Block", + "stackable": true, + "meta": { + "rootName": "Wildcat Spawner Block", + "rootId": 2018, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 715, + 699 + ] + }, + "Fruity Maple Leaves": { + "displayName": { + "translationKey": "item:fruityMapleLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_maple_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Maple Leaves" + }, + "id": 2019, + "name": "Fruity Maple Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Maple Leaves", + "rootId": 2019, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 777 + }, + "Pine Cone Leaves": { + "displayName": { + "translationKey": "item:pineConeLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_pine_cone", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Pine Cone Leaves" + }, + "id": 2020, + "name": "Pine Cone Leaves", + "stackable": true, + "meta": { + "rootName": "Pine Cone Leaves", + "rootId": 2020, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 778 + }, + "Fruity Plum Leaves": { + "displayName": { + "translationKey": "item:fruityPlumLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_plum_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Plum Leaves" + }, + "id": 2021, + "name": "Fruity Plum Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Plum Leaves", + "rootId": 2021, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 779 + }, + "Fruity Palm Leaves": { + "displayName": { + "translationKey": "item:fruityPalmLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_palm_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Palm Leaves" + }, + "id": 2022, + "name": "Fruity Palm Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Palm Leaves", + "rootId": 2022, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 780 + }, + "Fruity Pear Leaves": { + "displayName": { + "translationKey": "item:fruityPearLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_pear_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Pear Leaves" + }, + "id": 2023, + "name": "Fruity Pear Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Pear Leaves", + "rootId": 2023, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 781 + }, + "Fruity Cherry Leaves": { + "displayName": { + "translationKey": "item:fruityCherryLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_cherry_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Cherry Leaves" + }, + "id": 2024, + "name": "Fruity Cherry Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Cherry Leaves", + "rootId": 2024, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 782 + }, + "Fruity Mango Leaves": { + "displayName": { + "translationKey": "item:fruityMangoLeaves" + }, + "ttb": 350, + "textureInfo": "leaves_mango_fruity", + "harvestType": "cuttable", + "drops": null, + "specialToolDrop": { + "tool": "Shears", + "drops": "Fruity Mango Leaves" + }, + "id": 2025, + "name": "Fruity Mango Leaves", + "stackable": true, + "meta": { + "rootName": "Fruity Mango Leaves", + "rootId": 2025, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": 783 + }, + "Draugr Huntress Spawner Block": { + "displayName": { + "translationKey": "item:draugrHuntressMobSpawnerBlock" + }, + "description": { + "translationKey": "item:draugrHuntressMobSpawnerBlockDescription" + }, + "itemTexture": "draugr_huntress_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Draugr Huntress Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 2026, + "name": "Draugr Huntress Spawner Block", + "stackable": true, + "meta": { + "rootName": "Draugr Huntress Spawner Block", + "rootId": 2026, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Magma Golem Spawner Block": { + "displayName": { + "translationKey": "item:magmaGolemMobSpawnerBlock" + }, + "description": { + "translationKey": "item:magmaGolemMobSpawnerBlockDescription" + }, + "itemTexture": "magma_golem_spawner_block_icon", + "ttb": 5000, + "textureInfo": [ + "mob_spawner_hostile_block_side", + "mob_spawner_block_top" + ], + "texturePerSide": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "transTex": true, + "harvestType": "rock", + "drops": null, + "specialToolDrop": { + "tool": "Moonstone Pickaxe", + "drops": "Magma Golem Spawner Block" + }, + "particlesIgnoreBlack": true, + "onMinedAura": 75, + "twoDBlockItem": true, + "id": 2027, + "name": "Magma Golem Spawner Block", + "stackable": true, + "meta": { + "rootName": "Magma Golem Spawner Block", + "rootId": 2027, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 700, + 699 + ] + }, + "Black Portal": { + "displayName": { + "translationKey": "item:blackPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "black_portal0", + "black_portal1", + "black_portal2", + "black_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2028, + "name": "Black Portal", + "stackable": true, + "meta": { + "rootName": "Black Portal", + "rootId": 2028, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 1, + 25, + 26, + 27 + ] + }, + "Blue Portal": { + "displayName": { + "translationKey": "item:bluePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "blue_portal0", + "blue_portal1", + "blue_portal2", + "blue_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2029, + "name": "Blue Portal", + "stackable": true, + "meta": { + "rootName": "Blue Portal", + "rootId": 2029, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 2, + 28, + 29, + 30 + ] + }, + "Brown Portal": { + "displayName": { + "translationKey": "item:brownPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "brown_portal0", + "brown_portal1", + "brown_portal2", + "brown_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2030, + "name": "Brown Portal", + "stackable": true, + "meta": { + "rootName": "Brown Portal", + "rootId": 2030, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 3, + 31, + 32, + 33 + ] + }, + "Cyan Portal": { + "displayName": { + "translationKey": "item:cyanPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "cyan_portal0", + "cyan_portal1", + "cyan_portal2", + "cyan_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2031, + "name": "Cyan Portal", + "stackable": true, + "meta": { + "rootName": "Cyan Portal", + "rootId": 2031, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 4, + 34, + 35, + 36 + ] + }, + "Gray Portal": { + "displayName": { + "translationKey": "item:grayPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "gray_portal0", + "gray_portal1", + "gray_portal2", + "gray_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2032, + "name": "Gray Portal", + "stackable": true, + "meta": { + "rootName": "Gray Portal", + "rootId": 2032, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 5, + 37, + 38, + 39 + ] + }, + "Green Portal": { + "displayName": { + "translationKey": "item:greenPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "green_portal0", + "green_portal1", + "green_portal2", + "green_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2033, + "name": "Green Portal", + "stackable": true, + "meta": { + "rootName": "Green Portal", + "rootId": 2033, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 6, + 40, + 41, + 42 + ] + }, + "Grey Portal": { + "displayName": { + "translationKey": "item:greyPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "grey_portal0", + "grey_portal1", + "grey_portal2", + "grey_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2034, + "name": "Grey Portal", + "stackable": true, + "meta": { + "rootName": "Grey Portal", + "rootId": 2034, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 7, + 43, + 44, + 45 + ] + }, + "Light Blue Portal": { + "displayName": { + "translationKey": "item:lightbluePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "lightblue_portal0", + "lightblue_portal1", + "lightblue_portal2", + "lightblue_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2035, + "name": "Light Blue Portal", + "stackable": true, + "meta": { + "rootName": "Light Blue Portal", + "rootId": 2035, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 8, + 46, + 47, + 48 + ] + }, + "Light Gray Portal": { + "displayName": { + "translationKey": "item:lightgrayPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "lightgray_portal0", + "lightgray_portal1", + "lightgray_portal2", + "lightgray_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2036, + "name": "Light Gray Portal", + "stackable": true, + "meta": { + "rootName": "Light Gray Portal", + "rootId": 2036, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 9, + 49, + 50, + 51 + ] + }, + "Lime Portal": { + "displayName": { + "translationKey": "item:limePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "lime_portal0", + "lime_portal1", + "lime_portal2", + "lime_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2037, + "name": "Lime Portal", + "stackable": true, + "meta": { + "rootName": "Lime Portal", + "rootId": 2037, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 10, + 52, + 53, + 54 + ] + }, + "Magenta Portal": { + "displayName": { + "translationKey": "item:magentaPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "magenta_portal0", + "magenta_portal1", + "magenta_portal2", + "magenta_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2038, + "name": "Magenta Portal", + "stackable": true, + "meta": { + "rootName": "Magenta Portal", + "rootId": 2038, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 11, + 55, + 56, + 57 + ] + }, + "Orange Portal": { + "displayName": { + "translationKey": "item:orangePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "orange_portal0", + "orange_portal1", + "orange_portal2", + "orange_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2039, + "name": "Orange Portal", + "stackable": true, + "meta": { + "rootName": "Orange Portal", + "rootId": 2039, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 12, + 58, + 59, + 60 + ] + }, + "Pink Portal": { + "displayName": { + "translationKey": "item:pinkPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "pink_portal0", + "pink_portal1", + "pink_portal2", + "pink_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2040, + "name": "Pink Portal", + "stackable": true, + "meta": { + "rootName": "Pink Portal", + "rootId": 2040, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 13, + 61, + 62, + 63 + ] + }, + "Purple Portal": { + "displayName": { + "translationKey": "item:purplePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "purple_portal0", + "purple_portal1", + "purple_portal2", + "purple_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2041, + "name": "Purple Portal", + "stackable": true, + "meta": { + "rootName": "Purple Portal", + "rootId": 2041, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 14, + 64, + 65, + 66 + ] + }, + "Red Portal": { + "displayName": { + "translationKey": "item:redPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "red_portal0", + "red_portal1", + "red_portal2", + "red_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2042, + "name": "Red Portal", + "stackable": true, + "meta": { + "rootName": "Red Portal", + "rootId": 2042, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 15, + 67, + 68, + 69 + ] + }, + "White Portal": { + "displayName": { + "translationKey": "item:whitePortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "white_portal0", + "white_portal1", + "white_portal2", + "white_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2043, + "name": "White Portal", + "stackable": true, + "meta": { + "rootName": "White Portal", + "rootId": 2043, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 16, + 70, + 71, + 72 + ] + }, + "Yellow Portal": { + "displayName": { + "translationKey": "item:yellowPortal" + }, + "textureInfo": { + "colour": [ + 0, + 0, + 0, + 0.7 + ], + "animTextures": [ + "yellow_portal0", + "yellow_portal1", + "yellow_portal2", + "yellow_portal3" + ], + "animationInterval": 300 + }, + "drops": null, + "harvestType": "rock", + "TB": true, + "id": 2044, + "name": "Yellow Portal", + "stackable": true, + "meta": { + "rootName": "Yellow Portal", + "rootId": 2044, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "atlasIdx": [ + 17, + 73, + 74, + 75 + ] + } +} \ No newline at end of file diff --git a/itemMetainfo.json b/itemMetainfo.json new file mode 100644 index 0000000..afa69d1 --- /dev/null +++ b/itemMetainfo.json @@ -0,0 +1,40022 @@ +{ + "1": { + "rootName": "Unloaded", + "rootId": 1, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2": { + "rootName": "Dirt", + "rootId": 2, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "3": { + "rootName": "Messy Dirt", + "rootId": 3, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "4": { + "rootName": "Grass Block", + "rootId": 4, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "5": { + "rootName": "Sand", + "rootId": 5, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "6": { + "rootName": "Clay", + "rootId": 6, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "7": { + "rootName": "Gravel", + "rootId": 7, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "8": { + "rootName": "Snow", + "rootId": 8, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "9": { + "rootName": "Maple Log", + "rootId": 9, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "10": { + "rootName": "Pine Log", + "rootId": 10, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "11": { + "rootName": "Plum Log", + "rootId": 11, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "12": { + "rootName": "Cedar Log", + "rootId": 12, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "13": { + "rootName": "Aspen Log", + "rootId": 13, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "14": { + "rootName": "Jungle Log", + "rootId": 14, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "15": { + "rootName": "Maple Wood Planks", + "rootId": 15, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "16": { + "rootName": "Aspen Wood Planks", + "rootId": 16, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "17": { + "rootName": "Plum Wood Planks", + "rootId": 17, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "18": { + "rootName": "Jungle Wood Planks", + "rootId": 18, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "19": { + "rootName": "Pine Wood Planks", + "rootId": 19, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "20": { + "rootName": "Cedar Wood Planks", + "rootId": 20, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "21": { + "rootName": "Barkless Maple Log", + "rootId": 21, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "22": { + "rootName": "Barkless Aspen Log", + "rootId": 22, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "23": { + "rootName": "Barkless Plum Log", + "rootId": 23, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "24": { + "rootName": "Barkless Jungle Log", + "rootId": 24, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "25": { + "rootName": "Barkless Pine Log", + "rootId": 25, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "26": { + "rootName": "Barkless Cedar Log", + "rootId": 26, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "27": { + "rootName": "free_placeholder2", + "rootId": 27, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "28": { + "rootName": "Stone", + "rootId": 28, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "29": { + "rootName": "Messy Stone", + "rootId": 29, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "30": { + "rootName": "free_placeholder", + "rootId": 30, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "31": { + "rootName": "Smooth Stone", + "rootId": 31, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "32": { + "rootName": "Diorite", + "rootId": 32, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "33": { + "rootName": "Smooth Diorite", + "rootId": 33, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "34": { + "rootName": "Andesite", + "rootId": 34, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "35": { + "rootName": "Smooth Andesite", + "rootId": 35, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "36": { + "rootName": "Granite", + "rootId": 36, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "37": { + "rootName": "Smooth Granite", + "rootId": 37, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "38": { + "rootName": "Sandstone", + "rootId": 38, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "39": { + "rootName": "Yellowstone", + "rootId": 39, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "40": { + "rootName": "Coal Ore", + "rootId": 40, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "41": { + "rootName": "Iron Ore", + "rootId": 41, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "42": { + "rootName": "Gold Ore", + "rootId": 42, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "43": { + "rootName": "Lapis Lazuli Ore", + "rootId": 43, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "44": { + "rootName": "Emerald Ore", + "rootId": 44, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "45": { + "rootName": "Diamond Ore", + "rootId": 45, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "46": { + "rootName": "Block of Coal", + "rootId": 46, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "47": { + "rootName": "Block of Iron", + "rootId": 47, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "48": { + "rootName": "Block of Gold", + "rootId": 48, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "49": { + "rootName": "Block of Lapis Lazuli", + "rootId": 49, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "50": { + "rootName": "Block of Emerald", + "rootId": 50, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "51": { + "rootName": "White Wool", + "rootId": 51, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "52": { + "rootName": "Orange Wool", + "rootId": 52, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "53": { + "rootName": "Magenta Wool", + "rootId": 53, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "54": { + "rootName": "Light Blue Wool", + "rootId": 54, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "55": { + "rootName": "Yellow Wool", + "rootId": 55, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "56": { + "rootName": "Lime Wool", + "rootId": 56, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "57": { + "rootName": "Pink Wool", + "rootId": 57, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "58": { + "rootName": "Gray Wool", + "rootId": 58, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "59": { + "rootName": "Light Gray Wool", + "rootId": 59, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "60": { + "rootName": "Cyan Wool", + "rootId": 60, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "61": { + "rootName": "Purple Wool", + "rootId": 61, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "62": { + "rootName": "Blue Wool", + "rootId": 62, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "63": { + "rootName": "Brown Wool", + "rootId": 63, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "64": { + "rootName": "Green Wool", + "rootId": 64, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "65": { + "rootName": "Red Wool", + "rootId": 65, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "66": { + "rootName": "Black Wool", + "rootId": 66, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "67": { + "rootName": "Baked Clay", + "rootId": 67, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "68": { + "rootName": "White Baked Clay", + "rootId": 68, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "69": { + "rootName": "Orange Baked Clay", + "rootId": 69, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "70": { + "rootName": "Magenta Baked Clay", + "rootId": 70, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "71": { + "rootName": "Light Blue Baked Clay", + "rootId": 71, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "72": { + "rootName": "Yellow Baked Clay", + "rootId": 72, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "73": { + "rootName": "Lime Baked Clay", + "rootId": 73, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "74": { + "rootName": "Pink Baked Clay", + "rootId": 74, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "75": { + "rootName": "Gray Baked Clay", + "rootId": 75, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "76": { + "rootName": "Light Gray Baked Clay", + "rootId": 76, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "77": { + "rootName": "Cyan Baked Clay", + "rootId": 77, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "78": { + "rootName": "Purple Baked Clay", + "rootId": 78, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "79": { + "rootName": "Blue Baked Clay", + "rootId": 79, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "80": { + "rootName": "Brown Baked Clay", + "rootId": 80, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "81": { + "rootName": "Green Baked Clay", + "rootId": 81, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "82": { + "rootName": "Red Baked Clay", + "rootId": 82, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "83": { + "rootName": "Black Baked Clay", + "rootId": 83, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "84": { + "rootName": "Gray Concrete", + "rootId": 84, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "85": { + "rootName": "Light Gray Concrete", + "rootId": 85, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "86": { + "rootName": "Black Concrete", + "rootId": 86, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "87": { + "rootName": "Blue Concrete", + "rootId": 87, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "88": { + "rootName": "Brown Concrete", + "rootId": 88, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "89": { + "rootName": "Cyan Concrete", + "rootId": 89, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "90": { + "rootName": "Light Blue Concrete", + "rootId": 90, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "91": { + "rootName": "Lime Concrete", + "rootId": 91, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "92": { + "rootName": "Magenta Concrete", + "rootId": 92, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "93": { + "rootName": "Orange Concrete", + "rootId": 93, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "94": { + "rootName": "Pink Concrete", + "rootId": 94, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "95": { + "rootName": "Purple Concrete", + "rootId": 95, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "96": { + "rootName": "Red Concrete", + "rootId": 96, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "97": { + "rootName": "White Concrete", + "rootId": 97, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "98": { + "rootName": "Green Concrete", + "rootId": 98, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "99": { + "rootName": "Yellow Concrete", + "rootId": 99, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "100": { + "rootName": "Pine Leaves", + "rootId": 100, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "101": { + "rootName": "Aspen Leaves", + "rootId": 101, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "102": { + "rootName": "Maple Leaves", + "rootId": 102, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "103": { + "rootName": "Jungle Leaves", + "rootId": 103, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "104": { + "rootName": "Pumpkin_placeholder", + "rootId": 104, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "105": { + "rootName": "Watermelon", + "rootId": 105, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "106": { + "rootName": "Glass", + "rootId": 106, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "107": { + "rootName": "Black Glass", + "rootId": 107, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "108": { + "rootName": "Blue Glass", + "rootId": 108, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "109": { + "rootName": "Brown Glass", + "rootId": 109, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "110": { + "rootName": "Cyan Glass", + "rootId": 110, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "111": { + "rootName": "Gray Glass", + "rootId": 111, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "112": { + "rootName": "Light Gray Glass", + "rootId": 112, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "113": { + "rootName": "Green Glass", + "rootId": 113, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "114": { + "rootName": "Light Blue Glass", + "rootId": 114, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "115": { + "rootName": "Lime Glass", + "rootId": 115, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "116": { + "rootName": "Magenta Glass", + "rootId": 116, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "117": { + "rootName": "Orange Glass", + "rootId": 117, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "118": { + "rootName": "Pink Glass", + "rootId": 118, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "119": { + "rootName": "Purple Glass", + "rootId": 119, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "120": { + "rootName": "Red Glass", + "rootId": 120, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "121": { + "rootName": "White Glass", + "rootId": 121, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "122": { + "rootName": "Yellow Glass", + "rootId": 122, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "123": { + "rootName": "UNUSED BLOCK TYPE", + "rootId": 123, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "124": { + "rootName": "Dim Lamp On", + "rootId": 124, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "125": { + "rootName": "Dim Lamp Off", + "rootId": 125, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "126": { + "rootName": "Water", + "rootId": 126, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "127": { + "rootName": "Invisible Solid", + "rootId": 127, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "128": { + "rootName": "Bricks", + "rootId": 128, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "129": { + "rootName": "Stone Bricks", + "rootId": 129, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "130": { + "rootName": "Dark Red Brick", + "rootId": 130, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "131": { + "rootName": "Dark Red Stone", + "rootId": 131, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "132": { + "rootName": "Block of Quartz", + "rootId": 132, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "133": { + "rootName": "Chiseled Block of Quartz", + "rootId": 133, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "134": { + "rootName": "Engraved Stone", + "rootId": 134, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "135": { + "rootName": "Mossy Stone Bricks", + "rootId": 135, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "136": { + "rootName": "Cracked Stone Bricks", + "rootId": 136, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "137": { + "rootName": "Smooth Sandstone", + "rootId": 137, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "138": { + "rootName": "Engraved Sandstone", + "rootId": 138, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "139": { + "rootName": "Ice", + "rootId": 139, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "140": { + "rootName": "Obsidian", + "rootId": 140, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "141": { + "rootName": "Hay Bale", + "rootId": 141, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "142": { + "rootName": "Sponge", + "rootId": 142, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "143": { + "rootName": "Beacon", + "rootId": 143, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "144": { + "rootName": "temp", + "rootId": 144, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "145": { + "rootName": "Golden Decoration", + "rootId": 145, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "146": { + "rootName": "Moonstone Explosive", + "rootId": 146, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "147": { + "rootName": "Bedrock", + "rootId": 147, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "148": { + "rootName": "Smooth Double Stone Slab", + "rootId": 148, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "149": { + "rootName": "Cactus", + "rootId": 149, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "150": { + "rootName": "Grass", + "rootId": 150, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "151": { + "rootName": "Dandelion", + "rootId": 151, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "152": { + "rootName": "Poppy", + "rootId": 152, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "153": { + "rootName": "Red Tulip", + "rootId": 153, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "154": { + "rootName": "Pink Tulip", + "rootId": 154, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "155": { + "rootName": "White Tulip", + "rootId": 155, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "156": { + "rootName": "Orange Tulip", + "rootId": 156, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "157": { + "rootName": "Daisy", + "rootId": 157, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "158": { + "rootName": "Bluebell", + "rootId": 158, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "159": { + "rootName": "Forget-me-not", + "rootId": 159, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "160": { + "rootName": "Allium", + "rootId": 160, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "161": { + "rootName": "Azure Bluet", + "rootId": 161, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "162": { + "rootName": "Lily of the Valley", + "rootId": 162, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "163": { + "rootName": "Shadow Rose", + "rootId": 163, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "164": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "165": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "166": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "167": { + "rootName": "Furnace", + "rootId": 164, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "168": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "169": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "170": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "171": { + "rootName": "Workbench", + "rootId": 168, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "172": { + "rootName": "Block of Diamond", + "rootId": 172, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "173": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "174": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "175": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "176": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "177": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "178": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "179": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "180": { + "rootName": "Maple Door", + "rootId": 173, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "181": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "182": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "183": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "184": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "185": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "186": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "187": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "188": { + "rootName": "_Maple Door Top", + "rootId": 181, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "189": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "190": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "191": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "192": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "193": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "194": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "195": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "196": { + "rootName": "Maple Trapdoor", + "rootId": 189, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "197": { + "rootName": "Aspen Sapling", + "rootId": 197, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "198": { + "rootName": "Maple Sapling", + "rootId": 198, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "199": { + "rootName": "Jungle Sapling", + "rootId": 199, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "200": { + "rootName": "Plum Sapling", + "rootId": 200, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "201": { + "rootName": "Pine Sapling", + "rootId": 201, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "202": { + "rootName": "Cedar Sapling", + "rootId": 202, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "203": { + "rootName": "Maple Log", + "rootId": 9, + "metaStr": "TreeBase|Maple", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Maple", + "charging": null, + "direction": null, + "books": null + }, + "204": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "205": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "206": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "207": { + "rootName": "Chest", + "rootId": 204, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "208": { + "rootName": "Pine Leaves", + "rootId": 100, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "209": { + "rootName": "Aspen Leaves", + "rootId": 101, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "210": { + "rootName": "Maple Leaves", + "rootId": 102, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "211": { + "rootName": "Jungle Leaves", + "rootId": 103, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "212": { + "rootName": "Protector", + "rootId": 212, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "213": { + "rootName": "Fat Cactus", + "rootId": 213, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "214": { + "rootName": "Dry Fat Cactus", + "rootId": 214, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "215": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "216": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "217": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "218": { + "rootName": "Maple Ladder", + "rootId": 215, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "219": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "220": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "221": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "222": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "223": { + "rootName": "Dirt", + "rootId": 2, + "metaStr": "GrassRoots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "224": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "225": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "226": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "227": { + "rootName": "Iron Ladder", + "rootId": 224, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "228": { + "rootName": "White Planks", + "rootId": 228, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "229": { + "rootName": "Orange Planks", + "rootId": 229, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "230": { + "rootName": "Magenta Planks", + "rootId": 230, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "231": { + "rootName": "Light Blue Planks", + "rootId": 231, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "232": { + "rootName": "Yellow Planks", + "rootId": 232, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "233": { + "rootName": "Lime Planks", + "rootId": 233, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "234": { + "rootName": "Pink Planks", + "rootId": 234, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "235": { + "rootName": "Gray Planks", + "rootId": 235, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "236": { + "rootName": "Light Gray Planks", + "rootId": 236, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "237": { + "rootName": "Cyan Planks", + "rootId": 237, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "238": { + "rootName": "Purple Planks", + "rootId": 238, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "239": { + "rootName": "Blue Planks", + "rootId": 239, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "240": { + "rootName": "Brown Planks", + "rootId": 240, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "241": { + "rootName": "Green Planks", + "rootId": 241, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "242": { + "rootName": "Red Planks", + "rootId": 242, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "243": { + "rootName": "Black Planks", + "rootId": 243, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "244": { + "rootName": "Artisan Bench", + "rootId": 244, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "245": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "246": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "247": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "248": { + "rootName": "White Ceramic", + "rootId": 245, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "249": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "250": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "251": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "252": { + "rootName": "Orange Ceramic", + "rootId": 249, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "253": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "254": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "255": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "256": { + "rootName": "Magenta Ceramic", + "rootId": 253, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "257": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "258": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "259": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "260": { + "rootName": "Light Blue Ceramic", + "rootId": 257, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "261": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "262": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "263": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "264": { + "rootName": "Yellow Ceramic", + "rootId": 261, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "265": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "266": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "267": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "268": { + "rootName": "Lime Ceramic", + "rootId": 265, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "269": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "270": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "271": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "272": { + "rootName": "Pink Ceramic", + "rootId": 269, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "273": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "274": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "275": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "276": { + "rootName": "Gray Ceramic", + "rootId": 273, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "277": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "278": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "279": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "280": { + "rootName": "Light Gray Ceramic", + "rootId": 277, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "281": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "282": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "283": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "284": { + "rootName": "Cyan Ceramic", + "rootId": 281, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "285": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "286": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "287": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "288": { + "rootName": "Purple Ceramic", + "rootId": 285, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "289": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "290": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "291": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "292": { + "rootName": "Blue Ceramic", + "rootId": 289, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "293": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "294": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "295": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "296": { + "rootName": "Brown Ceramic", + "rootId": 293, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "297": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "298": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "299": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "300": { + "rootName": "Green Ceramic", + "rootId": 297, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "301": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "302": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "303": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "304": { + "rootName": "Red Ceramic", + "rootId": 301, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "305": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "306": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "307": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "308": { + "rootName": "Black Ceramic", + "rootId": 305, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "309": { + "rootName": "Wheat Seeds", + "rootId": 309, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "310": { + "rootName": "Wheat_stage1", + "rootId": 310, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "311": { + "rootName": "Wheat_stage2", + "rootId": 311, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "312": { + "rootName": "Wheat_stage3", + "rootId": 312, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "313": { + "rootName": "Wheat_stage4", + "rootId": 313, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "314": { + "rootName": "Wheat_stage5", + "rootId": 314, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "315": { + "rootName": "Wheat", + "rootId": 315, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "316": { + "rootName": "Wheat", + "rootId": 315, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "317": { + "rootName": "Tilled Soil", + "rootId": 317, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "318": { + "rootName": "Bread Block", + "rootId": 318, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "319": { + "rootName": "ReservedBread BlockRotation1", + "rootId": 319, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "320": { + "rootName": "ReservedBread BlockRotation2", + "rootId": 320, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "321": { + "rootName": "ReservedBread BlockRotation3", + "rootId": 321, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "322": { + "rootName": "Mossy Messy Stone", + "rootId": 322, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "323": { + "rootName": "Dandelion", + "rootId": 151, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "324": { + "rootName": "Poppy", + "rootId": 152, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "325": { + "rootName": "Red Tulip", + "rootId": 153, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "326": { + "rootName": "Pink Tulip", + "rootId": 154, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "327": { + "rootName": "White Tulip", + "rootId": 155, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "328": { + "rootName": "Orange Tulip", + "rootId": 156, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "329": { + "rootName": "Daisy", + "rootId": 157, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "330": { + "rootName": "Bluebell", + "rootId": 158, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "331": { + "rootName": "Forget-me-not", + "rootId": 159, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "332": { + "rootName": "Allium", + "rootId": 160, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "333": { + "rootName": "Azure Bluet", + "rootId": 161, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "334": { + "rootName": "Lily of the Valley", + "rootId": 162, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "335": { + "rootName": "Shadow Rose", + "rootId": 163, + "metaStr": "Roots", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "336": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "337": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "338": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "339": { + "rootName": "White Bed", + "rootId": 336, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "340": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "341": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "342": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "343": { + "rootName": "_White Bed Head", + "rootId": 340, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "344": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "345": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "346": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "347": { + "rootName": "Orange Bed", + "rootId": 344, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "348": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "349": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "350": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "351": { + "rootName": "_Orange Bed Head", + "rootId": 348, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "352": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "353": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "354": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "355": { + "rootName": "Magenta Bed", + "rootId": 352, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "356": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "357": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "358": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "359": { + "rootName": "_Magenta Bed Head", + "rootId": 356, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "360": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "361": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "362": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "363": { + "rootName": "Light Blue Bed", + "rootId": 360, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "364": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "365": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "366": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "367": { + "rootName": "_Light Blue Bed Head", + "rootId": 364, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "368": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "369": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "370": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "371": { + "rootName": "Yellow Bed", + "rootId": 368, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "372": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "373": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "374": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "375": { + "rootName": "_Yellow Bed Head", + "rootId": 372, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "376": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "377": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "378": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "379": { + "rootName": "Lime Bed", + "rootId": 376, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "380": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "381": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "382": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "383": { + "rootName": "_Lime Bed Head", + "rootId": 380, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "384": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "385": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "386": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "387": { + "rootName": "Pink Bed", + "rootId": 384, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "388": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "389": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "390": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "391": { + "rootName": "_Pink Bed Head", + "rootId": 388, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "392": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "393": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "394": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "395": { + "rootName": "Gray Bed", + "rootId": 392, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "396": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "397": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "398": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "399": { + "rootName": "_Gray Bed Head", + "rootId": 396, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "400": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "401": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "402": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "403": { + "rootName": "Light Gray Bed", + "rootId": 400, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "404": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "405": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "406": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "407": { + "rootName": "_Light Gray Bed Head", + "rootId": 404, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "408": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "409": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "410": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "411": { + "rootName": "Cyan Bed", + "rootId": 408, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "412": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "413": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "414": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "415": { + "rootName": "_Cyan Bed Head", + "rootId": 412, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "416": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "417": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "418": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "419": { + "rootName": "Purple Bed", + "rootId": 416, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "420": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "421": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "422": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "423": { + "rootName": "_Purple Bed Head", + "rootId": 420, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "424": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "425": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "426": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "427": { + "rootName": "Blue Bed", + "rootId": 424, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "428": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "429": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "430": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "431": { + "rootName": "_Blue Bed Head", + "rootId": 428, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "432": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "433": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "434": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "435": { + "rootName": "Brown Bed", + "rootId": 432, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "436": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "437": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "438": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "439": { + "rootName": "_Brown Bed Head", + "rootId": 436, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "440": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "441": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "442": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "443": { + "rootName": "Green Bed", + "rootId": 440, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "444": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "445": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "446": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "447": { + "rootName": "_Green Bed Head", + "rootId": 444, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "448": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "449": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "450": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "451": { + "rootName": "Red Bed", + "rootId": 448, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "452": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "453": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "454": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "455": { + "rootName": "_Red Bed Head", + "rootId": 452, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "456": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "457": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "458": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "459": { + "rootName": "Black Bed", + "rootId": 456, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "460": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "461": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "462": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "463": { + "rootName": "_Black Bed Head", + "rootId": 460, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "464": { + "rootName": "Apple Block", + "rootId": 464, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "465": { + "rootName": "Moonstone Ore", + "rootId": 465, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "466": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "467": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "468": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "469": { + "rootName": "Moonstone Chest", + "rootId": 466, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "470": { + "rootName": "Block of Moonstone", + "rootId": 470, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "471": { + "rootName": "Magma", + "rootId": 471, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "472": { + "rootName": "Useless Soil", + "rootId": 472, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "473": { + "rootName": "Marked Sandstone", + "rootId": 473, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "474": { + "rootName": "Red Sandstone", + "rootId": 474, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "475": { + "rootName": "Smooth Red Sandstone", + "rootId": 475, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "476": { + "rootName": "Engraved Red Sandstone", + "rootId": 476, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "477": { + "rootName": "Marked Red Sandstone", + "rootId": 477, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "478": { + "rootName": "Green Stone", + "rootId": 478, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "479": { + "rootName": "Green Bricks", + "rootId": 479, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "480": { + "rootName": "Dark Green Bricks", + "rootId": 480, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "481": { + "rootName": "Sandstone Bricks", + "rootId": 481, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "482": { + "rootName": "Engraved Diorite", + "rootId": 482, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "483": { + "rootName": "Diorite Bricks", + "rootId": 483, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "484": { + "rootName": "Engraved Andesite", + "rootId": 484, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "485": { + "rootName": "Andesite Bricks", + "rootId": 485, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "486": { + "rootName": "Engraved Granite", + "rootId": 486, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "487": { + "rootName": "Granite Bricks", + "rootId": 487, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "488": { + "rootName": "Ice Bricks", + "rootId": 488, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "489": { + "rootName": "Placeholder Packed Ice", + "rootId": 489, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "490": { + "rootName": "Placeholder Blue Ice", + "rootId": 490, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "491": { + "rootName": "Plum Leaves", + "rootId": 491, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "492": { + "rootName": "Cedar Leaves", + "rootId": 492, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "493": { + "rootName": "Palm Leaves", + "rootId": 493, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "494": { + "rootName": "Plum Leaves", + "rootId": 491, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "495": { + "rootName": "Cedar Leaves", + "rootId": 492, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "496": { + "rootName": "Palm Leaves", + "rootId": 493, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "497": { + "rootName": "Pine Log", + "rootId": 10, + "metaStr": "TreeBase|Pine", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pine", + "charging": null, + "direction": null, + "books": null + }, + "498": { + "rootName": "Plum Log", + "rootId": 11, + "metaStr": "TreeBase|Plum", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Plum", + "charging": null, + "direction": null, + "books": null + }, + "499": { + "rootName": "Cedar Log", + "rootId": 12, + "metaStr": "TreeBase|Cedar", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cedar", + "charging": null, + "direction": null, + "books": null + }, + "500": { + "rootName": "Aspen Log", + "rootId": 13, + "metaStr": "TreeBase|Aspen", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Aspen", + "charging": null, + "direction": null, + "books": null + }, + "501": { + "rootName": "Jungle Log", + "rootId": 14, + "metaStr": "TreeBase|Jungle", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Jungle", + "charging": null, + "direction": null, + "books": null + }, + "502": { + "rootName": "Palm Log", + "rootId": 502, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "503": { + "rootName": "Palm Log", + "rootId": 502, + "metaStr": "TreeBase|Palm", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Palm", + "charging": null, + "direction": null, + "books": null + }, + "504": { + "rootName": "Palm Wood Planks", + "rootId": 504, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "505": { + "rootName": "Palm Sapling", + "rootId": 505, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "506": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "507": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "508": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "509": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "510": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "511": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "512": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "513": { + "rootName": "Pine Door", + "rootId": 506, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "514": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "515": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "516": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "517": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "518": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "519": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "520": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "521": { + "rootName": "_Pine Door Top", + "rootId": 514, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "522": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "523": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "524": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "525": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "526": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "527": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "528": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "529": { + "rootName": "Plum Door", + "rootId": 522, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "530": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "531": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "532": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "533": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "534": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "535": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "536": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "537": { + "rootName": "_Plum Door Top", + "rootId": 530, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "538": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "539": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "540": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "541": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "542": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "543": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "544": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "545": { + "rootName": "Cedar Door", + "rootId": 538, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "546": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "547": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "548": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "549": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "550": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "551": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "552": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "553": { + "rootName": "_Cedar Door Top", + "rootId": 546, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "554": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "555": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "556": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "557": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "558": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "559": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "560": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "561": { + "rootName": "Aspen Door", + "rootId": 554, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "562": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "563": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "564": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "565": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "566": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "567": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "568": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "569": { + "rootName": "_Aspen Door Top", + "rootId": 562, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "570": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "571": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "572": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "573": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "574": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "575": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "576": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "577": { + "rootName": "Jungle Door", + "rootId": 570, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "578": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "579": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "580": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "581": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "582": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "583": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "584": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "585": { + "rootName": "_Jungle Door Top", + "rootId": 578, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "586": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "587": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "588": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "589": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "590": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "591": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "592": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "593": { + "rootName": "Palm Door", + "rootId": 586, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "594": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "595": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "596": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "597": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "598": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "599": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "600": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "601": { + "rootName": "_Palm Door Top", + "rootId": 594, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "602": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "603": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "604": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "605": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "606": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "607": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "608": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "609": { + "rootName": "Pine Trapdoor", + "rootId": 602, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "610": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "611": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "612": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "613": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "614": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "615": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "616": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "617": { + "rootName": "Plum Trapdoor", + "rootId": 610, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "618": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "619": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "620": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "621": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "622": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "623": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "624": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "625": { + "rootName": "Cedar Trapdoor", + "rootId": 618, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "626": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "627": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "628": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "629": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "630": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "631": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "632": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "633": { + "rootName": "Aspen Trapdoor", + "rootId": 626, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "634": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "635": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "636": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "637": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "638": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "639": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "640": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "641": { + "rootName": "Jungle Trapdoor", + "rootId": 634, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "642": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "643": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "644": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "645": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "646": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "647": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "648": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "649": { + "rootName": "Palm Trapdoor", + "rootId": 642, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "650": { + "rootName": "Red Sand", + "rootId": 650, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "651": { + "rootName": "Red Sandstone Bricks", + "rootId": 651, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "652": { + "rootName": "Rocky Dirt", + "rootId": 652, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "653": { + "rootName": "Autumn Maple Leaves", + "rootId": 653, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "654": { + "rootName": "Autumn Maple Leaves", + "rootId": 653, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "655": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "656": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "657": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "658": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "659": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "660": { + "rootName": "Fallen Maple Leaves", + "rootId": 655, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "661": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "662": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "663": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "664": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "665": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "666": { + "rootName": "Maple Slab", + "rootId": 661, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "667": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "668": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "669": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "670": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "671": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "672": { + "rootName": "Pine Slab", + "rootId": 667, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "673": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "674": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "675": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "676": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "677": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "678": { + "rootName": "Plum Slab", + "rootId": 673, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "679": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "680": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "681": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "682": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "683": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "684": { + "rootName": "Cedar Slab", + "rootId": 679, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "685": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "686": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "687": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "688": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "689": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "690": { + "rootName": "Aspen Slab", + "rootId": 685, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "691": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "692": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "693": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "694": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "695": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "696": { + "rootName": "Jungle Slab", + "rootId": 691, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "697": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "698": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "699": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "700": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "701": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "702": { + "rootName": "Palm Slab", + "rootId": 697, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "703": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "704": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "705": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "706": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "707": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "708": { + "rootName": "Dirt Slab", + "rootId": 703, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "709": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "710": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "711": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "712": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "713": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "714": { + "rootName": "Grass Slab", + "rootId": 709, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "715": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "716": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "717": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "718": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "719": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "720": { + "rootName": "Messy Stone Slab", + "rootId": 715, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "721": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "722": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "723": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "724": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "725": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "726": { + "rootName": "Stone Slab", + "rootId": 721, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "727": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "728": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "729": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "730": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "731": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "732": { + "rootName": "Smooth Stone Slab", + "rootId": 727, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "733": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "734": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "735": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "736": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "737": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "738": { + "rootName": "Engraved Stone Slab", + "rootId": 733, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "739": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "740": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "741": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "742": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "743": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "744": { + "rootName": "Stone Bricks Slab", + "rootId": 739, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "745": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "746": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "747": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "748": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "749": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "750": { + "rootName": "Mossy Stone Slab", + "rootId": 745, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "751": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "752": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "753": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "754": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "755": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "756": { + "rootName": "Mossy Stone Bricks Slab", + "rootId": 751, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "757": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "758": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "759": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "760": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "761": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "762": { + "rootName": "Andesite Slab", + "rootId": 757, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "763": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "764": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "765": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "766": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "767": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "768": { + "rootName": "Smooth Andesite Slab", + "rootId": 763, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "769": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "770": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "771": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "772": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "773": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "774": { + "rootName": "Engraved Andesite Slab", + "rootId": 769, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "775": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "776": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "777": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "778": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "779": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "780": { + "rootName": "Andesite Bricks Slab", + "rootId": 775, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "781": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "782": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "783": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "784": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "785": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "786": { + "rootName": "Diorite Slab", + "rootId": 781, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "787": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "788": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "789": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "790": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "791": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "792": { + "rootName": "Smooth Diorite Slab", + "rootId": 787, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "793": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "794": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "795": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "796": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "797": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "798": { + "rootName": "Engraved Diorite Slab", + "rootId": 793, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "799": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "800": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "801": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "802": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "803": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "804": { + "rootName": "Diorite Bricks Slab", + "rootId": 799, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "805": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "806": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "807": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "808": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "809": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "810": { + "rootName": "Granite Slab", + "rootId": 805, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "811": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "812": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "813": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "814": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "815": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "816": { + "rootName": "Smooth Granite Slab", + "rootId": 811, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "817": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "818": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "819": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "820": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "821": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "822": { + "rootName": "Engraved Granite Slab", + "rootId": 817, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "823": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "824": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "825": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "826": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "827": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "828": { + "rootName": "Granite Bricks Slab", + "rootId": 823, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "829": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "830": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "831": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "832": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "833": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "834": { + "rootName": "Sandstone Slab", + "rootId": 829, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "835": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "836": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "837": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "838": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "839": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "840": { + "rootName": "Smooth Sandstone Slab", + "rootId": 835, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "841": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "842": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "843": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "844": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "845": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "846": { + "rootName": "Engraved Sandstone Slab", + "rootId": 841, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "847": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "848": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "849": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "850": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "851": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "852": { + "rootName": "Marked Sandstone Slab", + "rootId": 847, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "853": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "854": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "855": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "856": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "857": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "858": { + "rootName": "Sandstone Bricks Slab", + "rootId": 853, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "859": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "860": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "861": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "862": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "863": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "864": { + "rootName": "Red Sandstone Slab", + "rootId": 859, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "865": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "866": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "867": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "868": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "869": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "870": { + "rootName": "Smooth Red Sandstone Slab", + "rootId": 865, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "871": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "872": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "873": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "874": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "875": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "876": { + "rootName": "Engraved Red Sandstone Slab", + "rootId": 871, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "877": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "878": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "879": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "880": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "881": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "882": { + "rootName": "Marked Red Sandstone Slab", + "rootId": 877, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "883": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "884": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "885": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "886": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "887": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "888": { + "rootName": "Red Sandstone Bricks Slab", + "rootId": 883, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "889": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "890": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "891": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "892": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "893": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "894": { + "rootName": "Bricks Slab", + "rootId": 889, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "895": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "896": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "897": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "898": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "899": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "900": { + "rootName": "Ice Bricks Slab", + "rootId": 895, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "901": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot1|Growing", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "902": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot2|Growing", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "903": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot3|Growing", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "904": { + "rootName": "Vines", + "rootId": 219, + "metaStr": "meta|rot4|Growing", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "905": { + "rootName": "Cactus", + "rootId": 149, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "906": { + "rootName": "Fat Cactus", + "rootId": 213, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "907": { + "rootName": "Plum Block", + "rootId": 907, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "908": { + "rootName": "Coconut Block", + "rootId": 908, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "909": { + "rootName": "Pear Log", + "rootId": 909, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "910": { + "rootName": "Pear Wood Planks", + "rootId": 910, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "911": { + "rootName": "Pear Leaves", + "rootId": 911, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "912": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "913": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "914": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "915": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "916": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "917": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "918": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "919": { + "rootName": "Pear Door", + "rootId": 912, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "920": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "921": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "922": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "923": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "924": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "925": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "926": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "927": { + "rootName": "_Pear Door Top", + "rootId": 920, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "928": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "929": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "930": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "931": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "932": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "933": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "934": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "935": { + "rootName": "Pear Trapdoor", + "rootId": 928, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "936": { + "rootName": "Pear Sapling", + "rootId": 936, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "937": { + "rootName": "Pear Log", + "rootId": 909, + "metaStr": "TreeBase|Pear", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pear", + "charging": null, + "direction": null, + "books": null + }, + "938": { + "rootName": "Pear Leaves", + "rootId": 911, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "939": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "940": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "941": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "942": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "943": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "944": { + "rootName": "Pear Slab", + "rootId": 939, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "945": { + "rootName": "Pear Block", + "rootId": 945, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "946": { + "rootName": "Compressed Messy Stone", + "rootId": 946, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "947": { + "rootName": "Extra Compressed Messy Stone", + "rootId": 947, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "948": { + "rootName": "Super Compressed Messy Stone", + "rootId": 948, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "949": { + "rootName": "Hyper Compressed Messy Stone", + "rootId": 949, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "950": { + "rootName": "Ultra Compressed Messy Stone", + "rootId": 950, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "951": { + "rootName": "Mega Compressed Messy Stone", + "rootId": 951, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "952": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "953": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "954": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "955": { + "rootName": "Board", + "rootId": 952, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "956": { + "rootName": "Net", + "rootId": 956, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "957": { + "rootName": "Cobweb", + "rootId": 957, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "958": { + "rootName": "Brown Mushroom Block", + "rootId": 958, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "959": { + "rootName": "Red Mushroom Block", + "rootId": 959, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "960": { + "rootName": "Mushroom Stem", + "rootId": 960, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "961": { + "rootName": "Fireball Block", + "rootId": 961, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "962": { + "rootName": "Iceball Block", + "rootId": 962, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "963": { + "rootName": "Watermelon Seeds", + "rootId": 963, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "964": { + "rootName": "Watermelon Seeds", + "rootId": 963, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "965": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "966": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "967": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "968": { + "rootName": "Attached Watermelon Stem", + "rootId": 965, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "969": { + "rootName": "Pumpkin Seeds", + "rootId": 969, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "970": { + "rootName": "Pumpkin Seeds", + "rootId": 969, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "971": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "972": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "973": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "974": { + "rootName": "Attached Pumpkin Stem", + "rootId": 971, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "975": { + "rootName": "Pumpkin", + "rootId": 975, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "976": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "977": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "978": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "979": { + "rootName": "Carved Pumpkin", + "rootId": 976, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "980": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "981": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "982": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "983": { + "rootName": "Jack o'Lantern", + "rootId": 980, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "984": { + "rootName": "Melon Seeds", + "rootId": 984, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "985": { + "rootName": "Melon Seeds", + "rootId": 984, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "986": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "987": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "988": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "989": { + "rootName": "Attached Melon Stem", + "rootId": 986, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "990": { + "rootName": "Melon", + "rootId": 990, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "991": { + "rootName": "Iron Watermelon", + "rootId": 991, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "992": { + "rootName": "Patterned Black Glass", + "rootId": 992, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "993": { + "rootName": "Patterned Blue Glass", + "rootId": 993, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "994": { + "rootName": "Patterned Brown Glass", + "rootId": 994, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "995": { + "rootName": "Patterned Cyan Glass", + "rootId": 995, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "996": { + "rootName": "Patterned Gray Glass", + "rootId": 996, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "997": { + "rootName": "Patterned Light Gray Glass", + "rootId": 997, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "998": { + "rootName": "Patterned Green Glass", + "rootId": 998, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "999": { + "rootName": "Patterned Light Blue Glass", + "rootId": 999, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1000": { + "rootName": "Patterned Lime Glass", + "rootId": 1000, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1001": { + "rootName": "Patterned Magenta Glass", + "rootId": 1001, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1002": { + "rootName": "Patterned Orange Glass", + "rootId": 1002, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1003": { + "rootName": "Patterned Pink Glass", + "rootId": 1003, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1004": { + "rootName": "Patterned Purple Glass", + "rootId": 1004, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1005": { + "rootName": "Patterned Red Glass", + "rootId": 1005, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1006": { + "rootName": "Patterned White Glass", + "rootId": 1006, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1007": { + "rootName": "Patterned Yellow Glass", + "rootId": 1007, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1008": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1009": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1010": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1011": { + "rootName": "Potion Table", + "rootId": 1008, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1012": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1013": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1014": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1015": { + "rootName": "Pine Ladder", + "rootId": 1012, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1016": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1017": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1018": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1019": { + "rootName": "Plum Ladder", + "rootId": 1016, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1020": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1021": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1022": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1023": { + "rootName": "Cedar Ladder", + "rootId": 1020, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1024": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1025": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1026": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1027": { + "rootName": "Aspen Ladder", + "rootId": 1024, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1028": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1029": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1030": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1031": { + "rootName": "Jungle Ladder", + "rootId": 1028, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1032": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1033": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1034": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1035": { + "rootName": "Palm Ladder", + "rootId": 1032, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1036": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1037": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1038": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1039": { + "rootName": "Pear Ladder", + "rootId": 1036, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1040": { + "rootName": "Black Carpet", + "rootId": 1040, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1041": { + "rootName": "Blue Carpet", + "rootId": 1041, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1042": { + "rootName": "Brown Carpet", + "rootId": 1042, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1043": { + "rootName": "Cyan Carpet", + "rootId": 1043, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1044": { + "rootName": "Gray Carpet", + "rootId": 1044, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1045": { + "rootName": "Light Gray Carpet", + "rootId": 1045, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1046": { + "rootName": "Green Carpet", + "rootId": 1046, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1047": { + "rootName": "Light Blue Carpet", + "rootId": 1047, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1048": { + "rootName": "Lime Carpet", + "rootId": 1048, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1049": { + "rootName": "Magenta Carpet", + "rootId": 1049, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1050": { + "rootName": "Orange Carpet", + "rootId": 1050, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1051": { + "rootName": "Pink Carpet", + "rootId": 1051, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1052": { + "rootName": "Purple Carpet", + "rootId": 1052, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1053": { + "rootName": "Red Carpet", + "rootId": 1053, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1054": { + "rootName": "White Carpet", + "rootId": 1054, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1055": { + "rootName": "Yellow Carpet", + "rootId": 1055, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1056": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books6", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "1057": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books6", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "1058": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books6", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "1059": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books6", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 6 + }, + "1060": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot1|books0", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "1061": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot2|books0", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "1062": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot3|books0", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "1063": { + "rootName": "Empty Bookshelf", + "rootId": 1060, + "metaStr": "meta|rot4|books0", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 0 + }, + "1064": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "1065": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books1", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "1066": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books1", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "1067": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books1", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 1 + }, + "1068": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books2", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "1069": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "1070": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books2", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "1071": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books2", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 2 + }, + "1072": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books3", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "1073": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books3", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "1074": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "1075": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books3", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 3 + }, + "1076": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books4", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "1077": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books4", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "1078": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books4", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "1079": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 4 + }, + "1080": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot1|books5", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "1081": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot2|books5", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "1082": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot3|books5", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "1083": { + "rootName": "Bookshelf", + "rootId": 1056, + "metaStr": "meta|rot4|books5", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": 5 + }, + "1084": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot1|empty", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1085": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot2|empty", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1086": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot3|empty", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1087": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot4|empty", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1088": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot1|full", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1089": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot2|full", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1090": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot3|full", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1091": { + "rootName": "Mailbox", + "rootId": 1084, + "metaStr": "meta|rot4|full", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1092": { + "rootName": "Rice", + "rootId": 1092, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1093": { + "rootName": "Rice_stage1", + "rootId": 1093, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1094": { + "rootName": "Rice_stage2", + "rootId": 1094, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1095": { + "rootName": "Rice_stage3", + "rootId": 1095, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1096": { + "rootName": "Rice_stage4", + "rootId": 1096, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1097": { + "rootName": "Rice_stage5", + "rootId": 1097, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1098": { + "rootName": "Rice", + "rootId": 1092, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1099": { + "rootName": "Cranberries", + "rootId": 1099, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1100": { + "rootName": "Cranberries_stage1", + "rootId": 1100, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1101": { + "rootName": "Cranberries_stage2", + "rootId": 1101, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1102": { + "rootName": "Red Mushroom", + "rootId": 1102, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1103": { + "rootName": "Brown Mushroom", + "rootId": 1103, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1104": { + "rootName": "Cotton Seeds", + "rootId": 1104, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1105": { + "rootName": "Cotton_stage1", + "rootId": 1105, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1106": { + "rootName": "Cotton_stage2", + "rootId": 1106, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1107": { + "rootName": "Cotton_stage3", + "rootId": 1107, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1108": { + "rootName": "Tribe Protector", + "rootId": 1108, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1109": { + "rootName": "Tall Grass", + "rootId": 1109, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1110": { + "rootName": "Tall Grass", + "rootId": 1109, + "metaStr": "Top", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1111": { + "rootName": "Faction Protector", + "rootId": 1111, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1112": { + "rootName": "Barkless Palm Log", + "rootId": 1112, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1113": { + "rootName": "Barkless Pear Log", + "rootId": 1113, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1114": { + "rootName": "Barkless Maple Log", + "rootId": 21, + "metaStr": "TreeBase|Maple", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Maple", + "charging": null, + "direction": null, + "books": null + }, + "1115": { + "rootName": "Barkless Plum Log", + "rootId": 23, + "metaStr": "TreeBase|Plum", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Plum", + "charging": null, + "direction": null, + "books": null + }, + "1116": { + "rootName": "Barkless Cedar Log", + "rootId": 26, + "metaStr": "TreeBase|Cedar", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cedar", + "charging": null, + "direction": null, + "books": null + }, + "1117": { + "rootName": "Barkless Aspen Log", + "rootId": 22, + "metaStr": "TreeBase|Aspen", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Aspen", + "charging": null, + "direction": null, + "books": null + }, + "1118": { + "rootName": "Barkless Jungle Log", + "rootId": 24, + "metaStr": "TreeBase|Jungle", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Jungle", + "charging": null, + "direction": null, + "books": null + }, + "1119": { + "rootName": "Barkless Pine Log", + "rootId": 25, + "metaStr": "TreeBase|Pine", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pine", + "charging": null, + "direction": null, + "books": null + }, + "1120": { + "rootName": "Barkless Palm Log", + "rootId": 1112, + "metaStr": "TreeBase|Palm", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Palm", + "charging": null, + "direction": null, + "books": null + }, + "1121": { + "rootName": "Barkless Pear Log", + "rootId": 1113, + "metaStr": "TreeBase|Pear", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Pear", + "charging": null, + "direction": null, + "books": null + }, + "1122": { + "rootName": "Mystery Block", + "rootId": 1122, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1123": { + "rootName": "Rocket", + "rootId": 1123, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1124": { + "rootName": "Super Rocket", + "rootId": 1124, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1125": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1126": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1127": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1128": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1129": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1130": { + "rootName": "Yellow Concrete Slab", + "rootId": 1125, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1131": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1132": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1133": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1134": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1135": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1136": { + "rootName": "White Concrete Slab", + "rootId": 1131, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1137": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1138": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1139": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1140": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1141": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1142": { + "rootName": "Red Concrete Slab", + "rootId": 1137, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1143": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1144": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1145": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1146": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1147": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1148": { + "rootName": "Purple Concrete Slab", + "rootId": 1143, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1149": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1150": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1151": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1152": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1153": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1154": { + "rootName": "Pink Concrete Slab", + "rootId": 1149, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1155": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1156": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1157": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1158": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1159": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1160": { + "rootName": "Orange Concrete Slab", + "rootId": 1155, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1161": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1162": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1163": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1164": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1165": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1166": { + "rootName": "Magenta Concrete Slab", + "rootId": 1161, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1167": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1168": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1169": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1170": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1171": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1172": { + "rootName": "Lime Concrete Slab", + "rootId": 1167, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1173": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1174": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1175": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1176": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1177": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1178": { + "rootName": "Light Gray Concrete Slab", + "rootId": 1173, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1179": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1180": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1181": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1182": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1183": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1184": { + "rootName": "Light Blue Concrete Slab", + "rootId": 1179, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1185": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1186": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1187": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1188": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1189": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1190": { + "rootName": "Green Concrete Slab", + "rootId": 1185, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1191": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1192": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1193": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1194": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1195": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1196": { + "rootName": "Gray Concrete Slab", + "rootId": 1191, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1197": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1198": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1199": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1200": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1201": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1202": { + "rootName": "Cyan Concrete Slab", + "rootId": 1197, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1203": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1204": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1205": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1206": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1207": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1208": { + "rootName": "Brown Concrete Slab", + "rootId": 1203, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1209": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1210": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1211": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1212": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1213": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1214": { + "rootName": "Blue Concrete Slab", + "rootId": 1209, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1215": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1216": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1217": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1218": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1219": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1220": { + "rootName": "Black Concrete Slab", + "rootId": 1215, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1221": { + "rootName": "Grenade", + "rootId": 1221, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1222": { + "rootName": "Cherry Log", + "rootId": 1222, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1223": { + "rootName": "Barkless Cherry Log", + "rootId": 1223, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1224": { + "rootName": "Barkless Cherry Log", + "rootId": 1223, + "metaStr": "TreeBase|Cherry", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cherry", + "charging": null, + "direction": null, + "books": null + }, + "1225": { + "rootName": "Cherry Wood Planks", + "rootId": 1225, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1226": { + "rootName": "Cherry Leaves", + "rootId": 1226, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1227": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1228": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1229": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1230": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1231": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1232": { + "rootName": "Fallen Cherry Leaves", + "rootId": 1227, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1233": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1234": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1235": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1236": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1237": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1238": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1239": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1240": { + "rootName": "Cherry Door", + "rootId": 1233, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1241": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1242": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1243": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1244": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1245": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1246": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1247": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1248": { + "rootName": "_Cherry Door Top", + "rootId": 1241, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1249": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1250": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1251": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1252": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1253": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1254": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1255": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1256": { + "rootName": "Cherry Trapdoor", + "rootId": 1249, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1257": { + "rootName": "Cherry Sapling", + "rootId": 1257, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1258": { + "rootName": "Cherry Log", + "rootId": 1222, + "metaStr": "TreeBase|Cherry", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Cherry", + "charging": null, + "direction": null, + "books": null + }, + "1259": { + "rootName": "Cherry Leaves", + "rootId": 1226, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1260": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1261": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1262": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1263": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1264": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1265": { + "rootName": "Cherry Slab", + "rootId": 1260, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1266": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1267": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1268": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1269": { + "rootName": "Cherry Ladder", + "rootId": 1266, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1270": { + "rootName": "Cherry Block", + "rootId": 1270, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1271": { + "rootName": "Bouncy Bomb Block", + "rootId": 1271, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1272": { + "rootName": "Obby Rocket", + "rootId": 1272, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1273": { + "rootName": "Wood Spikes", + "rootId": 1273, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1274": { + "rootName": "Stone Spikes", + "rootId": 1274, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1275": { + "rootName": "Iron Spikes", + "rootId": 1275, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1276": { + "rootName": "Gold Spikes", + "rootId": 1276, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1277": { + "rootName": "Diamond Spikes", + "rootId": 1277, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1278": { + "rootName": "Kill Spikes", + "rootId": 1278, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1279": { + "rootName": "Corn Block", + "rootId": 1279, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1280": { + "rootName": "Corn Seeds", + "rootId": 1280, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1281": { + "rootName": "Corn Seeds_stage1", + "rootId": 1281, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1282": { + "rootName": "Corn Seeds", + "rootId": 1280, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1283": { + "rootName": "Corn Seeds", + "rootId": 1280, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1284": { + "rootName": "Corn Plant_stage1", + "rootId": 1284, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1285": { + "rootName": "Corn Plant_stage2", + "rootId": 1285, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1286": { + "rootName": "Corn Plant_stage3", + "rootId": 1286, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1287": { + "rootName": "Corn Plant_stage4", + "rootId": 1287, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1288": { + "rootName": "Corn Plant_stage5", + "rootId": 1288, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1289": { + "rootName": "Corn Plant", + "rootId": 1289, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1290": { + "rootName": "Corn Plant", + "rootId": 1289, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1291": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1292": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1293": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1294": { + "rootName": "Loot Chest", + "rootId": 1291, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1295": { + "rootName": "Melting Ice", + "rootId": 1295, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1296": { + "rootName": "Melting Ice", + "rootId": 1295, + "metaStr": "Breaking", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1297": { + "rootName": "Yellow Paintball Explosive", + "rootId": 1297, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1298": { + "rootName": "White Paintball Explosive", + "rootId": 1298, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1299": { + "rootName": "Red Paintball Explosive", + "rootId": 1299, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1300": { + "rootName": "Purple Paintball Explosive", + "rootId": 1300, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1301": { + "rootName": "Pink Paintball Explosive", + "rootId": 1301, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1302": { + "rootName": "Orange Paintball Explosive", + "rootId": 1302, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1303": { + "rootName": "Magenta Paintball Explosive", + "rootId": 1303, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1304": { + "rootName": "Lime Paintball Explosive", + "rootId": 1304, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1305": { + "rootName": "Light Gray Paintball Explosive", + "rootId": 1305, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1306": { + "rootName": "Light Blue Paintball Explosive", + "rootId": 1306, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1307": { + "rootName": "Green Paintball Explosive", + "rootId": 1307, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1308": { + "rootName": "Gray Paintball Explosive", + "rootId": 1308, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1309": { + "rootName": "Cyan Paintball Explosive", + "rootId": 1309, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1310": { + "rootName": "Brown Paintball Explosive", + "rootId": 1310, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1311": { + "rootName": "Blue Paintball Explosive", + "rootId": 1311, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1312": { + "rootName": "Black Paintball Explosive", + "rootId": 1312, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1313": { + "rootName": "Yellow Quick Paintball Explosive", + "rootId": 1313, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1314": { + "rootName": "White Quick Paintball Explosive", + "rootId": 1314, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1315": { + "rootName": "Red Quick Paintball Explosive", + "rootId": 1315, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1316": { + "rootName": "Purple Quick Paintball Explosive", + "rootId": 1316, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1317": { + "rootName": "Pink Quick Paintball Explosive", + "rootId": 1317, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1318": { + "rootName": "Orange Quick Paintball Explosive", + "rootId": 1318, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1319": { + "rootName": "Magenta Quick Paintball Explosive", + "rootId": 1319, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1320": { + "rootName": "Lime Quick Paintball Explosive", + "rootId": 1320, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1321": { + "rootName": "Light Gray Quick Paintball Explosive", + "rootId": 1321, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1322": { + "rootName": "Light Blue Quick Paintball Explosive", + "rootId": 1322, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1323": { + "rootName": "Green Quick Paintball Explosive", + "rootId": 1323, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1324": { + "rootName": "Gray Quick Paintball Explosive", + "rootId": 1324, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1325": { + "rootName": "Cyan Quick Paintball Explosive", + "rootId": 1325, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1326": { + "rootName": "Brown Quick Paintball Explosive", + "rootId": 1326, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1327": { + "rootName": "Blue Quick Paintball Explosive", + "rootId": 1327, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1328": { + "rootName": "Black Quick Paintball Explosive", + "rootId": 1328, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1329": { + "rootName": "Yellow Seeking Paintball Explosive", + "rootId": 1329, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1330": { + "rootName": "White Seeking Paintball Explosive", + "rootId": 1330, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1331": { + "rootName": "Red Seeking Paintball Explosive", + "rootId": 1331, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1332": { + "rootName": "Purple Seeking Paintball Explosive", + "rootId": 1332, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1333": { + "rootName": "Pink Seeking Paintball Explosive", + "rootId": 1333, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1334": { + "rootName": "Orange Seeking Paintball Explosive", + "rootId": 1334, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1335": { + "rootName": "Magenta Seeking Paintball Explosive", + "rootId": 1335, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1336": { + "rootName": "Lime Seeking Paintball Explosive", + "rootId": 1336, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1337": { + "rootName": "Light Gray Seeking Paintball Explosive", + "rootId": 1337, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1338": { + "rootName": "Light Blue Seeking Paintball Explosive", + "rootId": 1338, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1339": { + "rootName": "Green Seeking Paintball Explosive", + "rootId": 1339, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1340": { + "rootName": "Gray Seeking Paintball Explosive", + "rootId": 1340, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1341": { + "rootName": "Cyan Seeking Paintball Explosive", + "rootId": 1341, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1342": { + "rootName": "Brown Seeking Paintball Explosive", + "rootId": 1342, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1343": { + "rootName": "Blue Seeking Paintball Explosive", + "rootId": 1343, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1344": { + "rootName": "Black Seeking Paintball Explosive", + "rootId": 1344, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1345": { + "rootName": "Yellow Sticky Paintball Explosive", + "rootId": 1345, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1346": { + "rootName": "White Sticky Paintball Explosive", + "rootId": 1346, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1347": { + "rootName": "Red Sticky Paintball Explosive", + "rootId": 1347, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1348": { + "rootName": "Purple Sticky Paintball Explosive", + "rootId": 1348, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1349": { + "rootName": "Pink Sticky Paintball Explosive", + "rootId": 1349, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1350": { + "rootName": "Orange Sticky Paintball Explosive", + "rootId": 1350, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1351": { + "rootName": "Magenta Sticky Paintball Explosive", + "rootId": 1351, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1352": { + "rootName": "Lime Sticky Paintball Explosive", + "rootId": 1352, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1353": { + "rootName": "Light Gray Sticky Paintball Explosive", + "rootId": 1353, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1354": { + "rootName": "Light Blue Sticky Paintball Explosive", + "rootId": 1354, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1355": { + "rootName": "Green Sticky Paintball Explosive", + "rootId": 1355, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1356": { + "rootName": "Gray Sticky Paintball Explosive", + "rootId": 1356, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1357": { + "rootName": "Cyan Sticky Paintball Explosive", + "rootId": 1357, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1358": { + "rootName": "Brown Sticky Paintball Explosive", + "rootId": 1358, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1359": { + "rootName": "Blue Sticky Paintball Explosive", + "rootId": 1359, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1360": { + "rootName": "Black Sticky Paintball Explosive", + "rootId": 1360, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1361": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1362": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1363": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1364": { + "rootName": "White Strongbed", + "rootId": 1361, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1365": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1366": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1367": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1368": { + "rootName": "_White Strongbed Head", + "rootId": 1365, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1369": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1370": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1371": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1372": { + "rootName": "Orange Strongbed", + "rootId": 1369, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1373": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1374": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1375": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1376": { + "rootName": "_Orange Strongbed Head", + "rootId": 1373, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1377": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1378": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1379": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1380": { + "rootName": "Magenta Strongbed", + "rootId": 1377, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1381": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1382": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1383": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1384": { + "rootName": "_Magenta Strongbed Head", + "rootId": 1381, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1385": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1386": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1387": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1388": { + "rootName": "Light Blue Strongbed", + "rootId": 1385, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1389": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1390": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1391": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1392": { + "rootName": "_Light Blue Strongbed Head", + "rootId": 1389, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1393": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1394": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1395": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1396": { + "rootName": "Yellow Strongbed", + "rootId": 1393, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1397": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1398": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1399": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1400": { + "rootName": "_Yellow Strongbed Head", + "rootId": 1397, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1401": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1402": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1403": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1404": { + "rootName": "Lime Strongbed", + "rootId": 1401, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1405": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1406": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1407": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1408": { + "rootName": "_Lime Strongbed Head", + "rootId": 1405, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1409": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1410": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1411": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1412": { + "rootName": "Pink Strongbed", + "rootId": 1409, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1413": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1414": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1415": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1416": { + "rootName": "_Pink Strongbed Head", + "rootId": 1413, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1417": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1418": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1419": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1420": { + "rootName": "Gray Strongbed", + "rootId": 1417, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1421": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1422": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1423": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1424": { + "rootName": "_Gray Strongbed Head", + "rootId": 1421, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1425": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1426": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1427": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1428": { + "rootName": "Light Gray Strongbed", + "rootId": 1425, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1429": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1430": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1431": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1432": { + "rootName": "_Light Gray Strongbed Head", + "rootId": 1429, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1433": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1434": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1435": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1436": { + "rootName": "Cyan Strongbed", + "rootId": 1433, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1437": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1438": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1439": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1440": { + "rootName": "_Cyan Strongbed Head", + "rootId": 1437, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1441": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1442": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1443": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1444": { + "rootName": "Purple Strongbed", + "rootId": 1441, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1445": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1446": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1447": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1448": { + "rootName": "_Purple Strongbed Head", + "rootId": 1445, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1449": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1450": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1451": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1452": { + "rootName": "Blue Strongbed", + "rootId": 1449, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1453": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1454": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1455": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1456": { + "rootName": "_Blue Strongbed Head", + "rootId": 1453, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1457": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1458": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1459": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1460": { + "rootName": "Brown Strongbed", + "rootId": 1457, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1461": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1462": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1463": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1464": { + "rootName": "_Brown Strongbed Head", + "rootId": 1461, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1465": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1466": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1467": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1468": { + "rootName": "Green Strongbed", + "rootId": 1465, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1469": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1470": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1471": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1472": { + "rootName": "_Green Strongbed Head", + "rootId": 1469, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1473": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1474": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1475": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1476": { + "rootName": "Red Strongbed", + "rootId": 1473, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1477": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1478": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1479": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1480": { + "rootName": "_Red Strongbed Head", + "rootId": 1477, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1481": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1482": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1483": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1484": { + "rootName": "Black Strongbed", + "rootId": 1481, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1485": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1486": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1487": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1488": { + "rootName": "_Black Strongbed Head", + "rootId": 1485, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1489": { + "rootName": "Timed Spike Bomb Block", + "rootId": 1489, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1490": { + "rootName": "Timed Spike Bomb Block", + "rootId": 1489, + "metaStr": "Flashing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1491": { + "rootName": "Lava", + "rootId": 1491, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1492": { + "rootName": "Fat Brown Mushroom", + "rootId": 1492, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1493": { + "rootName": "Fat Red Mushroom", + "rootId": 1493, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1494": { + "rootName": "Chili Pepper Block", + "rootId": 1494, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1495": { + "rootName": "Chili Pepper Seeds", + "rootId": 1495, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1496": { + "rootName": "Chili Pepper Plant_stage1", + "rootId": 1496, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1497": { + "rootName": "Chili Pepper Plant_stage2", + "rootId": 1497, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1498": { + "rootName": "Chili Pepper Plant_stage3", + "rootId": 1498, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1499": { + "rootName": "Chili Pepper Plant_stage4", + "rootId": 1499, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1500": { + "rootName": "Chili Pepper Plant", + "rootId": 1500, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1501": { + "rootName": "Chili Pepper Plant", + "rootId": 1500, + "metaStr": "FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1502": { + "rootName": "Chili Pepper Seeds", + "rootId": 1495, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1503": { + "rootName": "Chili Pepper Plant_stage1", + "rootId": 1496, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1504": { + "rootName": "Chili Pepper Plant_stage2", + "rootId": 1497, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1505": { + "rootName": "Chili Pepper Plant_stage3", + "rootId": 1498, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1506": { + "rootName": "Chili Pepper Plant_stage4", + "rootId": 1499, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1507": { + "rootName": "Chili Pepper Plant_stage5", + "rootId": 1507, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1508": { + "rootName": "Chili Pepper Plant_stage5", + "rootId": 1507, + "metaStr": "Lava", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1509": { + "rootName": "Chili Pepper Plant", + "rootId": 1500, + "metaStr": "Lava|FreshlyGrown", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1510": { + "rootName": "Code Block", + "rootId": 1510, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1511": { + "rootName": "Toxin Ball Block", + "rootId": 1511, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1512": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1513": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1514": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1515": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1516": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1517": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1518": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1519": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1520": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1521": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1522": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1523": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1524": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1525": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1526": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1527": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1528": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1529": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1530": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1531": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1532": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1533": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1534": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1535": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1536": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1537": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1538": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1539": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1540": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1541": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1542": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1543": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1544": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1545": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1546": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1547": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1548": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1549": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1550": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1551": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1552": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1553": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1554": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1555": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1556": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1557": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1558": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1559": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1560": { + "rootName": "Spawn Block (Yellow)", + "rootId": 1512, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1561": { + "rootName": "Spawn Block (White)", + "rootId": 1513, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1562": { + "rootName": "Spawn Block (Red)", + "rootId": 1514, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1563": { + "rootName": "Spawn Block (Purple)", + "rootId": 1515, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1564": { + "rootName": "Spawn Block (Pink)", + "rootId": 1516, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1565": { + "rootName": "Spawn Block (Orange)", + "rootId": 1517, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1566": { + "rootName": "Spawn Block (Magenta)", + "rootId": 1518, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1567": { + "rootName": "Spawn Block (Lime)", + "rootId": 1519, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1568": { + "rootName": "Spawn Block (Light Gray)", + "rootId": 1520, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1569": { + "rootName": "Spawn Block (Light Blue)", + "rootId": 1521, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1570": { + "rootName": "Spawn Block (Green)", + "rootId": 1522, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1571": { + "rootName": "Spawn Block (Gray)", + "rootId": 1523, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1572": { + "rootName": "Spawn Block (Cyan)", + "rootId": 1524, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1573": { + "rootName": "Spawn Block (Brown)", + "rootId": 1525, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1574": { + "rootName": "Spawn Block (Blue)", + "rootId": 1526, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1575": { + "rootName": "Spawn Block (Black)", + "rootId": 1527, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1576": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1577": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1578": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1579": { + "rootName": "Checkpoint Block", + "rootId": 1576, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1580": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1581": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1582": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1583": { + "rootName": "Custom Lobby Block", + "rootId": 1580, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1584": { + "rootName": "Generator Spawn Block (Red)", + "rootId": 1584, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1585": { + "rootName": "Generator Spawn Block (Blue)", + "rootId": 1585, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1586": { + "rootName": "Generator Spawn Block (Lime)", + "rootId": 1586, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1587": { + "rootName": "Generator Spawn Block (Yellow)", + "rootId": 1587, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1588": { + "rootName": "Generator Spawn Block (Cyan)", + "rootId": 1588, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1589": { + "rootName": "Generator Spawn Block (White)", + "rootId": 1589, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1590": { + "rootName": "Generator Spawn Block (Pink)", + "rootId": 1590, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1591": { + "rootName": "Generator Spawn Block (Gray)", + "rootId": 1591, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1592": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1593": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1594": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1595": { + "rootName": "Trader Shop Spawn Block", + "rootId": 1592, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1596": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1597": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1598": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1599": { + "rootName": "Wizard Shop Spawn Block", + "rootId": 1596, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1600": { + "rootName": "Generator Spawn Block (Diamond)", + "rootId": 1600, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1601": { + "rootName": "Generator Spawn Block (Moonstone)", + "rootId": 1601, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1602": { + "rootName": "Generator Spawn Block (Ore)", + "rootId": 1602, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1603": { + "rootName": "Goal Block (Red)", + "rootId": 1603, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1604": { + "rootName": "Goal Block (Blue)", + "rootId": 1604, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1605": { + "rootName": "Finish Block", + "rootId": 1605, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1606": { + "rootName": "Drop Location Block", + "rootId": 1606, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1607": { + "rootName": "Obby Death Block", + "rootId": 1607, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1608": { + "rootName": "Obby Absorb Block", + "rootId": 1608, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1609": { + "rootName": "Obby Absorb Death Block", + "rootId": 1609, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1610": { + "rootName": "Bone Block", + "rootId": 1610, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1611": { + "rootName": "Pig Spawner Block", + "rootId": 1611, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1612": { + "rootName": "Cow Spawner Block", + "rootId": 1612, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1613": { + "rootName": "Sheep Spawner Block", + "rootId": 1613, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1614": { + "rootName": "Cave Golem Spawner Block", + "rootId": 1614, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1615": { + "rootName": "Draugr Zombie Spawner Block", + "rootId": 1615, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1616": { + "rootName": "Draugr Skeleton Spawner Block", + "rootId": 1616, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1617": { + "rootName": "Empty Spawner Block", + "rootId": 1617, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1618": { + "rootName": "Frost Golem Spawner Block", + "rootId": 1618, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1619": { + "rootName": "Frost Zombie Spawner Block", + "rootId": 1619, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1620": { + "rootName": "Frost Skeleton Spawner Block", + "rootId": 1620, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1621": { + "rootName": "Snowy Messy Stone", + "rootId": 1621, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1622": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1623": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1624": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1625": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1626": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1627": { + "rootName": "Snowy Stone Slab", + "rootId": 1622, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1628": { + "rootName": "Draugr Knight Spawner Block", + "rootId": 1628, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1629": { + "rootName": "Packed Snow", + "rootId": 1629, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1630": { + "rootName": "Carved Messy Stone", + "rootId": 1630, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1631": { + "rootName": "Spectral Grass", + "rootId": 1631, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1632": { + "rootName": "Spectral Log", + "rootId": 1632, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1633": { + "rootName": "Barkless Spectral Log", + "rootId": 1633, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1634": { + "rootName": "Barkless Spectral Log", + "rootId": 1633, + "metaStr": "TreeBase|Spectral", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Spectral", + "charging": null, + "direction": null, + "books": null + }, + "1635": { + "rootName": "Spectral Wood Planks", + "rootId": 1635, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1636": { + "rootName": "Spectral Leaves", + "rootId": 1636, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1637": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1638": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1639": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1640": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1641": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1642": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1643": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1644": { + "rootName": "Spectral Door", + "rootId": 1637, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1645": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1646": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1647": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1648": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1649": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1650": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1651": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1652": { + "rootName": "_Spectral Door Top", + "rootId": 1645, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1653": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1654": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1655": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1656": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1657": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1658": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1659": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1660": { + "rootName": "Spectral Trapdoor", + "rootId": 1653, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1661": { + "rootName": "Spectral Sapling", + "rootId": 1661, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1662": { + "rootName": "Spectral Log", + "rootId": 1632, + "metaStr": "TreeBase|Spectral", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Spectral", + "charging": null, + "direction": null, + "books": null + }, + "1663": { + "rootName": "Spectral Leaves", + "rootId": 1636, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1664": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1665": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1666": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1667": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1668": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1669": { + "rootName": "Spectral Slab", + "rootId": 1664, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1670": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1671": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1672": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1673": { + "rootName": "Spectral Ladder", + "rootId": 1670, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1674": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1675": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1676": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1677": { + "rootName": "Wood Enchanting Table", + "rootId": 1674, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1678": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1679": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1680": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1681": { + "rootName": "Stone Enchanting Table", + "rootId": 1678, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1682": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1683": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1684": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1685": { + "rootName": "Iron Enchanting Table", + "rootId": 1682, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1686": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1687": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1688": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1689": { + "rootName": "Gold Enchanting Table", + "rootId": 1686, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1690": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1691": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1692": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1693": { + "rootName": "Diamond Enchanting Table", + "rootId": 1690, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1694": { + "rootName": "Pine Grass Block", + "rootId": 1694, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1695": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1696": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1697": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1698": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1699": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1700": { + "rootName": "Pine Grass Slab", + "rootId": 1695, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1701": { + "rootName": "Pine Grass", + "rootId": 1701, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1702": { + "rootName": "Pine Fern", + "rootId": 1702, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1703": { + "rootName": "Fallen Pine Cone", + "rootId": 1703, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1704": { + "rootName": "Pine Cone Block", + "rootId": 1704, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1705": { + "rootName": "Wolf Spawner Block", + "rootId": 1705, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1706": { + "rootName": "Bear Spawner Block", + "rootId": 1706, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1707": { + "rootName": "Deer Spawner Block", + "rootId": 1707, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1708": { + "rootName": "Stag Spawner Block", + "rootId": 1708, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1709": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1710": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1711": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1712": { + "rootName": "Bone Antlers", + "rootId": 1709, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1713": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1714": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1715": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1716": { + "rootName": "Gold Antlers", + "rootId": 1713, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1717": { + "rootName": "Gold Watermelon Stag Spawner Block", + "rootId": 1717, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1718": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1719": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1720": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1721": { + "rootName": "Salvaging Table", + "rootId": 1718, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1722": { + "rootName": "Chalk", + "rootId": 1722, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1723": { + "rootName": "Yellow Chalk", + "rootId": 1723, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1724": { + "rootName": "White Chalk", + "rootId": 1724, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1725": { + "rootName": "Red Chalk", + "rootId": 1725, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1726": { + "rootName": "Purple Chalk", + "rootId": 1726, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1727": { + "rootName": "Pink Chalk", + "rootId": 1727, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1728": { + "rootName": "Orange Chalk", + "rootId": 1728, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1729": { + "rootName": "Magenta Chalk", + "rootId": 1729, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1730": { + "rootName": "Lime Chalk", + "rootId": 1730, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1731": { + "rootName": "Light Gray Chalk", + "rootId": 1731, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1732": { + "rootName": "Light Blue Chalk", + "rootId": 1732, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1733": { + "rootName": "Green Chalk", + "rootId": 1733, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1734": { + "rootName": "Gray Chalk", + "rootId": 1734, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1735": { + "rootName": "Cyan Chalk", + "rootId": 1735, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1736": { + "rootName": "Brown Chalk", + "rootId": 1736, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1737": { + "rootName": "Blue Chalk", + "rootId": 1737, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1738": { + "rootName": "Black Chalk", + "rootId": 1738, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1739": { + "rootName": "Yellow Chalk Bricks", + "rootId": 1739, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1740": { + "rootName": "White Chalk Bricks", + "rootId": 1740, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1741": { + "rootName": "Red Chalk Bricks", + "rootId": 1741, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1742": { + "rootName": "Purple Chalk Bricks", + "rootId": 1742, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1743": { + "rootName": "Pink Chalk Bricks", + "rootId": 1743, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1744": { + "rootName": "Orange Chalk Bricks", + "rootId": 1744, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1745": { + "rootName": "Magenta Chalk Bricks", + "rootId": 1745, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1746": { + "rootName": "Lime Chalk Bricks", + "rootId": 1746, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1747": { + "rootName": "Light Gray Chalk Bricks", + "rootId": 1747, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1748": { + "rootName": "Light Blue Chalk Bricks", + "rootId": 1748, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1749": { + "rootName": "Green Chalk Bricks", + "rootId": 1749, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1750": { + "rootName": "Gray Chalk Bricks", + "rootId": 1750, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1751": { + "rootName": "Cyan Chalk Bricks", + "rootId": 1751, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1752": { + "rootName": "Brown Chalk Bricks", + "rootId": 1752, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1753": { + "rootName": "Blue Chalk Bricks", + "rootId": 1753, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1754": { + "rootName": "Black Chalk Bricks", + "rootId": 1754, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1755": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1756": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1757": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1758": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1759": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1760": { + "rootName": "Yellow Chalk Slab", + "rootId": 1755, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1761": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1762": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1763": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1764": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1765": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1766": { + "rootName": "White Chalk Slab", + "rootId": 1761, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1767": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1768": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1769": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1770": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1771": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1772": { + "rootName": "Red Chalk Slab", + "rootId": 1767, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1773": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1774": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1775": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1776": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1777": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1778": { + "rootName": "Purple Chalk Slab", + "rootId": 1773, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1779": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1780": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1781": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1782": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1783": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1784": { + "rootName": "Pink Chalk Slab", + "rootId": 1779, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1785": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1786": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1787": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1788": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1789": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1790": { + "rootName": "Orange Chalk Slab", + "rootId": 1785, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1791": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1792": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1793": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1794": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1795": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1796": { + "rootName": "Magenta Chalk Slab", + "rootId": 1791, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1797": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1798": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1799": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1800": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1801": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1802": { + "rootName": "Lime Chalk Slab", + "rootId": 1797, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1803": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1804": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1805": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1806": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1807": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1808": { + "rootName": "Light Gray Chalk Slab", + "rootId": 1803, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1809": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1810": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1811": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1812": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1813": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1814": { + "rootName": "Light Blue Chalk Slab", + "rootId": 1809, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1815": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1816": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1817": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1818": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1819": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1820": { + "rootName": "Green Chalk Slab", + "rootId": 1815, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1821": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1822": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1823": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1824": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1825": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1826": { + "rootName": "Gray Chalk Slab", + "rootId": 1821, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1827": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1828": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1829": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1830": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1831": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1832": { + "rootName": "Cyan Chalk Slab", + "rootId": 1827, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1833": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1834": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1835": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1836": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1837": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1838": { + "rootName": "Brown Chalk Slab", + "rootId": 1833, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1839": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1840": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1841": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1842": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1843": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1844": { + "rootName": "Blue Chalk Slab", + "rootId": 1839, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1845": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1846": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1847": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1848": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1849": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1850": { + "rootName": "Black Chalk Slab", + "rootId": 1845, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1851": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1852": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1853": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1854": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1855": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1856": { + "rootName": "Yellow Chalk Bricks Slab", + "rootId": 1851, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1857": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1858": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1859": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1860": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1861": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1862": { + "rootName": "White Chalk Bricks Slab", + "rootId": 1857, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1863": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1864": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1865": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1866": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1867": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1868": { + "rootName": "Red Chalk Bricks Slab", + "rootId": 1863, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1869": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1870": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1871": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1872": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1873": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1874": { + "rootName": "Purple Chalk Bricks Slab", + "rootId": 1869, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1875": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1876": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1877": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1878": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1879": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1880": { + "rootName": "Pink Chalk Bricks Slab", + "rootId": 1875, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1881": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1882": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1883": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1884": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1885": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1886": { + "rootName": "Orange Chalk Bricks Slab", + "rootId": 1881, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1887": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1888": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1889": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1890": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1891": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1892": { + "rootName": "Magenta Chalk Bricks Slab", + "rootId": 1887, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1893": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1894": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1895": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1896": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1897": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1898": { + "rootName": "Lime Chalk Bricks Slab", + "rootId": 1893, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1899": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1900": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1901": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1902": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1903": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1904": { + "rootName": "Light Gray Chalk Bricks Slab", + "rootId": 1899, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1905": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1906": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1907": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1908": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1909": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1910": { + "rootName": "Light Blue Chalk Bricks Slab", + "rootId": 1905, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1911": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1912": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1913": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1914": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1915": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1916": { + "rootName": "Green Chalk Bricks Slab", + "rootId": 1911, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1917": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1918": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1919": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1920": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1921": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1922": { + "rootName": "Gray Chalk Bricks Slab", + "rootId": 1917, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1923": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1924": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1925": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1926": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1927": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1928": { + "rootName": "Cyan Chalk Bricks Slab", + "rootId": 1923, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1929": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1930": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1931": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1932": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1933": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1934": { + "rootName": "Brown Chalk Bricks Slab", + "rootId": 1929, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1935": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1936": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1937": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1938": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1939": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1940": { + "rootName": "Blue Chalk Bricks Slab", + "rootId": 1935, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1941": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1942": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1943": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1944": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1945": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1946": { + "rootName": "Black Chalk Bricks Slab", + "rootId": 1941, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1947": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1948": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1949": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1950": { + "rootName": "Leaf Bed", + "rootId": 1947, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1951": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1952": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1953": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1954": { + "rootName": "_Leaf Bed Head", + "rootId": 1951, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1955": { + "rootName": "Jungle Grass Block", + "rootId": 1955, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1956": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1957": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1958": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1959": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1960": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1961": { + "rootName": "Jungle Grass Slab", + "rootId": 1956, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1962": { + "rootName": "Jungle Tall Grass", + "rootId": 1962, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1963": { + "rootName": "Jungle Tall Grass", + "rootId": 1962, + "metaStr": "Top", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1964": { + "rootName": "Catnip", + "rootId": 1964, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1965": { + "rootName": "Mango Log", + "rootId": 1965, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1966": { + "rootName": "Barkless Mango Log", + "rootId": 1966, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1967": { + "rootName": "Barkless Mango Log", + "rootId": 1966, + "metaStr": "TreeBase|Mango", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Mango", + "charging": null, + "direction": null, + "books": null + }, + "1968": { + "rootName": "Mango Wood Planks", + "rootId": 1968, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1969": { + "rootName": "Mango Leaves", + "rootId": 1969, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1970": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1971": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1972": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1973": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1974": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1975": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1976": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1977": { + "rootName": "Mango Door", + "rootId": 1970, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1978": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1979": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1980": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1981": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1982": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1983": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1984": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1985": { + "rootName": "_Mango Door Top", + "rootId": 1978, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1986": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot1|closed", + "rot": 1, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1987": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot1|open", + "rot": 1, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1988": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot2|closed", + "rot": 2, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1989": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot2|open", + "rot": 2, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1990": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot3|closed", + "rot": 3, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1991": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot3|open", + "rot": 3, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1992": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot4|closed", + "rot": 4, + "open": false, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1993": { + "rootName": "Mango Trapdoor", + "rootId": 1986, + "metaStr": "meta|rot4|open", + "rot": 4, + "open": true, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1994": { + "rootName": "Mango Sapling", + "rootId": 1994, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1995": { + "rootName": "Mango Log", + "rootId": 1965, + "metaStr": "TreeBase|Mango", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": true, + "treeCanopy": null, + "woodType": "Mango", + "charging": null, + "direction": null, + "books": null + }, + "1996": { + "rootName": "Mango Leaves", + "rootId": 1969, + "metaStr": "TreeCanopy", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": true, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1997": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot1|bot", + "rot": 1, + "open": null, + "halfblockPlacement": 0, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1998": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot1|top", + "rot": 1, + "open": null, + "halfblockPlacement": 1, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "1999": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot1|side", + "rot": 1, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2000": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot2|side", + "rot": 2, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2001": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot3|side", + "rot": 3, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2002": { + "rootName": "Mango Slab", + "rootId": 1997, + "metaStr": "meta|rot4|side", + "rot": 4, + "open": null, + "halfblockPlacement": 2, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2003": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2004": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2005": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2006": { + "rootName": "Mango Ladder", + "rootId": 2003, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2007": { + "rootName": "Mango Block", + "rootId": 2007, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2008": { + "rootName": "Banana Block", + "rootId": 2008, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2009": { + "rootName": "Banana Seeds", + "rootId": 2009, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2010": { + "rootName": "Banana Seeds", + "rootId": 2009, + "metaStr": "Growing", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": true, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2011": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot1", + "rot": 1, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2012": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot2", + "rot": 2, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2013": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot3", + "rot": 3, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2014": { + "rootName": "Attached Banana Stem", + "rootId": 2011, + "metaStr": "meta|rot4", + "rot": 4, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2015": { + "rootName": "Dangling Rope", + "rootId": 2015, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2016": { + "rootName": "Dangling Vine", + "rootId": 2016, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2017": { + "rootName": "Gorilla Spawner Block", + "rootId": 2017, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2018": { + "rootName": "Wildcat Spawner Block", + "rootId": 2018, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2019": { + "rootName": "Fruity Maple Leaves", + "rootId": 2019, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2020": { + "rootName": "Pine Cone Leaves", + "rootId": 2020, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2021": { + "rootName": "Fruity Plum Leaves", + "rootId": 2021, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2022": { + "rootName": "Fruity Palm Leaves", + "rootId": 2022, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2023": { + "rootName": "Fruity Pear Leaves", + "rootId": 2023, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2024": { + "rootName": "Fruity Cherry Leaves", + "rootId": 2024, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2025": { + "rootName": "Fruity Mango Leaves", + "rootId": 2025, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2026": { + "rootName": "Draugr Huntress Spawner Block", + "rootId": 2026, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2027": { + "rootName": "Magma Golem Spawner Block", + "rootId": 2027, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2028": { + "rootName": "Black Portal", + "rootId": 2028, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2029": { + "rootName": "Blue Portal", + "rootId": 2029, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2030": { + "rootName": "Brown Portal", + "rootId": 2030, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2031": { + "rootName": "Cyan Portal", + "rootId": 2031, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2032": { + "rootName": "Gray Portal", + "rootId": 2032, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2033": { + "rootName": "Green Portal", + "rootId": 2033, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2034": { + "rootName": "Grey Portal", + "rootId": 2034, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2035": { + "rootName": "Light Blue Portal", + "rootId": 2035, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2036": { + "rootName": "Light Gray Portal", + "rootId": 2036, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2037": { + "rootName": "Lime Portal", + "rootId": 2037, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2038": { + "rootName": "Magenta Portal", + "rootId": 2038, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2039": { + "rootName": "Orange Portal", + "rootId": 2039, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2040": { + "rootName": "Pink Portal", + "rootId": 2040, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2041": { + "rootName": "Purple Portal", + "rootId": 2041, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2042": { + "rootName": "Red Portal", + "rootId": 2042, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2043": { + "rootName": "White Portal", + "rootId": 2043, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2044": { + "rootName": "Yellow Portal", + "rootId": 2044, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2045": { + "rootName": "Wood Pickaxe", + "rootId": 2045, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2046": { + "rootName": "Stone Pickaxe", + "rootId": 2046, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2047": { + "rootName": "Iron Pickaxe", + "rootId": 2047, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2048": { + "rootName": "Gold Pickaxe", + "rootId": 2048, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2049": { + "rootName": "Diamond Pickaxe", + "rootId": 2049, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2050": { + "rootName": "Moonstone Pickaxe", + "rootId": 2050, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2051": { + "rootName": "Golem Pickaxe", + "rootId": 2051, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2052": { + "rootName": "Wood Axe", + "rootId": 2052, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2053": { + "rootName": "Stone Axe", + "rootId": 2053, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2054": { + "rootName": "Iron Axe", + "rootId": 2054, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2055": { + "rootName": "Gold Axe", + "rootId": 2055, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2056": { + "rootName": "Diamond Axe", + "rootId": 2056, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2057": { + "rootName": "Moonstone Axe", + "rootId": 2057, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2058": { + "rootName": "Artisan Axe", + "rootId": 2058, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2059": { + "rootName": "Wood Spade", + "rootId": 2059, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2060": { + "rootName": "Stone Spade", + "rootId": 2060, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2061": { + "rootName": "Iron Spade", + "rootId": 2061, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2062": { + "rootName": "Gold Spade", + "rootId": 2062, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2063": { + "rootName": "Diamond Spade", + "rootId": 2063, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2064": { + "rootName": "Wood Sword", + "rootId": 2064, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2065": { + "rootName": "Stone Sword", + "rootId": 2065, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2066": { + "rootName": "Iron Sword", + "rootId": 2066, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2067": { + "rootName": "Gold Sword", + "rootId": 2067, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2068": { + "rootName": "Diamond Sword", + "rootId": 2068, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2069": { + "rootName": "Knight Sword", + "rootId": 2069, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2070": { + "rootName": "Wood Hoe", + "rootId": 2070, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2071": { + "rootName": "Stone Hoe", + "rootId": 2071, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2072": { + "rootName": "Iron Hoe", + "rootId": 2072, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2073": { + "rootName": "Gold Hoe", + "rootId": 2073, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2074": { + "rootName": "Diamond Hoe", + "rootId": 2074, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2075": { + "rootName": "Wood Helmet", + "rootId": 2075, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2076": { + "rootName": "Iron Helmet", + "rootId": 2076, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2077": { + "rootName": "Gold Helmet", + "rootId": 2077, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2078": { + "rootName": "Diamond Helmet", + "rootId": 2078, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2079": { + "rootName": "Wood Chestplate", + "rootId": 2079, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2080": { + "rootName": "Iron Chestplate", + "rootId": 2080, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2081": { + "rootName": "Gold Chestplate", + "rootId": 2081, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2082": { + "rootName": "Diamond Chestplate", + "rootId": 2082, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2083": { + "rootName": "Fur Chestplate", + "rootId": 2083, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2084": { + "rootName": "Wood Leggings", + "rootId": 2084, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2085": { + "rootName": "Iron Leggings", + "rootId": 2085, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2086": { + "rootName": "Gold Leggings", + "rootId": 2086, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2087": { + "rootName": "Diamond Leggings", + "rootId": 2087, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2088": { + "rootName": "Wood Boots", + "rootId": 2088, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2089": { + "rootName": "Iron Boots", + "rootId": 2089, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2090": { + "rootName": "Gold Boots", + "rootId": 2090, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2091": { + "rootName": "Diamond Boots", + "rootId": 2091, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2092": { + "rootName": "Spiked Boots", + "rootId": 2092, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2093": { + "rootName": "Wood Gauntlets", + "rootId": 2093, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2094": { + "rootName": "Iron Gauntlets", + "rootId": 2094, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2095": { + "rootName": "Gold Gauntlets", + "rootId": 2095, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2096": { + "rootName": "Diamond Gauntlets", + "rootId": 2096, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2097": { + "rootName": "White Wood Helmet", + "rootId": 2097, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2098": { + "rootName": "White Wood Chestplate", + "rootId": 2098, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2099": { + "rootName": "White Wood Leggings", + "rootId": 2099, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2100": { + "rootName": "White Wood Boots", + "rootId": 2100, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2101": { + "rootName": "White Wood Gauntlets", + "rootId": 2101, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2102": { + "rootName": "Orange Wood Helmet", + "rootId": 2102, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2103": { + "rootName": "Orange Wood Chestplate", + "rootId": 2103, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2104": { + "rootName": "Orange Wood Leggings", + "rootId": 2104, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2105": { + "rootName": "Orange Wood Boots", + "rootId": 2105, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2106": { + "rootName": "Orange Wood Gauntlets", + "rootId": 2106, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2107": { + "rootName": "Magenta Wood Helmet", + "rootId": 2107, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2108": { + "rootName": "Magenta Wood Chestplate", + "rootId": 2108, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2109": { + "rootName": "Magenta Wood Leggings", + "rootId": 2109, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2110": { + "rootName": "Magenta Wood Boots", + "rootId": 2110, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2111": { + "rootName": "Magenta Wood Gauntlets", + "rootId": 2111, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2112": { + "rootName": "Light Blue Wood Helmet", + "rootId": 2112, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2113": { + "rootName": "Light Blue Wood Chestplate", + "rootId": 2113, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2114": { + "rootName": "Light Blue Wood Leggings", + "rootId": 2114, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2115": { + "rootName": "Light Blue Wood Boots", + "rootId": 2115, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2116": { + "rootName": "Light Blue Wood Gauntlets", + "rootId": 2116, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2117": { + "rootName": "Yellow Wood Helmet", + "rootId": 2117, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2118": { + "rootName": "Yellow Wood Chestplate", + "rootId": 2118, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2119": { + "rootName": "Yellow Wood Leggings", + "rootId": 2119, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2120": { + "rootName": "Yellow Wood Boots", + "rootId": 2120, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2121": { + "rootName": "Yellow Wood Gauntlets", + "rootId": 2121, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2122": { + "rootName": "Lime Wood Helmet", + "rootId": 2122, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2123": { + "rootName": "Lime Wood Chestplate", + "rootId": 2123, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2124": { + "rootName": "Lime Wood Leggings", + "rootId": 2124, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2125": { + "rootName": "Lime Wood Boots", + "rootId": 2125, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2126": { + "rootName": "Lime Wood Gauntlets", + "rootId": 2126, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2127": { + "rootName": "Pink Wood Helmet", + "rootId": 2127, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2128": { + "rootName": "Pink Wood Chestplate", + "rootId": 2128, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2129": { + "rootName": "Pink Wood Leggings", + "rootId": 2129, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2130": { + "rootName": "Pink Wood Boots", + "rootId": 2130, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2131": { + "rootName": "Pink Wood Gauntlets", + "rootId": 2131, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2132": { + "rootName": "Gray Wood Helmet", + "rootId": 2132, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2133": { + "rootName": "Gray Wood Chestplate", + "rootId": 2133, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2134": { + "rootName": "Gray Wood Leggings", + "rootId": 2134, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2135": { + "rootName": "Gray Wood Boots", + "rootId": 2135, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2136": { + "rootName": "Gray Wood Gauntlets", + "rootId": 2136, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2137": { + "rootName": "Light Gray Wood Helmet", + "rootId": 2137, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2138": { + "rootName": "Light Gray Wood Chestplate", + "rootId": 2138, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2139": { + "rootName": "Light Gray Wood Leggings", + "rootId": 2139, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2140": { + "rootName": "Light Gray Wood Boots", + "rootId": 2140, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2141": { + "rootName": "Light Gray Wood Gauntlets", + "rootId": 2141, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2142": { + "rootName": "Cyan Wood Helmet", + "rootId": 2142, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2143": { + "rootName": "Cyan Wood Chestplate", + "rootId": 2143, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2144": { + "rootName": "Cyan Wood Leggings", + "rootId": 2144, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2145": { + "rootName": "Cyan Wood Boots", + "rootId": 2145, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2146": { + "rootName": "Cyan Wood Gauntlets", + "rootId": 2146, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2147": { + "rootName": "Purple Wood Helmet", + "rootId": 2147, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2148": { + "rootName": "Purple Wood Chestplate", + "rootId": 2148, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2149": { + "rootName": "Purple Wood Leggings", + "rootId": 2149, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2150": { + "rootName": "Purple Wood Boots", + "rootId": 2150, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2151": { + "rootName": "Purple Wood Gauntlets", + "rootId": 2151, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2152": { + "rootName": "Blue Wood Helmet", + "rootId": 2152, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2153": { + "rootName": "Blue Wood Chestplate", + "rootId": 2153, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2154": { + "rootName": "Blue Wood Leggings", + "rootId": 2154, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2155": { + "rootName": "Blue Wood Boots", + "rootId": 2155, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2156": { + "rootName": "Blue Wood Gauntlets", + "rootId": 2156, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2157": { + "rootName": "Brown Wood Helmet", + "rootId": 2157, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2158": { + "rootName": "Brown Wood Chestplate", + "rootId": 2158, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2159": { + "rootName": "Brown Wood Leggings", + "rootId": 2159, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2160": { + "rootName": "Brown Wood Boots", + "rootId": 2160, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2161": { + "rootName": "Brown Wood Gauntlets", + "rootId": 2161, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2162": { + "rootName": "Green Wood Helmet", + "rootId": 2162, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2163": { + "rootName": "Green Wood Chestplate", + "rootId": 2163, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2164": { + "rootName": "Green Wood Leggings", + "rootId": 2164, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2165": { + "rootName": "Green Wood Boots", + "rootId": 2165, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2166": { + "rootName": "Green Wood Gauntlets", + "rootId": 2166, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2167": { + "rootName": "Red Wood Helmet", + "rootId": 2167, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2168": { + "rootName": "Red Wood Chestplate", + "rootId": 2168, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2169": { + "rootName": "Red Wood Leggings", + "rootId": 2169, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2170": { + "rootName": "Red Wood Boots", + "rootId": 2170, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2171": { + "rootName": "Red Wood Gauntlets", + "rootId": 2171, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2172": { + "rootName": "Black Wood Helmet", + "rootId": 2172, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2173": { + "rootName": "Black Wood Chestplate", + "rootId": 2173, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2174": { + "rootName": "Black Wood Leggings", + "rootId": 2174, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2175": { + "rootName": "Black Wood Boots", + "rootId": 2175, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2176": { + "rootName": "Black Wood Gauntlets", + "rootId": 2176, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2177": { + "rootName": "Shears", + "rootId": 2177, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2178": { + "rootName": "Artisan Shears", + "rootId": 2178, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2179": { + "rootName": "Stick", + "rootId": 2179, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2180": { + "rootName": "Coal", + "rootId": 2180, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2181": { + "rootName": "Raw Iron", + "rootId": 2181, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2182": { + "rootName": "Iron Bar", + "rootId": 2182, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2183": { + "rootName": "Iron Fragment", + "rootId": 2183, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2184": { + "rootName": "Raw Gold", + "rootId": 2184, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2185": { + "rootName": "Gold Bar", + "rootId": 2185, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2186": { + "rootName": "Gold Fragment", + "rootId": 2186, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2187": { + "rootName": "Diamond", + "rootId": 2187, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2188": { + "rootName": "Diamond Fragment", + "rootId": 2188, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2189": { + "rootName": "Moonstone", + "rootId": 2189, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2190": { + "rootName": "Moonstone Fragment", + "rootId": 2190, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2191": { + "rootName": "Bowl", + "rootId": 2191, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2192": { + "rootName": "Partially Full Bowl of Cranberries", + "rootId": 2192, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2193": { + "rootName": "Half Full Bowl of Cranberries", + "rootId": 2193, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2194": { + "rootName": "Nearly Full Bowl of Cranberries", + "rootId": 2194, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2195": { + "rootName": "Bowl of Cranberries", + "rootId": 2195, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2196": { + "rootName": "Mushroom Soup", + "rootId": 2196, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2197": { + "rootName": "Cotton", + "rootId": 2197, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2198": { + "rootName": "Bucket", + "rootId": 2198, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2199": { + "rootName": "Water Bucket", + "rootId": 2199, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2200": { + "rootName": "Lava Bucket", + "rootId": 2200, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2201": { + "rootName": "Boat", + "rootId": 2201, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2202": { + "rootName": "INTERNAL_MESH_Boat", + "rootId": 2202, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2203": { + "rootName": "Obsidian Boat", + "rootId": 2203, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2204": { + "rootName": "INTERNAL_MESH_Obsidian Boat", + "rootId": 2204, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2205": { + "rootName": "Wood Hang Glider", + "rootId": 2205, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2206": { + "rootName": "INTERNAL_MESH_Wood Hang Glider", + "rootId": 2206, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2207": { + "rootName": "Iron Hang Glider", + "rootId": 2207, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2208": { + "rootName": "INTERNAL_MESH_Iron Hang Glider", + "rootId": 2208, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2209": { + "rootName": "Gold Hang Glider", + "rootId": 2209, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2210": { + "rootName": "INTERNAL_MESH_Gold Hang Glider", + "rootId": 2210, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2211": { + "rootName": "Diamond Hang Glider", + "rootId": 2211, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2212": { + "rootName": "INTERNAL_MESH_Diamond Hang Glider", + "rootId": 2212, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2213": { + "rootName": "INTERNAL_MESH_Kart", + "rootId": 2213, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2214": { + "rootName": "Snowball", + "rootId": 2214, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2215": { + "rootName": "Pebble", + "rootId": 2215, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2216": { + "rootName": "Reinforced Pebble", + "rootId": 2216, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2217": { + "rootName": "Ball", + "rootId": 2217, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2218": { + "rootName": "Reinforced Ball", + "rootId": 2218, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2219": { + "rootName": "Moonstone Orb", + "rootId": 2219, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2220": { + "rootName": "Fireball", + "rootId": 2220, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2221": { + "rootName": "Bouncy Bomb", + "rootId": 2221, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2222": { + "rootName": "RPG", + "rootId": 2222, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2223": { + "rootName": "Obby RPG", + "rootId": 2223, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2224": { + "rootName": "Super RPG", + "rootId": 2224, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2225": { + "rootName": "Grenade Launcher", + "rootId": 2225, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2226": { + "rootName": "Iceball", + "rootId": 2226, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2227": { + "rootName": "Wood Bow", + "rootId": 2227, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2228": { + "rootName": "Wood Bow", + "rootId": 2227, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2229": { + "rootName": "Wood Bow", + "rootId": 2227, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2230": { + "rootName": "Wood Bow", + "rootId": 2227, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2231": { + "rootName": "Stone Bow", + "rootId": 2231, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2232": { + "rootName": "Stone Bow", + "rootId": 2231, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2233": { + "rootName": "Stone Bow", + "rootId": 2231, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2234": { + "rootName": "Stone Bow", + "rootId": 2231, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2235": { + "rootName": "Iron Bow", + "rootId": 2235, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2236": { + "rootName": "Iron Bow", + "rootId": 2235, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2237": { + "rootName": "Iron Bow", + "rootId": 2235, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2238": { + "rootName": "Iron Bow", + "rootId": 2235, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2239": { + "rootName": "Gold Bow", + "rootId": 2239, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2240": { + "rootName": "Gold Bow", + "rootId": 2239, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2241": { + "rootName": "Gold Bow", + "rootId": 2239, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2242": { + "rootName": "Gold Bow", + "rootId": 2239, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2243": { + "rootName": "Diamond Bow", + "rootId": 2243, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2244": { + "rootName": "Diamond Bow", + "rootId": 2243, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2245": { + "rootName": "Diamond Bow", + "rootId": 2243, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2246": { + "rootName": "Diamond Bow", + "rootId": 2243, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2247": { + "rootName": "Wood Crossbow", + "rootId": 2247, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2248": { + "rootName": "Wood Crossbow", + "rootId": 2247, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2249": { + "rootName": "Wood Crossbow", + "rootId": 2247, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2250": { + "rootName": "Wood Crossbow", + "rootId": 2247, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2251": { + "rootName": "Stone Crossbow", + "rootId": 2251, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2252": { + "rootName": "Stone Crossbow", + "rootId": 2251, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2253": { + "rootName": "Stone Crossbow", + "rootId": 2251, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2254": { + "rootName": "Stone Crossbow", + "rootId": 2251, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2255": { + "rootName": "Iron Crossbow", + "rootId": 2255, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2256": { + "rootName": "Iron Crossbow", + "rootId": 2255, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2257": { + "rootName": "Iron Crossbow", + "rootId": 2255, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2258": { + "rootName": "Iron Crossbow", + "rootId": 2255, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2259": { + "rootName": "Gold Crossbow", + "rootId": 2259, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2260": { + "rootName": "Gold Crossbow", + "rootId": 2259, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2261": { + "rootName": "Gold Crossbow", + "rootId": 2259, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2262": { + "rootName": "Gold Crossbow", + "rootId": 2259, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2263": { + "rootName": "Diamond Crossbow", + "rootId": 2263, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2264": { + "rootName": "Diamond Crossbow", + "rootId": 2263, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2265": { + "rootName": "Diamond Crossbow", + "rootId": 2263, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2266": { + "rootName": "Diamond Crossbow", + "rootId": 2263, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2267": { + "rootName": "Wood Crossbow Charged", + "rootId": 2267, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2268": { + "rootName": "Stone Crossbow Charged", + "rootId": 2268, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2269": { + "rootName": "Iron Crossbow Charged", + "rootId": 2269, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2270": { + "rootName": "Gold Crossbow Charged", + "rootId": 2270, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2271": { + "rootName": "Diamond Crossbow Charged", + "rootId": 2271, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2272": { + "rootName": "Arrow", + "rootId": 2272, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2273": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 1, + "books": null + }, + "2274": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 2, + "books": null + }, + "2275": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 3, + "books": null + }, + "2276": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 4, + "books": null + }, + "2277": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir5", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 5, + "books": null + }, + "2278": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir6", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 6, + "books": null + }, + "2279": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir7", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 7, + "books": null + }, + "2280": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir8", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 8, + "books": null + }, + "2281": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir9", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 9, + "books": null + }, + "2282": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir10", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 1, + "books": null + }, + "2283": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir11", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 1, + "books": null + }, + "2284": { + "rootName": "Compass", + "rootId": 2273, + "metaStr": "meta|dir12", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": 1, + "books": null + }, + "2285": { + "rootName": "Bread", + "rootId": 2285, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2286": { + "rootName": "Bowl of Rice", + "rootId": 2286, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2287": { + "rootName": "Apple", + "rootId": 2287, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2288": { + "rootName": "Plum", + "rootId": 2288, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2289": { + "rootName": "Coconut", + "rootId": 2289, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2290": { + "rootName": "Cracked Coconut", + "rootId": 2290, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2291": { + "rootName": "Pear", + "rootId": 2291, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2292": { + "rootName": "Cherry", + "rootId": 2292, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2293": { + "rootName": "Banana", + "rootId": 2293, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2294": { + "rootName": "Watermelon Slice", + "rootId": 2294, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2295": { + "rootName": "Gold Watermelon Slice", + "rootId": 2295, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2296": { + "rootName": "Melon Slice", + "rootId": 2296, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2297": { + "rootName": "Gold Melon Slice", + "rootId": 2297, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2298": { + "rootName": "Pumpkin Pie", + "rootId": 2298, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2299": { + "rootName": "Corn", + "rootId": 2299, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2300": { + "rootName": "Cornbread", + "rootId": 2300, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2301": { + "rootName": "Chili Pepper", + "rootId": 2301, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2302": { + "rootName": "Mango", + "rootId": 2302, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2303": { + "rootName": "Raw Porkchop", + "rootId": 2303, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2304": { + "rootName": "Cooked Porkchop", + "rootId": 2304, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2305": { + "rootName": "Raw Beef", + "rootId": 2305, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2306": { + "rootName": "Steak", + "rootId": 2306, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2307": { + "rootName": "Raw Mutton", + "rootId": 2307, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2308": { + "rootName": "Cooked Mutton", + "rootId": 2308, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2309": { + "rootName": "Raw Venison", + "rootId": 2309, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2310": { + "rootName": "Cooked Venison", + "rootId": 2310, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2311": { + "rootName": "Rotten Flesh", + "rootId": 2311, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2312": { + "rootName": "Bone", + "rootId": 2312, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2313": { + "rootName": "Bone Meal", + "rootId": 2313, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2314": { + "rootName": "Fur", + "rootId": 2314, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2315": { + "rootName": "Golem Eye", + "rootId": 2315, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2316": { + "rootName": "Knight Heart", + "rootId": 2316, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2317": { + "rootName": "Name Tag", + "rootId": 2317, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2318": { + "rootName": "Book", + "rootId": 2318, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2319": { + "rootName": "Empty Bottle", + "rootId": 2319, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2320": { + "rootName": "Water Bottle", + "rootId": 2320, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2321": { + "rootName": "Slowness Potion", + "rootId": 2321, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2322": { + "rootName": "Slowness Potion II", + "rootId": 2322, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2323": { + "rootName": "Splash Slowness Potion", + "rootId": 2323, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2324": { + "rootName": "Splash Slowness Potion II", + "rootId": 2324, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2325": { + "rootName": "Arrow of Slowness", + "rootId": 2325, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2326": { + "rootName": "Poison Potion", + "rootId": 2326, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2327": { + "rootName": "Poison Potion II", + "rootId": 2327, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2328": { + "rootName": "Splash Poison Potion", + "rootId": 2328, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2329": { + "rootName": "Splash Poison Potion II", + "rootId": 2329, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2330": { + "rootName": "Arrow of Poison", + "rootId": 2330, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2331": { + "rootName": "Weakness Potion", + "rootId": 2331, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2332": { + "rootName": "Weakness Potion II", + "rootId": 2332, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2333": { + "rootName": "Splash Weakness Potion", + "rootId": 2333, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2334": { + "rootName": "Splash Weakness Potion II", + "rootId": 2334, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2335": { + "rootName": "Arrow of Weakness", + "rootId": 2335, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2336": { + "rootName": "Instant Damage Potion", + "rootId": 2336, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2337": { + "rootName": "Instant Damage Potion II", + "rootId": 2337, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2338": { + "rootName": "Splash Instant Damage Potion", + "rootId": 2338, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2339": { + "rootName": "Splash Instant Damage Potion II", + "rootId": 2339, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2340": { + "rootName": "Arrow of Instant Damage", + "rootId": 2340, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2341": { + "rootName": "Milk Potion", + "rootId": 2341, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2342": { + "rootName": "Splash Milk Potion", + "rootId": 2342, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2343": { + "rootName": "Arrow of Milk", + "rootId": 2343, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2344": { + "rootName": "Speed Potion", + "rootId": 2344, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2345": { + "rootName": "Speed Potion II", + "rootId": 2345, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2346": { + "rootName": "Splash Speed Potion", + "rootId": 2346, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2347": { + "rootName": "Splash Speed Potion II", + "rootId": 2347, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2348": { + "rootName": "Arrow of Speed", + "rootId": 2348, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2349": { + "rootName": "Defense Potion", + "rootId": 2349, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2350": { + "rootName": "Defense Potion II", + "rootId": 2350, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2351": { + "rootName": "Splash Defense Potion", + "rootId": 2351, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2352": { + "rootName": "Splash Defense Potion II", + "rootId": 2352, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2353": { + "rootName": "Arrow of Defense", + "rootId": 2353, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2354": { + "rootName": "Strength Potion", + "rootId": 2354, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2355": { + "rootName": "Strength Potion II", + "rootId": 2355, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2356": { + "rootName": "Splash Strength Potion", + "rootId": 2356, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2357": { + "rootName": "Splash Strength Potion II", + "rootId": 2357, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2358": { + "rootName": "Arrow of Strength", + "rootId": 2358, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2359": { + "rootName": "Invisibility Potion", + "rootId": 2359, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2360": { + "rootName": "Splash Invisibility Potion", + "rootId": 2360, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2361": { + "rootName": "Arrow of Invisibility", + "rootId": 2361, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2362": { + "rootName": "Jump Potion", + "rootId": 2362, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2363": { + "rootName": "Jump Potion II", + "rootId": 2363, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2364": { + "rootName": "Splash Jump Potion", + "rootId": 2364, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2365": { + "rootName": "Splash Jump Potion II", + "rootId": 2365, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2366": { + "rootName": "Arrow of Jumping", + "rootId": 2366, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2367": { + "rootName": "Knockback Potion", + "rootId": 2367, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2368": { + "rootName": "Splash Knockback Potion", + "rootId": 2368, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2369": { + "rootName": "Splash Knockback Potion II", + "rootId": 2369, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2370": { + "rootName": "Arrow of Knockback", + "rootId": 2370, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2371": { + "rootName": "Regeneration Potion", + "rootId": 2371, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2372": { + "rootName": "Regeneration Potion II", + "rootId": 2372, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2373": { + "rootName": "Splash Regeneration Potion", + "rootId": 2373, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2374": { + "rootName": "Splash Regeneration Potion II", + "rootId": 2374, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2375": { + "rootName": "Arrow of Regeneration", + "rootId": 2375, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2376": { + "rootName": "Instant Healing Potion", + "rootId": 2376, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2377": { + "rootName": "Instant Healing Potion II", + "rootId": 2377, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2378": { + "rootName": "Splash Instant Healing Potion", + "rootId": 2378, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2379": { + "rootName": "Splash Instant Healing Potion II", + "rootId": 2379, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2380": { + "rootName": "Arrow of Instant Healing", + "rootId": 2380, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2381": { + "rootName": "Haste Potion", + "rootId": 2381, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2382": { + "rootName": "Haste Potion II", + "rootId": 2382, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2383": { + "rootName": "Splash Haste Potion", + "rootId": 2383, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2384": { + "rootName": "Splash Haste Potion II", + "rootId": 2384, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2385": { + "rootName": "Arrow of Haste", + "rootId": 2385, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2386": { + "rootName": "Shield Potion", + "rootId": 2386, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2387": { + "rootName": "Shield Potion II", + "rootId": 2387, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2388": { + "rootName": "Splash Shield Potion", + "rootId": 2388, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2389": { + "rootName": "Splash Shield Potion II", + "rootId": 2389, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2390": { + "rootName": "Arrow of Shield", + "rootId": 2390, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2391": { + "rootName": "Double Jump Potion", + "rootId": 2391, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2392": { + "rootName": "Splash Double Jump Potion", + "rootId": 2392, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2393": { + "rootName": "Arrow of Double Jump", + "rootId": 2393, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2394": { + "rootName": "Heat Resistance Potion", + "rootId": 2394, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2395": { + "rootName": "Splash Heat Resistance Potion", + "rootId": 2395, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2396": { + "rootName": "Arrow of Heat Resistance", + "rootId": 2396, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2397": { + "rootName": "Chaos Potion", + "rootId": 2397, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2398": { + "rootName": "AK-47", + "rootId": 2398, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2399": { + "rootName": "M16", + "rootId": 2399, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2400": { + "rootName": "MP40", + "rootId": 2400, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2401": { + "rootName": "TAR-21", + "rootId": 2401, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2402": { + "rootName": "M1911", + "rootId": 2402, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2403": { + "rootName": "One Shot Pistol", + "rootId": 2403, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2404": { + "rootName": "Double Barrel", + "rootId": 2404, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2405": { + "rootName": "AWP", + "rootId": 2405, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2406": { + "rootName": "Minigun", + "rootId": 2406, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2407": { + "rootName": "Gold Coin", + "rootId": 2407, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2408": { + "rootName": "Updraft", + "rootId": 2408, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2409": { + "rootName": "Snowdash", + "rootId": 2409, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2410": { + "rootName": "Floor Creator", + "rootId": 2410, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2411": { + "rootName": "Moonstone Remote Explosive", + "rootId": 2411, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2412": { + "rootName": "Moonstone Remote", + "rootId": 2412, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2413": { + "rootName": "Ice Bridge", + "rootId": 2413, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2414": { + "rootName": "Yellow Balloon", + "rootId": 2414, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2415": { + "rootName": "White Balloon", + "rootId": 2415, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2416": { + "rootName": "Red Balloon", + "rootId": 2416, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2417": { + "rootName": "Purple Balloon", + "rootId": 2417, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2418": { + "rootName": "Pink Balloon", + "rootId": 2418, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2419": { + "rootName": "Orange Balloon", + "rootId": 2419, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2420": { + "rootName": "Magenta Balloon", + "rootId": 2420, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2421": { + "rootName": "Lime Balloon", + "rootId": 2421, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2422": { + "rootName": "Light Gray Balloon", + "rootId": 2422, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2423": { + "rootName": "Light Blue Balloon", + "rootId": 2423, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2424": { + "rootName": "Green Balloon", + "rootId": 2424, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2425": { + "rootName": "Gray Balloon", + "rootId": 2425, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2426": { + "rootName": "Cyan Balloon", + "rootId": 2426, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2427": { + "rootName": "Brown Balloon", + "rootId": 2427, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2428": { + "rootName": "Blue Balloon", + "rootId": 2428, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2429": { + "rootName": "Black Balloon", + "rootId": 2429, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2430": { + "rootName": "INTERNAL_MESH_Yellow Balloon", + "rootId": 2430, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2431": { + "rootName": "INTERNAL_MESH_White Balloon", + "rootId": 2431, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2432": { + "rootName": "INTERNAL_MESH_Red Balloon", + "rootId": 2432, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2433": { + "rootName": "INTERNAL_MESH_Purple Balloon", + "rootId": 2433, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2434": { + "rootName": "INTERNAL_MESH_Pink Balloon", + "rootId": 2434, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2435": { + "rootName": "INTERNAL_MESH_Orange Balloon", + "rootId": 2435, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2436": { + "rootName": "INTERNAL_MESH_Magenta Balloon", + "rootId": 2436, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2437": { + "rootName": "INTERNAL_MESH_Lime Balloon", + "rootId": 2437, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2438": { + "rootName": "INTERNAL_MESH_Light Gray Balloon", + "rootId": 2438, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2439": { + "rootName": "INTERNAL_MESH_Light Blue Balloon", + "rootId": 2439, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2440": { + "rootName": "INTERNAL_MESH_Green Balloon", + "rootId": 2440, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2441": { + "rootName": "INTERNAL_MESH_Gray Balloon", + "rootId": 2441, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2442": { + "rootName": "INTERNAL_MESH_Cyan Balloon", + "rootId": 2442, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2443": { + "rootName": "INTERNAL_MESH_Brown Balloon", + "rootId": 2443, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2444": { + "rootName": "INTERNAL_MESH_Blue Balloon", + "rootId": 2444, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2445": { + "rootName": "INTERNAL_MESH_Black Balloon", + "rootId": 2445, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2446": { + "rootName": "Yellow Popup Tower", + "rootId": 2446, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2447": { + "rootName": "White Popup Tower", + "rootId": 2447, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2448": { + "rootName": "Red Popup Tower", + "rootId": 2448, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2449": { + "rootName": "Purple Popup Tower", + "rootId": 2449, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2450": { + "rootName": "Pink Popup Tower", + "rootId": 2450, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2451": { + "rootName": "Orange Popup Tower", + "rootId": 2451, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2452": { + "rootName": "Magenta Popup Tower", + "rootId": 2452, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2453": { + "rootName": "Lime Popup Tower", + "rootId": 2453, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2454": { + "rootName": "Light Gray Popup Tower", + "rootId": 2454, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2455": { + "rootName": "Light Blue Popup Tower", + "rootId": 2455, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2456": { + "rootName": "Green Popup Tower", + "rootId": 2456, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2457": { + "rootName": "Gray Popup Tower", + "rootId": 2457, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2458": { + "rootName": "Cyan Popup Tower", + "rootId": 2458, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2459": { + "rootName": "Brown Popup Tower", + "rootId": 2459, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2460": { + "rootName": "Blue Popup Tower", + "rootId": 2460, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2461": { + "rootName": "Black Popup Tower", + "rootId": 2461, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2462": { + "rootName": "Yellow Paintball Gun", + "rootId": 2462, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2463": { + "rootName": "White Paintball Gun", + "rootId": 2463, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2464": { + "rootName": "Red Paintball Gun", + "rootId": 2464, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2465": { + "rootName": "Purple Paintball Gun", + "rootId": 2465, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2466": { + "rootName": "Pink Paintball Gun", + "rootId": 2466, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2467": { + "rootName": "Orange Paintball Gun", + "rootId": 2467, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2468": { + "rootName": "Magenta Paintball Gun", + "rootId": 2468, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2469": { + "rootName": "Lime Paintball Gun", + "rootId": 2469, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2470": { + "rootName": "Light Gray Paintball Gun", + "rootId": 2470, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2471": { + "rootName": "Light Blue Paintball Gun", + "rootId": 2471, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2472": { + "rootName": "Green Paintball Gun", + "rootId": 2472, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2473": { + "rootName": "Gray Paintball Gun", + "rootId": 2473, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2474": { + "rootName": "Cyan Paintball Gun", + "rootId": 2474, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2475": { + "rootName": "Brown Paintball Gun", + "rootId": 2475, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2476": { + "rootName": "Blue Paintball Gun", + "rootId": 2476, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2477": { + "rootName": "Black Paintball Gun", + "rootId": 2477, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2478": { + "rootName": "Yellow Paintball", + "rootId": 2478, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2479": { + "rootName": "White Paintball", + "rootId": 2479, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2480": { + "rootName": "Red Paintball", + "rootId": 2480, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2481": { + "rootName": "Purple Paintball", + "rootId": 2481, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2482": { + "rootName": "Pink Paintball", + "rootId": 2482, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2483": { + "rootName": "Orange Paintball", + "rootId": 2483, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2484": { + "rootName": "Magenta Paintball", + "rootId": 2484, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2485": { + "rootName": "Lime Paintball", + "rootId": 2485, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2486": { + "rootName": "Light Gray Paintball", + "rootId": 2486, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2487": { + "rootName": "Light Blue Paintball", + "rootId": 2487, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2488": { + "rootName": "Green Paintball", + "rootId": 2488, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2489": { + "rootName": "Gray Paintball", + "rootId": 2489, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2490": { + "rootName": "Cyan Paintball", + "rootId": 2490, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2491": { + "rootName": "Brown Paintball", + "rootId": 2491, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2492": { + "rootName": "Blue Paintball", + "rootId": 2492, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2493": { + "rootName": "Black Paintball", + "rootId": 2493, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2494": { + "rootName": "Yellow Heavy Paintball Gun", + "rootId": 2494, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2495": { + "rootName": "White Heavy Paintball Gun", + "rootId": 2495, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2496": { + "rootName": "Red Heavy Paintball Gun", + "rootId": 2496, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2497": { + "rootName": "Purple Heavy Paintball Gun", + "rootId": 2497, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2498": { + "rootName": "Pink Heavy Paintball Gun", + "rootId": 2498, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2499": { + "rootName": "Orange Heavy Paintball Gun", + "rootId": 2499, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2500": { + "rootName": "Magenta Heavy Paintball Gun", + "rootId": 2500, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2501": { + "rootName": "Lime Heavy Paintball Gun", + "rootId": 2501, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2502": { + "rootName": "Light Gray Heavy Paintball Gun", + "rootId": 2502, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2503": { + "rootName": "Light Blue Heavy Paintball Gun", + "rootId": 2503, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2504": { + "rootName": "Green Heavy Paintball Gun", + "rootId": 2504, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2505": { + "rootName": "Gray Heavy Paintball Gun", + "rootId": 2505, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2506": { + "rootName": "Cyan Heavy Paintball Gun", + "rootId": 2506, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2507": { + "rootName": "Brown Heavy Paintball Gun", + "rootId": 2507, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2508": { + "rootName": "Blue Heavy Paintball Gun", + "rootId": 2508, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2509": { + "rootName": "Black Heavy Paintball Gun", + "rootId": 2509, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2510": { + "rootName": "Yellow Paintball Explosive Item", + "rootId": 2510, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2511": { + "rootName": "White Paintball Explosive Item", + "rootId": 2511, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2512": { + "rootName": "Red Paintball Explosive Item", + "rootId": 2512, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2513": { + "rootName": "Purple Paintball Explosive Item", + "rootId": 2513, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2514": { + "rootName": "Pink Paintball Explosive Item", + "rootId": 2514, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2515": { + "rootName": "Orange Paintball Explosive Item", + "rootId": 2515, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2516": { + "rootName": "Magenta Paintball Explosive Item", + "rootId": 2516, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2517": { + "rootName": "Lime Paintball Explosive Item", + "rootId": 2517, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2518": { + "rootName": "Light Gray Paintball Explosive Item", + "rootId": 2518, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2519": { + "rootName": "Light Blue Paintball Explosive Item", + "rootId": 2519, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2520": { + "rootName": "Green Paintball Explosive Item", + "rootId": 2520, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2521": { + "rootName": "Gray Paintball Explosive Item", + "rootId": 2521, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2522": { + "rootName": "Cyan Paintball Explosive Item", + "rootId": 2522, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2523": { + "rootName": "Brown Paintball Explosive Item", + "rootId": 2523, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2524": { + "rootName": "Blue Paintball Explosive Item", + "rootId": 2524, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2525": { + "rootName": "Black Paintball Explosive Item", + "rootId": 2525, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2526": { + "rootName": "Yellow Sticky Paintball Explosive Item", + "rootId": 2526, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2527": { + "rootName": "White Sticky Paintball Explosive Item", + "rootId": 2527, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2528": { + "rootName": "Red Sticky Paintball Explosive Item", + "rootId": 2528, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2529": { + "rootName": "Purple Sticky Paintball Explosive Item", + "rootId": 2529, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2530": { + "rootName": "Pink Sticky Paintball Explosive Item", + "rootId": 2530, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2531": { + "rootName": "Orange Sticky Paintball Explosive Item", + "rootId": 2531, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2532": { + "rootName": "Magenta Sticky Paintball Explosive Item", + "rootId": 2532, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2533": { + "rootName": "Lime Sticky Paintball Explosive Item", + "rootId": 2533, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2534": { + "rootName": "Light Gray Sticky Paintball Explosive Item", + "rootId": 2534, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2535": { + "rootName": "Light Blue Sticky Paintball Explosive Item", + "rootId": 2535, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2536": { + "rootName": "Green Sticky Paintball Explosive Item", + "rootId": 2536, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2537": { + "rootName": "Gray Sticky Paintball Explosive Item", + "rootId": 2537, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2538": { + "rootName": "Cyan Sticky Paintball Explosive Item", + "rootId": 2538, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2539": { + "rootName": "Brown Sticky Paintball Explosive Item", + "rootId": 2539, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2540": { + "rootName": "Blue Sticky Paintball Explosive Item", + "rootId": 2540, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2541": { + "rootName": "Black Sticky Paintball Explosive Item", + "rootId": 2541, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2542": { + "rootName": "Yellow Seeking Paintball Explosive Item", + "rootId": 2542, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2543": { + "rootName": "White Seeking Paintball Explosive Item", + "rootId": 2543, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2544": { + "rootName": "Red Seeking Paintball Explosive Item", + "rootId": 2544, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2545": { + "rootName": "Purple Seeking Paintball Explosive Item", + "rootId": 2545, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2546": { + "rootName": "Pink Seeking Paintball Explosive Item", + "rootId": 2546, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2547": { + "rootName": "Orange Seeking Paintball Explosive Item", + "rootId": 2547, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2548": { + "rootName": "Magenta Seeking Paintball Explosive Item", + "rootId": 2548, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2549": { + "rootName": "Lime Seeking Paintball Explosive Item", + "rootId": 2549, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2550": { + "rootName": "Light Gray Seeking Paintball Explosive Item", + "rootId": 2550, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2551": { + "rootName": "Light Blue Seeking Paintball Explosive Item", + "rootId": 2551, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2552": { + "rootName": "Green Seeking Paintball Explosive Item", + "rootId": 2552, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2553": { + "rootName": "Gray Seeking Paintball Explosive Item", + "rootId": 2553, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2554": { + "rootName": "Cyan Seeking Paintball Explosive Item", + "rootId": 2554, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2555": { + "rootName": "Brown Seeking Paintball Explosive Item", + "rootId": 2555, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2556": { + "rootName": "Blue Seeking Paintball Explosive Item", + "rootId": 2556, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2557": { + "rootName": "Black Seeking Paintball Explosive Item", + "rootId": 2557, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2558": { + "rootName": "Yellow Quick Paintball Explosive Item", + "rootId": 2558, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2559": { + "rootName": "White Quick Paintball Explosive Item", + "rootId": 2559, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2560": { + "rootName": "Red Quick Paintball Explosive Item", + "rootId": 2560, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2561": { + "rootName": "Purple Quick Paintball Explosive Item", + "rootId": 2561, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2562": { + "rootName": "Pink Quick Paintball Explosive Item", + "rootId": 2562, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2563": { + "rootName": "Orange Quick Paintball Explosive Item", + "rootId": 2563, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2564": { + "rootName": "Magenta Quick Paintball Explosive Item", + "rootId": 2564, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2565": { + "rootName": "Lime Quick Paintball Explosive Item", + "rootId": 2565, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2566": { + "rootName": "Light Gray Quick Paintball Explosive Item", + "rootId": 2566, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2567": { + "rootName": "Light Blue Quick Paintball Explosive Item", + "rootId": 2567, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2568": { + "rootName": "Green Quick Paintball Explosive Item", + "rootId": 2568, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2569": { + "rootName": "Gray Quick Paintball Explosive Item", + "rootId": 2569, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2570": { + "rootName": "Cyan Quick Paintball Explosive Item", + "rootId": 2570, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2571": { + "rootName": "Brown Quick Paintball Explosive Item", + "rootId": 2571, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2572": { + "rootName": "Blue Quick Paintball Explosive Item", + "rootId": 2572, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2573": { + "rootName": "Black Quick Paintball Explosive Item", + "rootId": 2573, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2574": { + "rootName": "Yellow Paint Bow", + "rootId": 2574, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2575": { + "rootName": "Yellow Paint Bow", + "rootId": 2574, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2576": { + "rootName": "Yellow Paint Bow", + "rootId": 2574, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2577": { + "rootName": "Yellow Paint Bow", + "rootId": 2574, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2578": { + "rootName": "White Paint Bow", + "rootId": 2578, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2579": { + "rootName": "White Paint Bow", + "rootId": 2578, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2580": { + "rootName": "White Paint Bow", + "rootId": 2578, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2581": { + "rootName": "White Paint Bow", + "rootId": 2578, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2582": { + "rootName": "Red Paint Bow", + "rootId": 2582, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2583": { + "rootName": "Red Paint Bow", + "rootId": 2582, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2584": { + "rootName": "Red Paint Bow", + "rootId": 2582, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2585": { + "rootName": "Red Paint Bow", + "rootId": 2582, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2586": { + "rootName": "Purple Paint Bow", + "rootId": 2586, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2587": { + "rootName": "Purple Paint Bow", + "rootId": 2586, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2588": { + "rootName": "Purple Paint Bow", + "rootId": 2586, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2589": { + "rootName": "Purple Paint Bow", + "rootId": 2586, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2590": { + "rootName": "Pink Paint Bow", + "rootId": 2590, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2591": { + "rootName": "Pink Paint Bow", + "rootId": 2590, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2592": { + "rootName": "Pink Paint Bow", + "rootId": 2590, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2593": { + "rootName": "Pink Paint Bow", + "rootId": 2590, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2594": { + "rootName": "Orange Paint Bow", + "rootId": 2594, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2595": { + "rootName": "Orange Paint Bow", + "rootId": 2594, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2596": { + "rootName": "Orange Paint Bow", + "rootId": 2594, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2597": { + "rootName": "Orange Paint Bow", + "rootId": 2594, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2598": { + "rootName": "Magenta Paint Bow", + "rootId": 2598, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2599": { + "rootName": "Magenta Paint Bow", + "rootId": 2598, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2600": { + "rootName": "Magenta Paint Bow", + "rootId": 2598, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2601": { + "rootName": "Magenta Paint Bow", + "rootId": 2598, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2602": { + "rootName": "Lime Paint Bow", + "rootId": 2602, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2603": { + "rootName": "Lime Paint Bow", + "rootId": 2602, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2604": { + "rootName": "Lime Paint Bow", + "rootId": 2602, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2605": { + "rootName": "Lime Paint Bow", + "rootId": 2602, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2606": { + "rootName": "Light Gray Paint Bow", + "rootId": 2606, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2607": { + "rootName": "Light Gray Paint Bow", + "rootId": 2606, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2608": { + "rootName": "Light Gray Paint Bow", + "rootId": 2606, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2609": { + "rootName": "Light Gray Paint Bow", + "rootId": 2606, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2610": { + "rootName": "Light Blue Paint Bow", + "rootId": 2610, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2611": { + "rootName": "Light Blue Paint Bow", + "rootId": 2610, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2612": { + "rootName": "Light Blue Paint Bow", + "rootId": 2610, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2613": { + "rootName": "Light Blue Paint Bow", + "rootId": 2610, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2614": { + "rootName": "Green Paint Bow", + "rootId": 2614, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2615": { + "rootName": "Green Paint Bow", + "rootId": 2614, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2616": { + "rootName": "Green Paint Bow", + "rootId": 2614, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2617": { + "rootName": "Green Paint Bow", + "rootId": 2614, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2618": { + "rootName": "Gray Paint Bow", + "rootId": 2618, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2619": { + "rootName": "Gray Paint Bow", + "rootId": 2618, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2620": { + "rootName": "Gray Paint Bow", + "rootId": 2618, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2621": { + "rootName": "Gray Paint Bow", + "rootId": 2618, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2622": { + "rootName": "Cyan Paint Bow", + "rootId": 2622, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2623": { + "rootName": "Cyan Paint Bow", + "rootId": 2622, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2624": { + "rootName": "Cyan Paint Bow", + "rootId": 2622, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2625": { + "rootName": "Cyan Paint Bow", + "rootId": 2622, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2626": { + "rootName": "Brown Paint Bow", + "rootId": 2626, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2627": { + "rootName": "Brown Paint Bow", + "rootId": 2626, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2628": { + "rootName": "Brown Paint Bow", + "rootId": 2626, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2629": { + "rootName": "Brown Paint Bow", + "rootId": 2626, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2630": { + "rootName": "Blue Paint Bow", + "rootId": 2630, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2631": { + "rootName": "Blue Paint Bow", + "rootId": 2630, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2632": { + "rootName": "Blue Paint Bow", + "rootId": 2630, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2633": { + "rootName": "Blue Paint Bow", + "rootId": 2630, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2634": { + "rootName": "Black Paint Bow", + "rootId": 2634, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2635": { + "rootName": "Black Paint Bow", + "rootId": 2634, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2636": { + "rootName": "Black Paint Bow", + "rootId": 2634, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2637": { + "rootName": "Black Paint Bow", + "rootId": 2634, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2638": { + "rootName": "Pig Spawn Orb", + "rootId": 2638, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2639": { + "rootName": "Cow Spawn Orb", + "rootId": 2639, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2640": { + "rootName": "Sheep Spawn Orb", + "rootId": 2640, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2641": { + "rootName": "Deer Spawn Orb", + "rootId": 2641, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2642": { + "rootName": "Wolf Spawn Orb", + "rootId": 2642, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2643": { + "rootName": "Wildcat Spawn Orb", + "rootId": 2643, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2644": { + "rootName": "Bear Spawn Orb", + "rootId": 2644, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2645": { + "rootName": "Stag Spawn Orb", + "rootId": 2645, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2646": { + "rootName": "Gold Watermelon Stag Spawn Orb", + "rootId": 2646, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2647": { + "rootName": "Gorilla Spawn Orb", + "rootId": 2647, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2648": { + "rootName": "Cave Golem Spawn Orb", + "rootId": 2648, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2649": { + "rootName": "Draugr Zombie Spawn Orb", + "rootId": 2649, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2650": { + "rootName": "Draugr Skeleton Spawn Orb", + "rootId": 2650, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2651": { + "rootName": "Frost Golem Spawn Orb", + "rootId": 2651, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2652": { + "rootName": "Frost Zombie Spawn Orb", + "rootId": 2652, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2653": { + "rootName": "Frost Skeleton Spawn Orb", + "rootId": 2653, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2654": { + "rootName": "Draugr Knight Spawn Orb", + "rootId": 2654, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2655": { + "rootName": "Draugr Huntress Spawn Orb", + "rootId": 2655, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2656": { + "rootName": "Magma Golem Spawn Orb", + "rootId": 2656, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2657": { + "rootName": "Timed Spike Bomb", + "rootId": 2657, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2658": { + "rootName": "Timed Spike Bomb", + "rootId": 2657, + "metaStr": "meta|charging2", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 2, + "direction": null, + "books": null + }, + "2659": { + "rootName": "Timed Spike Bomb", + "rootId": 2657, + "metaStr": "meta|charging3", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 3, + "direction": null, + "books": null + }, + "2660": { + "rootName": "Timed Spike Bomb", + "rootId": 2657, + "metaStr": "meta|charging4", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 4, + "direction": null, + "books": null + }, + "2661": { + "rootName": "Toxin Ball", + "rootId": 2661, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2662": { + "rootName": "Aura XP Fragment", + "rootId": 2662, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2663": { + "rootName": "Aura XP Orb", + "rootId": 2663, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2664": { + "rootName": "Aura XP Potion", + "rootId": 2664, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2665": { + "rootName": "Aura XP Potion II", + "rootId": 2665, + "metaStr": "meta|charging1", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": 1, + "direction": null, + "books": null + }, + "2666": { + "rootName": "Splash Aura XP Potion", + "rootId": 2666, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2667": { + "rootName": "Splash Aura XP Potion II", + "rootId": 2667, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + }, + "2668": { + "rootName": "Arrow of Aura XP", + "rootId": 2668, + "metaStr": "", + "rot": null, + "open": null, + "halfblockPlacement": null, + "growing": null, + "treeBase": null, + "treeCanopy": null, + "woodType": null, + "charging": null, + "direction": null, + "books": null + } +} \ No newline at end of file