Esempio n. 1
0
        public override void PopulateFromJson(JObject jsonObject)
        {
            base.PopulateFromJson(jsonObject);
            m_eventsInvalidatingCost    = Serialization.JsonArrayAsList <EventCategory>(jsonObject, "eventsInvalidatingCost");
            m_eventsInvalidatingCasting = Serialization.JsonArrayAsList <EventCategory>(jsonObject, "eventsInvalidatingCasting");
            m_spawnLocation             = ICoordSelectorUtils.FromJsonProperty(jsonObject, "spawnLocation");
            JArray val = Serialization.JsonArray(jsonObject, "cost");

            m_cost = new List <Cost>((val != null) ? val.get_Count() : 0);
            if (val != null)
            {
                foreach (JToken item in val)
                {
                    m_cost.Add(Cost.FromJsonToken(item));
                }
            }
            JArray val2 = Serialization.JsonArray(jsonObject, "spells");

            m_spells = new List <SpellOnSpawnWithDestination>((val2 != null) ? val2.get_Count() : 0);
            if (val2 != null)
            {
                foreach (JToken item2 in val2)
                {
                    m_spells.Add(SpellOnSpawnWithDestination.FromJsonToken(item2));
                }
            }
            m_autoResurrect = Serialization.JsonTokenValue <bool>(jsonObject, "autoResurrect", false);
        }
Esempio n. 2
0
        public static SpellOnSpawnWithDestination FromJsonToken(JToken token)
        {
            //IL_0001: Unknown result type (might be due to invalid IL or missing references)
            //IL_0007: Invalid comparison between Unknown and I4
            //IL_000f: Unknown result type (might be due to invalid IL or missing references)
            if ((int)token.get_Type() != 1)
            {
                Debug.LogWarning((object)("Malformed token : type Object expected, but " + token.get_Type() + " found"));
                return(null);
            }
            JObject jsonObject = Extensions.Value <JObject>((IEnumerable <JToken>)token);
            SpellOnSpawnWithDestination spellOnSpawnWithDestination = new SpellOnSpawnWithDestination();

            spellOnSpawnWithDestination.PopulateFromJson(jsonObject);
            return(spellOnSpawnWithDestination);
        }
Esempio n. 3
0
        public static SpellOnSpawnWithDestination FromJsonProperty(JObject jsonObject, string propertyName, SpellOnSpawnWithDestination defaultValue = null)
        {
            //IL_0011: Unknown result type (might be due to invalid IL or missing references)
            //IL_0018: Invalid comparison between Unknown and I4
            JProperty val = jsonObject.Property(propertyName);

            if (val == null || (int)val.get_Value().get_Type() == 10)
            {
                return(defaultValue);
            }
            return(FromJsonToken(val.get_Value()));
        }