{"id":497,"date":"2022-05-06T18:21:36","date_gmt":"2022-05-06T23:21:36","guid":{"rendered":"https:\/\/chronocrash.com\/obor\/wiki\/?p=497"},"modified":"2025-05-23T21:12:37","modified_gmt":"2025-05-24T02:12:37","slug":"model-property","status":"publish","type":"post","link":"https:\/\/chronocrash.com\/obor\/wiki\/model-property\/","title":{"rendered":"Model"},"content":{"rendered":"\n<p class=\"has-vivid-red-color has-text-color\">Under Construction<\/p>\n\n\n\n<p>Models are the templates that all in game entities spawn from. The model sheet contains the animation definitions, starting properties, name, sub models, and all the other other basics needed to build an entity.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Script<\/h2>\n\n\n\n<p>Model properties are attributes possessed by models, which are in turn used as templates for entities. Animations, starting hit-points, and other properties that are mostly immutable throughout a game are kept as model properties. Model properties are accessible through the <code>get_model_property()<\/code> and <code>set_model_property()<\/code> functions.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: cpp; title: ; notranslate\" title=\"\">\nmixed x = get_model_property(void &lt;model pointer&gt;, int &lt;identifier&gt;); \n<\/pre><\/div>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: cpp; title: ; notranslate\" title=\"\">\nmixed x = &lt;value&gt;;\n\nset_model_property(void &lt;model pointer&gt;, int &lt;identifier&gt;, x);\n<\/pre><\/div>\n\n\n<p>It&#8217;s important to understand the difference between an entity, a model, and modeldata to avoid conflicts and causing unwanted behavior with scripts.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Entity:<\/strong> Entities are interactive objects in the game world, usually controlled directly by players or the computer. Most entity properties are mutable by nature, such as location in the game world or remaining hit points.<\/li>\n\n\n\n<li><strong>Model:<\/strong> Models are global templates used to create an entity. Model properties act as default values. They also house values that normally remain constant, such compiled scripts. Model pointers are available by index. Each entity also has a pointer available to the model it was created from as an <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/entity-property\/\" data-type=\"post\" data-id=\"13\">entity property<\/a>. <\/li>\n\n\n\n<li><strong>Modeldata:<\/strong> Modeldata is a partial copy of the model that is created by the entity spawn routine. It contains values for the entity that are semi-constant and set when the entity is first spawned. Examples include an alias name or maximum points. Modeldata is unique to each entity. Its pointer is available as an <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/entity-property\/\" data-type=\"post\" data-id=\"13\">entity property<\/a>.<\/li>\n<\/ul>\n\n\n\n<p>This example modifies an entity&#8217;s maximum health (actually a model property) by getting the entity&#8217;s modeldata pointer, then getting and setting the model hp property.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: cpp; title: ; notranslate\" title=\"\">\nvoid acting_entity = &lt;entity&gt;\n\nvoid model_data = get_entity_property(acting_entity, openborconstant(&quot;ENTITY_PROPERTY_MODELDATA&quot;));\n\nint hp_current = get_model_property(model_data, openborconstant(&quot;MODEL_PROPERTY_HP&quot;));\n\nhp_current += 5;\n\nset_model_property(model_data, openborconstant(&quot;MODEL_PROPERTY_HP&quot;), hp_current);\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\">Property List<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Name: The <code>openborconstant()<\/code> used to access property. For example <code>openborconstant(\"MODEL_PROPERTY_ANTI_GRAVITY\")<\/code>.<\/li>\n\n\n\n<li>Type: The property value&#8217;s variable type.<\/li>\n\n\n\n<li>Description: A short description of what the property is and does.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table is-style-stripes has-small-font-size\"><table><thead><tr><th>Name<\/th><th><a href=\"https:\/\/chronocrash.com\/obor\/wiki\/variables#type\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/variables#type\">Type<\/a><\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td>MODEL_PROPERTY_ACTION_FREEZE<\/td><td>Integer<\/td><td>If true, any entities that are not Text type freeze in place while this entity performs its Special animation. Used by legacy Smartbomb.<\/td><\/tr><tr><td>MODEL_PROPERTY_AIR_CONTROL<\/td><td>Integer<\/td><td>Flags to configure control options during jump. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/jumping\/#air_control\">air_control<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_ANTI_GRAVITY<\/td><td>Float<\/td><td>Model&#8217;s resistance to gravity. Higher values impart greater resistance. <br><br><code>0.0<\/code> = No gravity resistance.<br><code>1.0<\/code> = Immune to gravity.<\/td><\/tr><tr><td>MODEL_PROPERTY_BLEND_MODE<\/td><td>Integer<\/td><td>Model blend mode (&#8220;alpha&#8221;).<br><br>* <code>openborconstant(\"BLEND_MODE_ALPHA\")<\/code><br><br>* <code>openborconstant(\"BLEND_MODE_ALPHA_NEGATIVE\")<\/code><br><br>* <code>openborconstant(\"BLEND_MODE_AVERAGE\")<\/code><br><br>* <code>openborconstant(\"BLEND_MODE_DODGE\")<\/code><br><br>* <code>openborconstant(\"BLEND_MODE_HARDLIGHT\")<\/code><br><br>* <code>openborconstant(\"BLEND_MODE_MODEL\")<\/code><br><br>* <code>openborconstant(\"BLEND_MODE_NONE\")<\/code><br><br>* <code>openborconstant(\"BLEND_MODE_OVERLAY\")<\/code><\/td><\/tr><tr><td>MODEL_PROPERTY_BOUNCE<\/td><td>Integer<\/td><td>If true, entity has bounce effect when landing from fall.<\/td><\/tr><tr><td>MODEL_PROPERTY_BLOCK_CONFIG_FLAGS<\/td><td>Integer<\/td><td>General blocking setup. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/blocking\/#Block_Configuration\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/blocking\/#Block_Configuration\">Blocking configuration<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_BLOCK_ODDS<\/td><td>Integer<\/td><td>Chance that AI blocks attack. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/blocking\/#Blocking_Odds\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/blocking\/#Blocking_Odds\">Blocking odds<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_BLOCK_PAIN<\/td><td>Integer<\/td><td>When blocking an attack, the attack damage must meet or exceed this value for entity to assume a block pain animation.<\/td><\/tr><tr><td>MODEL_PROPERTY_BLOCK_THRESHOLD<\/td><td>Integer<\/td><td>Maximum incoming attack damage entity can block. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/blocking\/#Threshold\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/blocking\/#Threshold\">Threshold<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_CHILD_FOLLOW<\/td><td>Pointer<\/td><td>Pointer to the model&#8217;s child follow properties.<\/td><\/tr><tr><td>MODEL_PROPERTY_COLORSET<\/td><td>Pointer<\/td><td>Pointer to colorset indexes and configuration. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/palette\/\" data-type=\"post\" data-id=\"652\">Palette<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_DEATH_CONFIG_FLAGS<\/td><td>Integer<\/td><td>Behavior on death. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/killed-and-dead\/#Death_Configuration\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/killed-and-dead\/#Death_Configuration\">Death<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_ENHANCED_DELAY_CAP_MAX<\/td><td>Integer<\/td><td>Maximum calculated delay. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Cap_Maximum\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Cap_Maximum\">Enhanced Delay<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_ENHANCED_DELAY_CAP_MIN<\/td><td>Integer<\/td><td>Minimum calculated delay. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Cap_Minimum\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Cap_Minimum\">Enhanced Delay<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_ENHANCED_DELAY_MODIFIER<\/td><td>Integer<\/td><td>Added to existing frame delay. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Modifier\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Modifier\">Enhanced Delay<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_ENHANCED_DELAY_MULTIPLIER<\/td><td>Decimal<\/td><td>Multiplied by frame delay to get new delay. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Mutiplier\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Mutiplier\">Enhanced Delay<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_ENHANCED_DELAY_RANGE_MAX<\/td><td>Integer<\/td><td>Maximum existing delay edelay will affect. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Range_Maximum\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Range_Maximum\">Enhanced Delay<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_ENHANCED_DELAY_RANGE_MIN<\/td><td>Integer<\/td><td>Minimum existing delay edelay will affect. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Range_Minimum\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/enhanced-delay\/#Range_Minimum\">Enhanced Delay<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_FACTION<\/td><td>Pointer<\/td><td>Pointer to faction data. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/faction\/\" data-type=\"post\" data-id=\"895\">Faction<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_FALL_DISABLE<\/td><td>Integer<\/td><td>If true, model is immune to knockdown while on the ground.<\/td><\/tr><tr><td>MODEL_PROPERTY_FLIP<\/td><td>Integer<\/td><td>If true, entity flips when spawned as an attack flash and the hit location is at a higher <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/axis\/\" data-type=\"post\" data-id=\"59\">X Axis<\/a> position than target.<\/td><\/tr><tr><td>MODEL_PROPERTY_GROUND<\/td><td>Integer<\/td><td>If true, entity cannot hit others with attacks if it is in the air.<\/td><\/tr><tr><td>MODEL_PROPERTY_GUARD_POINTS<\/td><td>Integer<\/td><td>Starting and maximum <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/blocking\/\">guard points<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_GUARD_RATE<\/td><td>Integer<\/td><td>Number (half when blocking) of <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/blocking\/\" data-type=\"link\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/blocking\/\">guard points<\/a> recovered every 200 centiseonds. <\/td><\/tr><tr><td>MODEL_PROPERTY_HP<\/td><td>Integer<\/td><td>Starting and maximum hit points.<\/td><\/tr><tr><td>MODEL_PROPERTY_HUD_DISABLE<\/td><td>Integer<\/td><td>When true, this entity does not display in player&#8217;s HUD.<\/td><\/tr><tr><td>MODEL_PROPERTY_HUD_POPUP<\/td><td>Pointer<\/td><td>Pointer to model&#8217;s <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/heads-up-display-hud\/#Dial\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/heads-up-display-hud\/#Dial\">Pop Up HUD Properties<\/a> (ex. Boss HUD).<\/td><\/tr><tr><td>MODEL_PROPERTY_ICON<\/td><td>Pointer<\/td><td>Pointer to model&#8217;s <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/heads-up-display-hud\/#Icon-2\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/heads-up-display-hud\/#Icon-2\">Icon Properties<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_INDEX<\/td><td>Integer<\/td><td>Model&#8217;s unique numeric index assigned on read in.<\/td><\/tr><tr><td>MODEL_PROPERTY_LAYER<\/td><td>Integer<\/td><td>Text setlayer property. If any non-zero value, the model&#8217;s layer position is this value + <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/system-variables\/\" data-type=\"post\" data-id=\"133\">HOLE_Z<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_MAKE_INVINCIBLE<\/td><td>Integer<\/td><td>If this is an item, it will set invincibility time to the collecting entity. If positive, the collecting entity also has blink flag set. If negative, the value is inverted to positive first, and the entity&#8217;s blink flag is not set. <\/td><\/tr><tr><td>MODEL_PROPERTY_MOVE_CONFIG_FLAGS<\/td><td>Integer<\/td><td>Flags to control how the model behaves in relation to movement and its environment. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/movement\/#Move_Configuration\" data-type=\"URL\">Move Configuration<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_MP<\/td><td>Integer<\/td><td>Starting and maximum magic\/energy points.<\/td><\/tr><tr><td>MODEL_PROPERTY_MULTIPLE<\/td><td>Integer<\/td><td>When this entity is struck, attacker gains attack damage * multiple to its score. Default = 5 for enemy types, -1 for NPC, 0 for all else.<\/td><\/tr><tr><td>MODEL_PROPERTY_NAME<\/td><td>String<\/td><td>Name of model. Used as entity name if no alias provided.<\/td><\/tr><tr><td>MODEL_PROPERTY_OFF_SCREEN_KILL<\/td><td>Integer<\/td><td>Distance an entity can pass out of the screen borders before it is <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/killed-and-dead\/\" data-type=\"post\" data-id=\"283\">killed<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_OFF_SCREEN_NO_ATTACK<\/td><td>Float<\/td><td>Replaces the global off screen kill for model. Off screen kill subtracts from calculated chance of attack when entity is 10 or more pixels of screen. <br><br><code>0.0<\/code> = No change.<br><code>1.0<\/code> = No chance to attack when off screen.<\/td><\/tr><tr><td>MODEL_PROPERTY_PAIN_CONFIG_FLAGS<\/td><td>Integer<\/td><td>Basic hit reaction behavior. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/damage-mitigation\/#Pain_Configuration\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/damage-mitigation\/#Pain_Configuration\">Pain Configuration<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_PATH<\/td><td>String<\/td><td>Relative file path to model sheet. Ex: data\/chars\/kula\/kula.txt<\/td><\/tr><tr><td>MODEL_PROPERTY_PRIORITY<\/td><td>Integer<\/td><td>Applies when attempting to spawn an entity if the maximum allowed entities are in play already. The first existing entity with a priority value less than the incoming spawn is killed to make room. If no existing entity has lower priority, the spawn aborts.<\/td><\/tr><tr><td>MODEL_PROPERTY_QUAKE_CONFIG<\/td><td>Integer<\/td><td>Controls interaction between entity and native quake behavior. Bitfield with following constants:<br><br><code>openborconstant(\"QUAKE_CONFIG_NONE\")<\/code> &#8211; Quake functions normally (screen shakes when landing from knockdown).<br><br><code>openborconstant(\"QUAKE_CONFIG_DISABLE_SCREEN\")<\/code> &#8211; Entity does not trigger screen shake.<br><br><code>openborconstant(\"QUAKE_CONFIG_DISABLE_SELF\")<\/code> &#8211; Entity is not affected by screen shake.<br><\/td><\/tr><tr><td>MODEL_PROPERTY_REMOVE_CONFIG<\/td><td>integer<\/td><td>Controls remove behavior. Primarily for projectiles. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/child\/#Remove\" data-type=\"link\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/child\/#Remove\">Remove<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_RISE_INVINCIBILITY<\/td><td>Integer<\/td><td>Set invincibility flag and add value as time when rising from knockdown. May be positive or negative, using same logic as MODEL_PROPERTY_MAKE_INVINCIBLE.<\/td><\/tr><tr><td>MODEL_PROPERTY_RUN_CONFIG_FLAGS<\/td><td>Integer<\/td><td>Controls running behavior. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/movement\/#Run_Config\">Run Configuration<\/a>.<br><\/td><\/tr><tr><td>MODEL_PROPERTY_RUN_JUMP_HEIGHT<\/td><td>Float<\/td><td>Jumping height when running.<\/td><\/tr><tr><td>MODEL_PROPERTY_RUN_JUMP_LENGTH<\/td><td>Float<\/td><td>Multiplier applied to normal jump distance when running.<\/td><\/tr><tr><td>MODEL_PROPERTY_RUN_SPEED<\/td><td>Float<\/td><td>Running speed.<\/td><\/tr><tr><td>MODEL_PROPERTY_SHADOW_CONFIG_FLAGS<\/td><td>Integer<\/td><td>Shadow behavior. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/shadows\/#Shadow_Configuration\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/shadows\/#Shadow_Configuration\">Shadow Configuration<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_SHADOW_INDEX<\/td><td>Integer<\/td><td><a href=\"https:\/\/chronocrash.com\/obor\/wiki\/shadows\/#Shadow_Index\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/shadows\/#Shadow_Index\">Static Shadow Index.<\/a><\/td><\/tr><tr><td>MODEL_PROPERTY_SCORE<\/td><td>Integer<\/td><td>Score allotted to when defeated or collected as an item.<\/td><\/tr><tr><td>MODEL_PROPERTY_SCROLL<\/td><td>Float<\/td><td>Rate (if any) entity scrolls with background. <\/td><\/tr><tr><td>MODEL_PROPERTY_SPAWN_HUD<\/td><td>Pointer<\/td><td>Pointer to model&#8217;s <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/heads-up-display-hud\/#Spawn_HUD\" data-type=\"URL\" data-id=\"https:\/\/chronocrash.com\/obor\/wiki\/heads-up-display-hud\/#Spawn_HUD\">Spawn HUD Properties<\/a>.<\/td><\/tr><tr><td>MODEL_PROPERTY_SUBTYPE<\/td><td>Integer<\/td><td>See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/type\/\" data-type=\"post\" data-id=\"961\">Type<\/a> for list of constants.<\/td><\/tr><tr><td>MODEL_PROPERTY_TYPE<\/td><td>Integer<\/td><td>See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/type\/\" data-type=\"post\" data-id=\"961\">Type<\/a> for list of constants.<\/td><\/tr><tr><td>MODEL_PROPERTY_WEAPON<\/td><td>Pointer<\/td><td>Pointer to model&#8217;s weapon properties. See <a href=\"https:\/\/chronocrash.com\/obor\/wiki\/weapons\/\" data-type=\"post\" data-id=\"680\">Weapons<\/a>.<\/td><\/tr><\/tbody><tfoot><tr><td>Name<\/td><td>Type<\/td><td>Description<\/td><\/tr><\/tfoot><\/table><figcaption class=\"wp-element-caption\">Model Properties<\/figcaption><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Accessing the control properties of an model.<\/p>\n","protected":false},"author":1,"featured_media":1294,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[328,2],"tags":[399,400,251,4],"class_list":["post-497","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-openbor","category-script","tag-obor_func_get_model_property-2","tag-obor_func_set_model_property-2","tag-model-property","tag-openbor-script"],"revision_note":"","jetpack_featured_media_url":"https:\/\/i0.wp.com\/chronocrash.com\/obor\/wiki\/wp-content\/uploads\/2022\/05\/anatomy_0.png?fit=300%2C302&ssl=1&wsr","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/chronocrash.com\/obor\/wiki\/wp-json\/wp\/v2\/posts\/497","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/chronocrash.com\/obor\/wiki\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/chronocrash.com\/obor\/wiki\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/chronocrash.com\/obor\/wiki\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/chronocrash.com\/obor\/wiki\/wp-json\/wp\/v2\/comments?post=497"}],"version-history":[{"count":5,"href":"https:\/\/chronocrash.com\/obor\/wiki\/wp-json\/wp\/v2\/posts\/497\/revisions"}],"predecessor-version":[{"id":1442,"href":"https:\/\/chronocrash.com\/obor\/wiki\/wp-json\/wp\/v2\/posts\/497\/revisions\/1442"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chronocrash.com\/obor\/wiki\/wp-json\/wp\/v2\/media\/1294"}],"wp:attachment":[{"href":"https:\/\/chronocrash.com\/obor\/wiki\/wp-json\/wp\/v2\/media?parent=497"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/chronocrash.com\/obor\/wiki\/wp-json\/wp\/v2\/categories?post=497"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/chronocrash.com\/obor\/wiki\/wp-json\/wp\/v2\/tags?post=497"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}