jmonkey-test/src/main/resources/weapon.json
2020-11-07 20:59:57 +05:30

19 lines
369 B
JSON

{
"record": "Weapon",
"values": {
"baseId": "4F00000062",
"weaponType": "sword",
"name": "Exquisite Steel Sword",
"attack": "40",
"weight": "20"
}
}
val entity = ed.createEntity()
entity.setComponents(
Record("Weapon"),
WeaponType("Sword"),
Name("Exquisite Steel Sword"),
Attack(40),
Weight(20)
)