Error in the swiftstrike ego

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
ghostbuster
Uruivellas
Posts: 617
Joined: Mon Oct 09, 2006 7:47 pm

Error in the swiftstrike ego

#1 Post by ghostbuster »

The swiftstrike ego description is incorrect.

Code: Select all

newEntity{
        power_source = {technique=true},
        name = "swiftstrike ", prefix=true, instant_resolve=true,
        keywords = {swiftstrike=true},
        level_range = {30, 50},
        greater_ego = 1,
        rarity = 25,
        cost = 30,
        combat = {
                physspeed = -0.1,
                travel_speed = 2,
                inc_stats = {
                        [Stats.STAT_CUN] = resolvers.mbonus_material(6, 1),
        },
        },
}
It should probably be

Code: Select all

newEntity{
        power_source = {technique=true},
        name = "swiftstrike ", prefix=true, instant_resolve=true,
        keywords = {swiftstrike=true},
        level_range = {30, 50},
        greater_ego = 1,
        rarity = 25,
        cost = 30,
        combat = {
                physspeed = -0.1,
                travel_speed = 2,
        },
        wielder = {
                inc_stats = {
                        [Stats.STAT_CUN] = resolvers.mbonus_material(6, 1),
                     },
        },
}
It happens in both the vanilla ranged and orcs steamgun egos files.

Post Reply