Advertisement
Guest User

Untitled

a guest
May 24th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. Dim i As New DataModel.Json.Game.ItemModel() With {
  2. .Name = "Black Apricorn",
  3. .PluralName = "Black Apricorns",
  4. .Price = 100,
  5. .Id = 181,
  6. .Texture = New DataModel.Json.TextureSourceModel() With {
  7. .Source = "Items\Itemsheet",
  8. .Rectangle = New DataModel.Json.RectangleModel() With {
  9. .X = 0,
  10. .Y = 0,
  11. .Width = 48,
  12. .Height = 96
  13. }
  14. },
  15. .Description = "A black Apricorn.",
  16. .ScriptBinding = "",
  17. .InventoryDefinition = New DataModel.Json.Game.InventoryDefinitionModel() With {
  18. .Type = Item.ItemTypes.Plants,
  19. .MaxStack = 999,
  20. .SortValue = 1
  21. },
  22. .Usage = New DataModel.Json.Game.ItemUsageModel() With {
  23. .Held = True,
  24. .InBattle = False,
  25. .Overworld = False,
  26. .Toss = True,
  27. .Trade = True
  28. },
  29. .Classification = New DataModel.Json.Game.ItemClassificationModel()
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement