xray16 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +12 -6
- package/xray16.d.ts +30847 -0
- package/types/index.d.ts +0 -55
- package/types/internal.d.ts +0 -6
- package/types/xr_ai/xr_action.d.ts +0 -1803
- package/types/xr_ai/xr_alife.d.ts +0 -1872
- package/types/xr_ai/xr_enemy_evaluation.d.ts +0 -134
- package/types/xr_ai/xr_goap.d.ts +0 -1118
- package/types/xr_ai/xr_graph.d.ts +0 -135
- package/types/xr_ai/xr_memory.d.ts +0 -384
- package/types/xr_lib/xr_animation.d.ts +0 -252
- package/types/xr_lib/xr_bitwise.d.ts +0 -44
- package/types/xr_lib/xr_color.d.ts +0 -142
- package/types/xr_lib/xr_debug.d.ts +0 -183
- package/types/xr_lib/xr_dialog.d.ts +0 -132
- package/types/xr_lib/xr_flags.d.ts +0 -592
- package/types/xr_lib/xr_fs.d.ts +0 -617
- package/types/xr_lib/xr_game.d.ts +0 -362
- package/types/xr_lib/xr_hit.d.ts +0 -127
- package/types/xr_lib/xr_ini.d.ts +0 -475
- package/types/xr_lib/xr_level.d.ts +0 -797
- package/types/xr_lib/xr_luabind.d.ts +0 -90
- package/types/xr_lib/xr_map.d.ts +0 -194
- package/types/xr_lib/xr_math.d.ts +0 -871
- package/types/xr_lib/xr_multiplayer.d.ts +0 -1081
- package/types/xr_lib/xr_profile.d.ts +0 -272
- package/types/xr_lib/xr_properties.d.ts +0 -612
- package/types/xr_lib/xr_relation.d.ts +0 -231
- package/types/xr_lib/xr_render.d.ts +0 -167
- package/types/xr_lib/xr_save.d.ts +0 -835
- package/types/xr_lib/xr_sound.d.ts +0 -517
- package/types/xr_lib/xr_stats.ts +0 -51
- package/types/xr_lib/xr_task.d.ts +0 -390
- package/types/xr_lib/xr_time.d.ts +0 -177
- package/types/xr_lib/xr_type.d.ts +0 -70
- package/types/xr_object/client/xr_anomaly.d.ts +0 -70
- package/types/xr_object/client/xr_artefact.d.ts +0 -153
- package/types/xr_object/client/xr_client_object.d.ts +0 -207
- package/types/xr_object/client/xr_creature.d.ts +0 -243
- package/types/xr_object/client/xr_item.d.ts +0 -370
- package/types/xr_object/client/xr_level.d.ts +0 -755
- package/types/xr_object/client/xr_physic.d.ts +0 -644
- package/types/xr_object/client/xr_zone.d.ts +0 -85
- package/types/xr_object/script/xr_script_interface.d.ts +0 -1142
- package/types/xr_object/script/xr_script_object.d.ts +0 -5702
- package/types/xr_object/script/xr_script_trade.d.ts +0 -51
- package/types/xr_object/server/xr_server_object.d.ts +0 -1488
- package/types/xr_ui/xr_ui_asset.d.ts +0 -364
- package/types/xr_ui/xr_ui_core.d.ts +0 -426
- package/types/xr_ui/xr_ui_event.d.ts +0 -1449
- package/types/xr_ui/xr_ui_interface.d.ts +0 -2449
- package/types/xr_ui/xr_ui_menu.d.ts +0 -401
- package/types/xrf_plugin.d.ts +0 -111
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
declare module "xray16" {
|
|
2
|
-
/**
|
|
3
|
-
* Set default buy trade factors.
|
|
4
|
-
*
|
|
5
|
-
* @group xr_script_trade
|
|
6
|
-
*
|
|
7
|
-
* @param friend_factor - Price factor for friendly relations.
|
|
8
|
-
* @param enemy_factor - Price factor for hostile relations.
|
|
9
|
-
*/
|
|
10
|
-
export function buy_condition(this: void, friend_factor: f32, enemy_factor: f32): void;
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* Load default buy trade condition from config.
|
|
14
|
-
*
|
|
15
|
-
* @group xr_script_trade
|
|
16
|
-
*
|
|
17
|
-
* @param ini_file - Trade config.
|
|
18
|
-
* @param section - Trade section name.
|
|
19
|
-
*/
|
|
20
|
-
export function buy_condition(this: void, ini_file: ini_file, section: string): void;
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* Set default sell trade factors.
|
|
24
|
-
*
|
|
25
|
-
* @group xr_script_trade
|
|
26
|
-
*
|
|
27
|
-
* @param friend_factor - Price factor for friendly relations.
|
|
28
|
-
* @param enemy_factor - Price factor for hostile relations.
|
|
29
|
-
*/
|
|
30
|
-
export function sell_condition(this: void, friend_factor: f32, enemy_factor: f32): void;
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* Load default sell trade condition from config.
|
|
34
|
-
*
|
|
35
|
-
* @group xr_script_trade
|
|
36
|
-
*
|
|
37
|
-
* @param ini_file - Trade config.
|
|
38
|
-
* @param section - Trade section name.
|
|
39
|
-
*/
|
|
40
|
-
export function sell_condition(this: void, ini_file: ini_file, section: string): void;
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* Load default item visibility trade condition from config.
|
|
44
|
-
*
|
|
45
|
-
* @group xr_script_trade
|
|
46
|
-
*
|
|
47
|
-
* @param ini_file - Trade config.
|
|
48
|
-
* @param section - Trade section name.
|
|
49
|
-
*/
|
|
50
|
-
export function show_condition(this: void, ini_file: ini_file, section: string): void;
|
|
51
|
-
}
|