open-adventure/templates/dungeon.c.tpl
2024-01-03 06:15:04 -05:00

59 lines
834 B
Smarty

/*
SPDX-FileCopyrightText: Copyright Eric S. Raymond <esr@thyrsus.com>
SPDX-License-Identifier: BSD-2-Clause
*/
#include "{h_file}"
const char* arbitrary_messages[] = {{
{arbitrary_messages}
}};
const class_t classes[] = {{
{classes}
}};
const turn_threshold_t turn_thresholds[] = {{
{turn_thresholds}
}};
const location_t locations[] = {{
{locations}
}};
const object_t objects[] = {{
{objects}
}};
const obituary_t obituaries[] = {{
{obituaries}
}};
const hint_t hints[] = {{
{hints}
}};
long conditions[] = {{
{conditions}
}};
const motion_t motions[] = {{
{motions}
}};
const action_t actions[] = {{
{actions}
}};
const long tkey[] = {{{tkeys}}};
const travelop_t travel[] = {{
{travel}
}};
const char *ignore = "{ignore}";
/* Dwarf starting locations */
const int dwarflocs[NDWARVES] = {{{dwarflocs}}};
/* end */