Jump to content

Recommended Posts

Posted (edited)

This is the data container I have:

 

public static Map<Integer, List<Pair<String, Integer>>> warriorEquipmentMainHandMap = new HashMap<Integer, List<Pair<String, Integer>>>()
        {{
            put(1, new ArrayList<Pair<String, Integer>>()
            {{
                add(new Pair<>("wooden_axe", 70));
                add(new Pair<>("stone_axe", 30));
            }});

            put(2, new ArrayList<Pair<String, Integer>>()
            {{
                add(new Pair<>("wooden_axe", 20));
                add(new Pair<>("stone_axe", 70));
                add(new Pair<>("iron_axe", 10));
            }});

            put(3, new ArrayList<Pair<String, Integer>>()
            {{
                add(new Pair<>("stone_axe", 70));
                add(new Pair<>("iron_axe", 30));
            }});
        }};

 

Basically I want to turn that into this on the config:

 

warriorequipmentmainhand{
	
	1{
		"wooden_axe":70,
		"stone_axe":30
	}
	
	2{
		"wooden_axe":20,
		"stone_axe":70,
		"iron_axe":10
	}
	
	3{
		"stone_axe":70,
		"iron_axe":30
	}
}

 

How would I go about doing that since I don't see a list of keyvalpair on configuration?

Edited by TheAwesomeGem

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.