디시인사이드 갤러리

갤러리 이슈박스, 최근방문 갤러리

갤러리 본문 영역

[저장용] 돌죽스타터팩

팽도리가조은걸요갤로그로 이동합니다. 2024.04.28 08:10:14
조회 1083 추천 25 댓글 8

호주죽

https://crawl.project357.org/


전적사이트

https://dcss-stats.vercel.app


사운드패치

Step1

https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=ko

Step2

http://crawl.chaosforge.org/Skill_titles


나무위키

https://namu.wiki/w/%EB%8D%98%EC%A0%84%20%ED%81%AC%EB%A1%A4


##########RC##########


always_show_gems = true


travel_delay = 0


explore_delay = 0


more_gem_info = true


show_more = false


autofight_stop = 70


view_delay = 200


tile_show_demon_tier = True


tile_show_threat_levels = tough nasty


#$ lab_sound_on = true


default_manual_training = true


more += It is wielding.*of distortion


more += She is wielding.*of distortion


more += He is wielding.*of distortion


more += Deactivating autopickup


#$ lab_disable_mouse_move = true


always_show_zot = true


show_more = false


force_more_message += It is wielding.*of distortion


force_more_message += She is wielding.*of distortion


force_more_message += He is wielding.*of distortion


force_more_message += wielding.* distortion.* comes? into view


flash_screen_message += It is wielding.*of distortion


flash_screen_message += She is wielding.*of distortion


flash_screen_message += He is wielding.*of distortion


flash_screen_message += wielding.* distortion.* comes? into view


flash_screen_message += distortion.* comes? into view


tile_font_crt_family = Consolas


tile_font_stat_family = Consolas


tile_font_msg_family = Consolas


tile_font_lbl_family = Consolas


################

## HP/MP 알림 ##

################



{

local need_skills_opened = true

local previous_hp = 0

local previous_mp = 0

local previous_form = ''

local was_berserk_last_turn = false

function announce_damage_ko()

local current_hp, max_hp = you.hp()

local current_mp, max_mp = you.mp()




--Things that increase hp/mp temporarily really mess with this

local current_form = you.transform()

local you_are_berserk = you.berserk()

local max_hp_increased = false

local max_hp_decreased = false

if (current_form ~= previous_form) then

if (previous_form:find('dragon') or

previous_form:find('statue') or

previous_form:find('tree') or

previous_form:find('ice')) then

max_hp_decreased = true

elseif (current_form:find('dragon') or

current_form:find('statue') or

current_form:find('tree') or

current_form:find('ice')) then

max_hp_increased = true

end

end




if (was_berserk_last_turn and not you_are_berserk) then

max_hp_decreased = true

elseif (you_are_berserk and not was_berserk_last_turn) then

max_hp_increased = true

end



--Skips message on initializing game

if previous_hp > 0 then

local hp_difference = previous_hp - current_hp

local mp_difference = previous_mp - current_mp

if max_hp_increased or max_hp_decreased then

if max_hp_increased then

crawl.mpr('Now you have [' .. current_hp .. '/' .. max_hp .. '] HP')

else

crawl.mpr('Now you have [' .. current_hp .. '/' .. max_hp .. '] HP')

end

else




--체력 잃을때

if (current_hp < previous_hp) then

if current_hp <= (max_hp * 0.30) then

crawl.mpr('<lightred>You take ' .. hp_difference .. ' HP,</lightred> <red>and have [' .. current_hp .. '/' .. max_hp .. '] HP</red>')

elseif current_hp <= (max_hp * 0.50) then

crawl.mpr('<yellow>You take ' .. hp_difference .. ' HP,</yellow> <lightred>and have [' .. current_hp .. '/' .. max_hp .. '] HP</lightred>')

elseif current_hp <= (max_hp * 0.70) then

crawl.mpr('<brown>You take ' .. hp_difference .. ' HP,</brown> <green>and have [' .. current_hp .. '/' .. max_hp .. '] HP</green>')

elseif current_hp <= (max_hp * 0.90) then

crawl.mpr('<darkgrey>You take ' .. hp_difference .. ' HP,</darkgrey> <green>and have [' .. current_hp .. '/' .. max_hp .. '] HP</green>')

else

crawl.mpr('<darkgrey>You take ' .. hp_difference .. ' HP,</darkgrey> <lightgreen>and have [' .. current_hp .. '/' .. max_hp .. '] HP</lightgreen>')

end

if hp_difference > (max_hp * 0.20) then

crawl.mpr('<lightred>!!!!! HP Warning !!!!!</lightred>')

end

end




--체력 얻을때

if (current_hp > previous_hp) then

--Removes the negative sign

local health_inturn = (0 - hp_difference)

if (health_inturn > 1) and not (current_hp == max_hp) then

if current_hp <= (max_hp * 0.30) then

crawl.mpr('<darkgrey>You gain ' .. health_inturn .. ' hp,</darkgrey> <red>and have [' .. current_hp .. '/' .. max_hp .. '] hp.</red>')

elseif current_hp <= (max_hp * 0.50) then

crawl.mpr('<yellow>You gain ' .. health_inturn .. ' HP,</yellow> <lightred>and have [' .. current_hp .. '/' .. max_hp .. '] hp.</lightred>')

elseif current_hp <= (max_hp * 0.70) then

crawl.mpr('<lightgreen>You gain ' .. health_inturn .. ' HP,</lightgreen> <green>and have [' .. current_hp .. '/' .. max_hp .. '] HP</green>')

elseif current_hp <= (max_hp * 0.90) then

crawl.mpr('<white>You gain ' .. health_inturn .. ' HP</white>, <lightgreen>and have [' .. current_hp .. '/' .. max_hp ..'] HP</lightgreen>')

else

crawl.mpr('<lightgreen>You gain ' .. health_inturn .. ' HP, and have [' .. current_hp .. '/' .. max_hp .. '] HP</lightgreen>')

end

end

if (current_hp == max_hp) then

crawl.mpr('<lightmagenta> HP Full. (' .. current_hp .. ')</lightmagenta>')

end

end




--마력 얻을때

if (current_mp > previous_mp) then

--Removes the negative sign

local mp_inturn = (0 - mp_difference)

if (mp_inturn > 1) and not (current_mp == max_mp) then

if current_mp < (max_mp * 0.25) then

crawl.mpr('<darkgrey>You gain ' .. mp_inturn .. ' MP,</darkgrey> <brown>and have [' .. current_mp .. '/' .. max_mp .. '] MP</brown>')

elseif current_mp < (max_mp * 0.50) then

crawl.mpr('<lightblue>You gain ' .. mp_inturn .. ' MP,</lightblue> <blue>and have [' .. current_mp .. '/' .. max_mp .. '] MP</blue>')

else

crawl.mpr('<lightblue>You gain ' .. mp_inturn .. ' MP,</lightblue> <lightcyan>and have [' .. current_mp .. '/' .. max_mp .. '] MP</lightcyan>')

end

end

if (current_mp == max_mp) then

crawl.mpr('<lightcyan>MP Full (' .. current_mp .. ')</lightcyan>')

end

end


--마력 잃을때

if current_mp < previous_mp then

if current_mp <= (max_mp * 0.25) then

crawl.mpr('<darkgrey>You lose ' .. mp_difference .. 'MP,</darkgrey> <white>and have [' .. current_mp .. '/' ..max_mp ..'] MP</white>')

elseif current_mp <= (max_mp * 0.50) then

crawl.mpr('<blue>You lose ' .. mp_difference .. 'MP,</blue> <lightblue>and have [' .. current_mp .. '/' ..max_mp ..'] MP</lightblue>')

else

crawl.mpr('<darkgrey>You lose ' .. mp_difference .. 'MP,</darkgrey> <lightcyan>and have [' .. current_mp .. '/' ..max_mp ..'] MP</lightcyan>')

end

end

end

end

--Set previous hp/mp and form at end of turn

previous_hp = current_hp

previous_mp = current_mp

previous_form = current_form

was_berserk_last_turn = you_are_berserk

end

function ready()


-- Enable AnnounceDamage.

announce_damage_ko()

if you.turns() == 0 and need_skills_opened then

need_skills_opened = false

crawl.sendkeys("m")

end

end

}

추천 비추천

25

고정닉 8

0

댓글 영역

전체 댓글 0
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 이번주 설문은 탈모 걱정 없어 보이는 머리숱 금수저 스타는? 운영자 25/07/14 - -
AD 시원한 잠옷이 필요해~ 운영자 25/07/15 - -
499945 요즘 거미굴<<지구랏 체험판임 [2] 자연선혼갤로그로 이동합니다. 23:03 9 0
499943 ㄷㅈ)이젠 ood랑 섭던 최강몹 1층 배치로도 모자라나 보네 [3] blister갤로그로 이동합니다. 22:56 16 0
499942 밝밤)와 카타클 이제 지상(0)에 있는게 지하 (-2)까지 내려오네 [4] 불건전유니갤로그로 이동합니다. 21:51 50 0
499941 톰죽 재미는있는데 ㅇㅇ(118.38) 21:03 27 0
499940 ㄷㅈ) 미라 강령술사는 별로임? [2] 로갤러(116.122) 20:55 56 0
499939 ㅇㄹ) 소원 지팡이 상점에서도 나오는거 맞냐.. [6] ChunLi갤로그로 이동합니다. 20:26 47 0
499938 엘린 재밌나 [2] VanGogh_Nick갤로그로 이동합니다. 20:10 57 0
499937 ㄷㅈ 뉴비 질문있습니다 [4] 로갤러(218.158) 19:50 55 0
499936 몇 달에 돌아와 다크갓 안부 체크한다 [3] kirby갤로그로 이동합니다. 19:22 70 0
499935 ㅋㅌㅋㅂㅂ) 솔의눈은 씨발 언제 추가된거야 [11] 점화자갤로그로 이동합니다. 19:12 113 6
499933 ㅋㅌㅋㅂㅂ) 저거너트랑 근접으로 왜싸움 병신임? [8] 점화자갤로그로 이동합니다. 18:00 92 0
499932 스톰폼 해도 마크렙 표식 적용됨? [1] 로갤러(106.101) 17:54 52 0
499930 돌죽)7월 5일 ~ 6일 패치 [8] 와그너스갤로그로 이동합니다. 17:03 208 8
499929 ㄷㅈ) 예전 돌품명품 12강신속화냉마저 맛동산 글 주소 있는 사람? 로갤러(175.203) 16:25 56 0
499928 엘린 카지노 벽 언제 깰수있음? 바리니2(106.102) 16:09 35 0
499927 ㄷㅈ) 초반에 내 무기군 아닌 좋은 무기 나오면 끼는게 좋음? [8] 로갤러(61.34) 16:04 103 0
499925 ㅋㅌㅋㅂㅂ) 아 시발 풍차 놓고온거 생각남 [4] 점화자갤로그로 이동합니다. 15:13 71 0
499924 ㄷㅈ) 마법에 추가 마나 써서 강화하는건 어떨지 [4] 로갤러(14.39) 14:14 122 1
499923 돌죽맥스웰+대형방패 끼면 [1] ㅁㄴㅇㄹ(211.180) 11:26 96 0
499922 리치폼도 있는데 악마폼은 안되나 [3] moon씨갤로그로 이동합니다. 11:10 103 0
뉴스 ‘나는 솔로’ 26기 영숙♥영수, 교수님 커플 탄생…SNS로 ‘현커’ 인증 디시트렌드 14:00

게시물은 1만 개 단위로 검색됩니다.

갤러리 내부 검색
게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2