| Total Complexity | 1 | 
| Total Lines | 8 | 
| Duplicated Lines | 0 % | 
| Changes | 2 | ||
| Bugs | 0 | Features | 0 | 
| 1 | from intelligine.synergy.object.BaseBug import BaseBug  | 
            ||
| 5 | class Egg(BaseBug):  | 
            ||
| 6 | |||
| 7 | def __init__(self, collection, context):  | 
            ||
| 8 | super().__init__(collection, context)  | 
            ||
| 9 | context.metas.list.add(TYPE, self.get_id(), TYPE_NURSERY)  | 
            ||
| 10 | self._life_points = 1  | 
            ||
| 11 | self._add_col(COL_SMELL)  | 
            ||
| 12 | self._set_smell(SMELL_EGG)  | 
            ||
| 13 |