디시인사이드 갤러리

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

갤러리 본문 영역

[저장용] 돌죽스타터팩

팽도리가조은걸요갤로그로 이동합니다. 2024.04.28 08:10:14
조회 785 추천 24 댓글 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

}

추천 비추천

24

고정닉 7

0

댓글 영역

전체 댓글 0
등록순정렬 기준선택
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 시세차익 부러워 부동산 보는 눈 배우고 싶은 스타는? 운영자 24/05/27 - -
AD 희귀 정령 획득 기회! <아스달 연대기> 출석 이벤트 운영자 24/05/23 - -
공지 로그라이크 갤러리 이용 안내 [53] 운영자 16.04.08 79287 24
460889 urw) 미친놈 만났다 로갤러(175.198) 06:12 1 0
460888 돌죽 최신판 공략 연재 있음? ㅇㅇ(222.97) 06:00 1 0
460887 ㄷㅈ)전사 구려진건 마법이 계속 추가되어서도 있지않나? [2] ssh0818갤로그로 이동합니다. 04:50 29 0
460886 드포) -1살은 뭐임??? [1] ㅇㅇ갤로그로 이동합니다. 02:51 34 1
460885 4층 이건좀; 로갤러(112.153) 02:42 25 0
460884 ㅋㅌㅋdda) 프로틴은 이제 그냥 감성템임? [1] ㅇㅇ갤로그로 이동합니다. 02:41 30 0
460883 ㅌㅈ) 뉴비 호위 살리겠다고 안피하고 맞다이뜨다가ㅋㅋ [1] ㅇㅇ(121.138) 00:47 29 0
460882 다운죽 웹으로 구동 어케시키지 [1] 로갤러(222.109) 00:25 31 1
460881 ㄷㅈ)요즘 총기니 대포니 헬파이어 모루타루니 추가되는 거 보니 ㅇㅇ갤로그로 이동합니다. 00:12 40 1
460880 하루에 한 번 웨이시 증오하기 117일차 ㅇㅇ(210.222) 00:12 15 1
460879 챗gpt야 돌죽 좋아하니? [3] ㅇㅇ(123.212) 05.27 60 3
460878 대수층 만만해져서 한번 heavy 대수층 가봤는데 [3] ㅇㅇ갤로그로 이동합니다. 05.27 35 1
460877 ㄷㅈ) 간만에 클리어하니까 기분 상쾌하네ㅋㅋ [1] ㅇㅇ(118.235) 05.27 41 1
460876 ㄷㅈ) 아쉔자리 못해먹겠네 [4] 로갤러(220.80) 05.27 53 1
460875 드포 메꾸기기능있어야댐 [4] 한남대가리뚝스딱스갤로그로 이동합니다. 05.27 51 0
460874 드포) 애니멀맨들도 손님으로 오냐?? [2] ㅇㅇ(223.39) 05.27 33 0
460873 돌죽 오크마인 벌쳐마인으로 리워크 해줄때 됐다 [2] ㅇㅇ(119.192) 05.27 45 0
460872 ㅋㅌㅋdda)찻집에 이런게? [2] 로갤러(221.160) 05.27 53 0
460870 ㄷㅈ) 풀실레이드 왤케 쓰기 어렵냐 ㅇㅇ(118.235) 05.27 37 0
460869 ㄷㅍ) 대수층 잘못 건드렸다 [3] 로갤러(14.49) 05.27 40 0
460867 중갑전사님을석방하라.... [2] seeu갤로그로 이동합니다. 05.27 62 1
460866 ㅌㅈ) 뉴비 방송키면 훈수해줄사람 [2] 로갤러(59.25) 05.27 44 0
460865 천이백원만구해주실분ㅠㅠ [4] ㅇㅇ(123.248) 05.27 56 0
460864 ㅌㅈ)하다하다 팅커 배우는 곳에서 죽네 [2] 로갤러(223.62) 05.27 36 0
460863 녹픽던 예전 무기 보는데 ㅈㄴ 웃기네 ㅋㅋ [1] LF.갤로그로 이동합니다. 05.27 77 1
460862 ㄷㅈ) 엘굴 안힐터가 쓰는 대포소환 은근 위험한듯 ㅇㅇ(114.205) 05.27 36 0
460861 ㄷㅈ)개인적으로 중갑전사가 법사보다 어려운거 같음 [5] ㅇㅇ(121.149) 05.27 66 0
460860 폰죽 입문 [3] Carbon갤로그로 이동합니다. 05.27 53 0
460859 나 없는동안 누가 번역해준건진 모르겠는데 Seawhite(118.235) 05.27 71 2
460858 나만의 돌죽 번역법.. [3] 로갤러(222.97) 05.27 104 10
460857 녹픽던 2.4 버전 후기 [1] LF.갤로그로 이동합니다. 05.27 57 2
460856 ㄷㅈ) 스프리건 페다스 올룬 올젬 클리어 (+약간 팁) [6] 로갤러(49.183) 05.27 106 8
460855 새로나온 얼음대포 이거 성능 돌았구나 [5] Elbereth갤로그로 이동합니다. 05.27 98 2
460854 ㄷㅍ) 대수층 이용해서 미스트 만드는 법좀 [6] 로갤러(14.49) 05.27 58 0
460853 드포) 인간들 왜 벗고다니는 거임 [1] ㅇㅇ갤로그로 이동합니다. 05.27 73 0
460852 ㄷㅈ) 중갑전사가 구려진건가 게임이 어려워진건가 [14] ㅇㅇ(118.235) 05.27 129 1
460851 ㄷㅈ)근접캐릭이면 헤플 법사랑 헥서중에 뭐가 좋음? [5] ㅇㅇ갤로그로 이동합니다. 05.27 74 0
460850 드포 워크오더 도배해놔도 렉 안걸리지? [4] ㅇㅇ갤로그로 이동합니다. 05.27 40 0
460849 ㄷㅈ)머포크 장검맨 도전중인데 도움좀 [4] ㅇㅇ(118.235) 05.27 46 0
460848 ㄷㅈ) 독 스크롤 활용 어떻게 함? [11] ㅇㅇ(114.205) 05.27 90 0
460847 ㄷㅈ) 한손 키보드 하나 살까? 로갤러(118.235) 05.27 30 0
460846 므놀레그가좀무서워진듯 waagh(39.7) 05.27 40 0
460845 urw) 활을 너무 많이 쓰면 줄도 끊어지네 [1] 로갤러(175.198) 05.27 43 0
460844 ㄷㅈ)안티매직 확률 데미지비례 맞지? [2] ㅇㅇ갤로그로 이동합니다. 05.27 61 0
460843 드포 아동노동 실태 두렵다... [1] ㅇㅇ갤로그로 이동합니다. 05.27 101 0
460842 ㅋㅌㅋ)슬슬 끝낼 때가 다가온다. 로갤러(221.157) 05.27 75 1
460841 urw)핀란드 스피츠 검색해보니 그냥 주황색 진돗개 인데 [3] ssh0818갤로그로 이동합니다. 05.27 65 0
460840 ㄷㅈ) 헌터 하고싶으면 코볼트를 해라... [3] 로갤러(118.235) 05.27 88 0
460839 ㅌㅈ) 님들 아무도 몰랐던 유아론자 숨겨진 비밀 하나 밝혀냄! [2] 톰갤러(61.43) 05.27 105 3
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2