Advertisement
Kovitikus

Untitled

Nov 30th, 2020
832
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.72 KB | None | 0 0
  1. def return_proto_dic(proto):
  2.     return proto
  3.  
  4. DRINK = {
  5.     'prototype_key': 'drink',
  6.     'prototype_desc': 'Drink items.',
  7.     'prototype_tags': 'drink',
  8.     'typeclass': 'typeclasses.objects.Object',
  9.     'tags': ('drink', 'consumable')
  10. }
  11.  
  12. LIGHTING = {
  13.     'prototype_key': 'lighting',
  14.     'key': 'lighting',
  15.     'typeclass': 'typeclasses.objects.Lighting'
  16. }
  17.  
  18. INVENTORY_CONTAINER = {
  19.     'prototype_key': 'inventory_container',
  20.     'key': 'inventory_container',
  21.     'typeclass': 'typeclasses.objects.InventoryContainer'
  22. }
  23.  
  24. BAIT = {
  25.     'prototype_key': 'bait',
  26.     'prototype_desc': 'Fishing bait',
  27.     'prototype_tags': 'bait',
  28.     'typeclass': 'typeclasses.objects.Object',
  29.     'tags': ('bait', 'fishing')
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement