I need to know how it is called when "you put many variables inside another one", for example like this:
<<set $Enemy ={ name:"Small Spawn",hp:10,mhp:10,mp:1,mmp:1,lu:0,mlu:1,
image:"Enemies/SSpawn.png",G:5,exp:7,}>>
So now I would be able to simply call one of those by writing:
Health: $Enemy.hp/$Enemy.mhp
I need to do the same thing in python so I need to know the proper name in order to search for it, thanks.