Advertisement
Pentasis

Untitled

Feb 16th, 2025
156
0
24 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.25 KB | None | 0 0
  1. {
  2.   code: "clothblock",
  3.   variantgroups: [
  4.     { code:"color", states: ["plain", "black", "blue", "brown", "gray", "green", "orange", "pink", "purple", "red", "white", "yellow"] }
  5.   ],
  6.   shape: {
  7.     base: "game:block/basic/cube"
  8.   },
  9.   drawtype: "cube",
  10.   blockmaterial: "Cloth",
  11.   creativeinventory: { "general": ["*"], "decorative": ["*"] },
  12.   attributes: {
  13.     canChisel: true
  14.   },
  15.   replaceable: 700,
  16.   resistance: 1,
  17.   lightAbsorption: 1,
  18.   emitSideAo: {
  19.     all: false
  20.   },
  21.   maxstacksize: 16,
  22.   texturesByType: {
  23.     "*-plain": {
  24.       "all": { base: "game:block/cloth/linen/normal1" }
  25.     },
  26.     "*": {
  27.       "all": { base: "game:block/cloth/linen/{color}" }
  28.     }
  29.   },
  30.   combustibleProps: {
  31.     burnTemperature: 400,
  32.     burnDuration: 30
  33.   },
  34.   sounds: {
  35.     place: "game:block/cloth",
  36.     break: "game:block/cloth",
  37.     hit: "game:block/cloth",
  38.     walk: "game:walk/cloth"
  39.   },
  40.   materialDensity: 200,
  41.   drops: [{ type: "block", code: "clothblock-{color}"}],
  42.   heldTpIdleAnimation: "holdbothhandslarge",
  43.   heldRightReadyAnimation: "heldblockready",
  44.   heldTpUseAnimation: "twohandplaceblock",
  45.   tpHandTransform: {
  46.     translation: { x: -1.23, y: -0.91, z: -0.8 },
  47.     rotation: { x: -2, y: 25, z: -78 },
  48.     scale: 0.4
  49.   }
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement