A convenience module for accessing TRX catalog IDs.
trx.catalog.objectscatalog_objects.csv, with the O_ prefix stripped and lowercased.if item.object_id == trx.catalog.objects.wolf then ...trx.catalog.flip_effectscatalog_item_actions.csv, with the ITEM_ACTION_ prefix stripped and lowercased.trx.rooms.flip_effect(trx.catalog.flip_effects.floor_shake, 10)trx.catalog.lara_statescatalog_lara_states.csv, with the LS_ prefix stripped and lowercased.if lara.state == trx.catalog.lara_states.run then ...trx.catalog.lara_animscatalog_lara_anims.csv, with the LA_ prefix stripped and lowercased.if anim == trx.catalog.lara_anims.jump_forward then ...trx.catalog.musiccatalog_music.csv, with the MX_ prefix stripped and lowercased.trx.music.play(trx.catalog.music.secret)trx.catalog.samplescatalog_samples.csv, with the SFX_ prefix stripped and lowercased.trx.sound.play(trx.catalog.samples.lara_no)