Skip to content

Commit

Permalink
Фикс айконстейтов, добавление спрайтов, ворлд-айкон, микрофиксы и всё…
Browse files Browse the repository at this point in the history
… такое
  • Loading branch information
Danistans committed Sep 29, 2024
1 parent 35f825d commit c7aa388
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
6 changes: 3 additions & 3 deletions code/defines/obj/hydro.dm
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
name = "pack of peashooter seeds"
cases = list("семена Горохострела обыкновенного", "семян Горохострела обыкновенного", "семенам Горохострела обыкновенного", "семена Горохострела обыкновенного", "семенами Горохострела обыкновенного", "семенах Горохострела обыкновенного")
desc = "Эти семена вырастают в Горохострел"
icon_state = "seed-gatfruit"
icon_state = "seed-peashooter"
species = "peashooter"
plantname = "Peashooter Tree"
product_type = /obj/item/weapon/reagent_containers/food/snacks/grown/peashooter
Expand All @@ -106,8 +106,8 @@
name = "pack of virus peashooter seeds"
cases = list("семена Горохострела Гиббингтонского", "семян Горохострела Гиббингтонского", "семенам Горохострела Гиббингтонского", "семена Горохострела Гиббингтонского", "семенами Горохострела Гиббингтонского", "семенах Горохострела Гиббингтонского")
desc = "Эти семена вырастают в Горохострел Гиббингтонский"
icon_state = "seed-gatfruit"
species = "peashooter"
icon_state = "seed-peashooter_virus"
species = "peashooter_virus"
plantname = "Virus Peashooter Tree"
product_type = /obj/item/weapon/reagent_containers/food/snacks/grown/peashooter
lifespan = 20
Expand Down
12 changes: 6 additions & 6 deletions code/modules/projectiles/guns/projectile/pistol.dm
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@
name = "Peashooter"
desc = "Горохострел. Стреляет горохом. У самого кончика стручка закреплена горящая зажигалка."
cases = list("горохострел", "горохострела", "горохострелу", "горохострел", "горохострелом", "горохостреле")
icon_state = "peashooter"
item_state = "peashooter"
icon_state = "peashooter_in_fire"
item_state = "peashooter_in_fire"
origin_tech = "combat=1;materials=1"
initial_mag = /obj/item/ammo_box/magazine/pea/in_fire
suitable_mags = list(/obj/item/ammo_box/magazine/pea/in_fire)
Expand All @@ -167,8 +167,8 @@
name = "Virus Peashooter"
desc = "Горохострел Гиббингтоский. Стреляет особо большим горохом. У самого кончика стручка закреплена горящая зажигалка."
cases = list("горохострел", "горохострела", "горохострелу", "горохострел", "горохострелом", "горохостреле")
icon_state = "peashooter"
item_state = "peashooter"
icon_state = "peashooter_virus"
item_state = "peashooter_virus"
origin_tech = "combat=1;materials=1"
initial_mag = /obj/item/ammo_box/magazine/pea/virus
suitable_mags = list(/obj/item/ammo_box/magazine/pea/virus)
Expand All @@ -187,8 +187,8 @@
name = "Virus Peashooter"
desc = "Горохострел Гиббингтоский. Стреляет особо большим горохом."
cases = list("горохострел", "горохострела", "горохострелу", "горохострел", "горохострелом", "горохостреле")
icon_state = "peashooter"
item_state = "peashooter"
icon_state = "peashooter_virus_in_fire"
item_state = "peashooter_virus_in_fire"
origin_tech = "combat=1;materials=1"
initial_mag = /obj/item/ammo_box/magazine/pea/virus/in_fire
suitable_mags = list(/obj/item/ammo_box/magazine/pea/virus/in_fire)
Expand Down
8 changes: 5 additions & 3 deletions code/modules/reagents/reagent_containers/food/snacks/grown.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1185,6 +1185,7 @@
cases = list("горохострел", "горохострела", "горохострелу", "горохострел", "горохострелом", "горохостреле")
desc = "Нераскрывшийся плод горохострела, подозрительно напоминающий пистолет"
icon_state = "peashooter"
item_state_world = "peashooter_world"
potency = 25
filling_color = "#020108"
trash = /obj/item/weapon/gun/projectile/automatic/pistol/peashooter
Expand All @@ -1197,15 +1198,16 @@
reagents.add_reagent("sulfur", 1 + round(potency / 10, 1))
bitesize = 1 + round(reagents.total_volume / 2, 1)

/obj/item/weapon/reagent_containers/food/snacks/grown/peashooter
/obj/item/weapon/reagent_containers/food/snacks/grown/peashooter/virus
seed_type = /obj/item/seeds/peashooter/virus
name = "virus peashooter"
cases = list("горохострел Гиббингтонский", "горохострела Гиббингтонского", "горохострелу Гиббингтонскому", "горохострел Гиббингтонский", "горохострелом Гиббингтонским", "горохостреле Гиббингтонском")
desc = "Нераскрывшийся плод горохострела Гиббингтонского, подозрительно напоминающий пистолет"
icon_state = "peashooter"
icon_state = "peashooter_virus"
item_state_world = "peashooter_virus_world"
potency = 25
filling_color = "#020108"
trash = /obj/item/weapon/gun/projectile/automatic/pistol/peashooter
trash = /obj/item/weapon/gun/projectile/automatic/pistol/peashooter/virus

/obj/item/weapon/reagent_containers/food/snacks/grown/peashooter/virus/atom_init()
. = ..()
Expand Down
Binary file modified icons/obj/gun.dmi
Binary file not shown.
Binary file modified icons/obj/hydroponics/growing.dmi
Binary file not shown.
Binary file modified icons/obj/hydroponics/harvest.dmi
Binary file not shown.
Binary file modified icons/obj/hydroponics/seeds.dmi
Binary file not shown.

0 comments on commit c7aa388

Please sign in to comment.