diff --git a/.gitignore b/.gitignore index 6999b6e44e..0aae44d245 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@ maps screenshots todo.txt userdata +temp # Profiling and traces heaptrack.* diff --git a/assets/common/loadout/test.ron b/assets/common/loadout/test.ron deleted file mode 100644 index 6b6f1f0992..0000000000 --- a/assets/common/loadout/test.ron +++ /dev/null @@ -1,32 +0,0 @@ -({ - // Weapons - ActiveMainhand: Item("common.items.weapons.sword_1h.bloodsteel-0"), - ActiveOffhand: Item("common.items.weapons.sword_1h.bloodsteel-0"), - - InactiveMainhand: Item("common.items.weapons.sword_1h.bloodsteel-0"), - InactiveOffhand: Item("common.items.weapons.sword_1h.bloodsteel-0"), - - // Gear - Armor(Head): Item("common.items.npc_armor.biped_small.myrmidon.head.hoplite"), - Armor(Shoulders): Item("common.items.armor.twigsflowers.shoulder"), - Armor(Chest): Item("common.items.armor.twigsflowers.chest"), - Armor(Hands): Item("common.items.armor.twigsflowers.hand"), - Armor(Legs): Item("common.items.armor.twigsflowers.pants"), - Armor(Feet): Item("common.items.armor.twigsflowers.foot"), - Armor(Belt): Item("common.items.armor.twigsflowers.belt"), - - // Biju - Armor(Back): Item("common.items.armor.misc.back.dungeon_purple"), - Armor(Neck): Item("common.items.armor.misc.neck.gem_of_resilience"), - Armor(Ring1): Item("common.items.armor.misc.ring.gold"), - Armor(Ring2): Item("common.items.armor.misc.ring.gold"), - - // Misc - Lantern: Item("common.items.lantern.black_0"), - Armor(Tabard): Item("common.items.debug.admin"), - Glider: Item("common.items.glider.basic_red"), - Armor(Bag1): Item("common.items.armor.misc.bag.tiny_leather_pouch"), - Armor(Bag2): Item("common.items.armor.misc.bag.tiny_leather_pouch"), - Armor(Bag3): Item("common.items.armor.misc.bag.tiny_leather_pouch"), - Armor(Bag4): Item("common.items.armor.misc.bag.tiny_leather_pouch"), -}) diff --git a/assets/common/loadout_new/test/choice_base.ron b/assets/common/loadout_new/test/choice_base.ron deleted file mode 100644 index 87e30a01d9..0000000000 --- a/assets/common/loadout_new/test/choice_base.ron +++ /dev/null @@ -1,7 +0,0 @@ -#![enable(implicit_some)] -( - inherit: Choice([ - (1, Asset("common.loadout_new.test.rings")), - (1, Asset("common.loadout_new.test.choice_hands")), - ]), -) diff --git a/assets/common/loadout_new/test/choice_hands.ron b/assets/common/loadout_new/test/choice_hands.ron deleted file mode 100644 index c31c1be3b9..0000000000 --- a/assets/common/loadout_new/test/choice_hands.ron +++ /dev/null @@ -1,17 +0,0 @@ -#![enable(implicit_some)] -( - active_hands: Choice([ - (1, InHands(( - Item("common.items.axe_1h.orichalcum"), - Item("common.items.axe_1h.orichalcum"), - ))), - (1, InHands(( - Item("common.items.hammer_1h.orichalcum"), - Item("common.items.axe_1h.orichalcum"), - ))), - (1, InHands(( - Item("common.items.sword.cultist"), - None, - ))), - ]), -) diff --git a/assets/common/loadout_new/test/combined.ron b/assets/common/loadout_new/test/combined.ron deleted file mode 100644 index 56baf0f394..0000000000 --- a/assets/common/loadout_new/test/combined.ron +++ /dev/null @@ -1,7 +0,0 @@ -#![enable(implicit_some)] -( - inherit: Combine([ - Asset("common.loadout_new.test.rings"), - Asset("common.loadout_new.test.choice_hands"), - ]), -) diff --git a/assets/common/loadout_new/test/rings.ron b/assets/common/loadout_new/test/rings.ron deleted file mode 100644 index 701d83d9e2..0000000000 --- a/assets/common/loadout_new/test/rings.ron +++ /dev/null @@ -1,5 +0,0 @@ -#![enable(implicit_some)] -( - ring1: Item("common.items.armor.cultist.ring"), - ring2: Item("common.items.armor.cultist.ring"), -) diff --git a/assets/common/loadout_new/test/simple.ron b/assets/common/loadout_new/test/simple.ron deleted file mode 100644 index e94c8b3876..0000000000 --- a/assets/common/loadout_new/test/simple.ron +++ /dev/null @@ -1,12 +0,0 @@ -#![enable(implicit_some)] -( - inherit: Asset("common.loadout_new.rings"), - head: Item("common.items.armor.cultist.bandana"), - active_hands: InHands(( - Item("common.items.axe_1h.orichalcum"), - Choice([ - (1, Item("common.items.hammer_1h.orichalcum")), - (1, Item("common.items.axe_1h.orichalcum")), - ]), - )), -)