Difference between revisions of "User:Bonzi77"

From Team Fortress Wiki
Jump to: navigation, search
(Created page with 'http://api.steampowered.com/<interface name>/<method name>/v<version>/?key=<api key>&format=<format>.')
 
Line 1: Line 1:
 
http://api.steampowered.com/<interface name>/<method name>/v<version>/?key=<api key>&format=<format>.
 
http://api.steampowered.com/<interface name>/<method name>/v<version>/?key=<api key>&format=<format>.
 +
{
 +
  "result":
 +
  {
 +
      "status": 1,
 +
      "qualities":
 +
      {
 +
          "normal": 0,
 +
          "common": 1,
 +
          "rare": 2,
 +
          "unique": 3,
 +
          "community": 7,
 +
          "developer": 8,
 +
          "selfmade": 9
 +
      },
 +
      "items":
 +
      {
 +
          "item":
 +
          [
 +
              {
 +
                  "name": "TF_WEAPON_BAT",
 +
                  "defindex": 0,
 +
                  "item_class": "tf_weapon_bat",
 +
                  "item_type_name": "#TF_Weapon_Bat",
 +
                  "item_name": "#TF_Weapon_Bat",
 +
                  "item_slot": "melee",
 +
                  "item_quality": 0,
 +
                  "image_inventory": "backpack\/weapons\/c_models\/c_bat",
 +
                  "model_player": "models\/weapons\/w_models\/w_bat.mdl"
 +
              },
 +
          ]
 +
      },
 +
      "attributes":
 +
      {
 +
          "attribute":
 +
          [
 +
              {
 +
                  "name": "damage penalty",
 +
                  "defindex": 1,
 +
                  "attribute_class": "mult_dmg",
 +
                  "min_value": 0.950000,
 +
                  "max_value": 0.850000,
 +
                  "description_string": "#Attrib_DamageDone_Negative",
 +
                  "description_format": "value_is_percentage",
 +
                  "effect_type": "negative"
 +
              },
 +
          ]
 +
      }
 +
  }

Revision as of 01:37, 2 July 2010

http://api.steampowered.com/<interface name>/<method name>/v<version>/?key=<api key>&format=<format>. {

 "result": 
 { 
     "status": 1, 
     "qualities": 
     { 
         "normal": 0, 
         "common": 1, 
         "rare": 2, 
         "unique": 3, 
         "community": 7, 
         "developer": 8, 
         "selfmade": 9 
     }, 
     "items": 
     { 
         "item": 
         [ 
             { 
                 "name": "TF_WEAPON_BAT", 
                 "defindex": 0, 
                 "item_class": "tf_weapon_bat", 
                 "item_type_name": "#TF_Weapon_Bat", 
                 "item_name": "#TF_Weapon_Bat", 
                 "item_slot": "melee", 
                 "item_quality": 0, 
                 "image_inventory": "backpack\/weapons\/c_models\/c_bat", 
                 "model_player": "models\/weapons\/w_models\/w_bat.mdl" 
             }, 
         ] 
     }, 
     "attributes": 
     { 
         "attribute": 
         [ 
             { 
                 "name": "damage penalty", 
                 "defindex": 1, 
                 "attribute_class": "mult_dmg", 
                 "min_value": 0.950000, 
                 "max_value": 0.850000, 
                 "description_string": "#Attrib_DamageDone_Negative", 
                 "description_format": "value_is_percentage", 
                 "effect_type": "negative" 
             }, 
         ] 
     } 
 }