45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
|
let shared = ../../shared/package.dhall
|
||
|
|
||
|
let armor =
|
||
|
[ ./face_mask.dhall
|
||
|
, ./maiden_armor.dhall
|
||
|
, ./mihari_armor.dhall
|
||
|
, ./light_armor.dhall
|
||
|
, ./sand_robe.dhall
|
||
|
, ./sandshoes.dhall
|
||
|
]
|
||
|
|
||
|
let weapons =
|
||
|
[ ./bane_of_lizards_shortsword.dhall
|
||
|
, ./battleaxe.dhall
|
||
|
, ./blessed_dagger_of_stabbing.dhall
|
||
|
, ./boomerang.dhall
|
||
|
, ./dagger.dhall
|
||
|
, ./greatbow.dhall
|
||
|
, ./greatsword.dhall
|
||
|
, ./longbow.dhall
|
||
|
, ./longsword.dhall
|
||
|
, ./shortsword.dhall
|
||
|
, ./super_boomerang.dhall
|
||
|
, ./sword_of_two_truths.dhall
|
||
|
, ./tolkath_battleaxe.dhall
|
||
|
, ./whisperwind.dhall
|
||
|
, ./iron_shield.dhall
|
||
|
, ./shield.dhall
|
||
|
]
|
||
|
|
||
|
let trinkets =
|
||
|
[ ./amulet_of_bandacy.dhall
|
||
|
, ./amulet_of_focus.dhall
|
||
|
, ./amulet_of_the_old_ones.dhall
|
||
|
, ./gold_amulet.dhall
|
||
|
, ./mihari_amulet.dhall
|
||
|
, ./sandstorm_amulet.dhall
|
||
|
]
|
||
|
|
||
|
let consumables = [ ./cactus_fruit.dhall ] # shared.consumables
|
||
|
|
||
|
let gear = [ ./torch.dhall ]
|
||
|
|
||
|
in armor # weapons # consumables # gear # trinkets
|