TxglsScripting
  • 🔊txgls-loadscreen
    • Index.html
  • 🍖txgls-butcherjob
    • config.lua
    • ox_inventory
    • qb-inventory
    • okokNotify
  • 🧑‍🌾txgls-farmingjob
    • config.lua
    • ox_inventory
    • qb-inventory
    • farming_data.sql
Powered by GitBook
On this page
  1. txgls-farmingjob

qb-inventory

['farming_hoe'] = {
    name = 'farming_hoe',
    label = 'Farming Hoe',
    weight = 2500,
    type = 'item',
    image = 'farming_hoe.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'A sturdy hoe for farming wheat and barley crops'
},

['farming_shovel'] = {
    name = 'farming_shovel',
    label = 'Farming Shovel',
    weight = 2800,
    type = 'item',
    image = 'farming_shovel.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'A heavy-duty shovel for digging up potatoes and carrots'
},

['farming_rake'] = {
    name = 'farming_rake',
    label = 'Farming Rake',
    weight = 1800,
    type = 'item',
    image = 'farming_rake.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'A rake for preparing soil and maintaining crops'
},

['farming_watering_can'] = {
    name = 'farming_watering_can',
    label = 'Watering Can',
    weight = 1200,
    type = 'item',
    image = 'farming_watering_can.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'A watering can for irrigating crops'
},

-- RAW CROPS
['wheat'] = {
    name = 'wheat',
    label = 'Wheat',
    weight = 100,
    type = 'item',
    image = 'wheat.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Fresh wheat harvested from the fields'
},

['barley'] = {
    name = 'barley',
    label = 'Barley',
    weight = 120,
    type = 'item',
    image = 'barley.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Fresh barley harvested from the fields'
},

['potato'] = {
    name = 'potato',
    label = 'Potato',
    weight = 150,
    type = 'item',
    image = 'potato.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Fresh potatoes dug up from the soil'
},

['carrot'] = {
    name = 'carrot',
    label = 'Carrot',
    weight = 80,
    type = 'item',
    image = 'carrot.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Fresh carrots pulled from the ground'
},

-- PROCESSED ITEMS
['flour'] = {
    name = 'flour',
    label = 'Flour',
    weight = 50,
    type = 'item',
    image = 'flour.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Fine flour made from processed wheat'
},

['barley_flour'] = {
    name = 'barley_flour',
    label = 'Barley Flour',
    weight = 60,
    type = 'item',
    image = 'barley_flour.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Coarse flour made from processed barley'
},

-- SEEDS
['wheat_seeds'] = {
    name = 'wheat_seeds',
    label = 'Wheat Seeds',
    weight = 10,
    type = 'item',
    image = 'wheat_seeds.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Seeds for planting wheat crops'
},

['barley_seeds'] = {
    name = 'barley_seeds',
    label = 'Barley Seeds',
    weight = 12,
    type = 'item',
    image = 'barley_seeds.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Seeds for planting barley crops'
},

['potato_seeds'] = {
    name = 'potato_seeds',
    label = 'Potato Seeds',
    weight = 15,
    type = 'item',
    image = 'potato_seeds.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Seed potatoes for planting new crops'
},

['carrot_seeds'] = {
    name = 'carrot_seeds',
    label = 'Carrot Seeds',
    weight = 8,
    type = 'item',
    image = 'carrot_seeds.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Seeds for planting carrot crops'
},

-- FERTILIZER
['fertiliser'] = {
    name = 'fertiliser',
    label = 'Fertilizer',
    weight = 500,
    type = 'item',
    image = 'fertiliser.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Organic fertilizer to speed up crop growth'
},
Previousox_inventoryNextfarming_data.sql

Last updated 8 days ago

🧑‍🌾