Guest User

Item.gd

a guest
Dec 16th, 2023
651
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. extends Resource
  2. class_name Item
  3.  
  4. @export var icon: Texture2D
  5. @export var name : String
  6.  
  7. @export_enum("Weapon", "Consumable", "Armor")
  8. var type = "Weapon"
  9.  
  10. @export_multiline var description: String
  11.  
Advertisement
Add Comment
Please, Sign In to add comment