Skip to content

Commit

Permalink
Merge pull request #854 from molnizz/cringe15
Browse files Browse the repository at this point in the history
Add: SyndiMouse
  • Loading branch information
MrCat15352 authored Jul 22, 2024
2 parents 7e0827b + 52be1de commit 6b0b5de
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 3 deletions.
Binary file not shown.
3 changes: 2 additions & 1 deletion mod_celadon/mobs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ ID мода: MOBS
Питомцы:
- Синди Кот
- Синди Фокс
- Синди Мышь
Мобы:
- Ириска

Expand Down Expand Up @@ -78,7 +79,7 @@ ID мода: MOBS

### Авторы:

MrCat15352
MrCat15352, Molniz
<!--
Здесь находится твой никнейм
Если работал совместно - никнеймы тех, кто помогал.
Expand Down
4 changes: 2 additions & 2 deletions mod_celadon/mobs/_mobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/// Строковое имя модпака. Используется для поиска других модпаков в init.
name = "Mobs"
/// Строковое описание для модпака. Может использоваться для списка глаголов модпака в качестве описания.
desc = "Содержит новых мобов: синди кот, фокс, Ириска"
desc = "Содержит новых мобов: синди кот, фокс, Ириска, синдимышь"
/// Строка с авторами этого модпака.
author = "MrCat15352"
author = "MrCat15352, Molniz"

///**********************************************************************///
1 change: 1 addition & 0 deletions mod_celadon/mobs/_mobs.dme
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "code/iriska.dm"
#include "code/pets/syndicat.dm"
#include "code/pets/syndifox.dm"
#include "code/pets/syndimouse.dm"

#include "code/burrows.dm"
#include "code/roaches/reagent_containers.dm"
Expand Down
34 changes: 34 additions & 0 deletions mod_celadon/mobs/code/pets/syndimouse.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/mob/living/simple_animal/mouse/syndie
icon = 'mod_celadon/_storge_icons/icons/mobs/syndimouse.dmi'
name = "SyndiMouse"
body_color = "red"
icon_state = "mouse_red"
icon_living = "mouse_red"
desc = "It's a SyndiMouse in a spacesuit."
icon_dead = "mouse_red_dead"
held_state = "mouse_red"
gender = MALE
health = 175
maxHealth = 175
unsuitable_atmos_damage = 0
minbodytemp = 800
minbodytemp = 0
melee_damage_lower = 15
melee_damage_upper = 45
faction = list("Syndicate")

/mob/living/simple_animal/mouse/Initialize()
. = ..()
GLOB.mouse_spawned += 1
ADD_TRAIT(src, TRAIT_HOLDABLE, INNATE_TRAIT)
AddComponent(/datum/component/squeak, list('sound/effects/mousesqueek.ogg'=1), 100, extrarange = SHORT_RANGE_SOUND_EXTRARANGE) //as quiet as a mouse or whatever
if(!body_color)
body_color = pick( list("brown","gray","white","red") )
icon_state = "mouse_[body_color]"
icon_living = "mouse_[body_color]"
icon_dead = "mouse_[body_color]_dead"

/obj/item/reagent_containers/food/snacks/deadmouse
icon = 'mod_celadon/_storge_icons/icons/mobs/syndimouse.dmi'
icon_state = "mouse_red_dead"
desc = "Dead mouse in a spacesuit. Taraja's favorite food"

0 comments on commit 6b0b5de

Please sign in to comment.