디시인사이드 갤러리

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

갤러리 본문 영역

[저장용] 돌죽스타터팩

팽도리가조은걸요갤로그로 이동합니다. 2024.04.28 08:10:14
조회 776 추천 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/20 - -
AD 희귀 정령 획득 기회! <아스달 연대기> 출석 이벤트 운영자 24/05/23 - -
공지 로그라이크 갤러리 이용 안내 [53] 운영자 16.04.08 79218 24
460758 모바일 로그라이크는 넷핵이 젤 나은 거 같은데 조작이 [2] ㅇㅇ(218.54) 18:35 21 0
460757 발동술은어느정도가좋을까 [4] waagh!!(175.120) 18:09 30 1
460756 방금 허허벌판에서 네소스 만나서 죽음... [4] ㅇㅇ(118.235) 17:19 51 1
460755 카타클 아직 메이드 모드 남아있음? [6] daniel719갤로그로 이동합니다. 16:52 33 0
460754 이레데렘눌 아주 큰 문제점이 있네 [2] 로갤러(112.152) 16:33 46 1
460753 ㅌㅈ)드렘 해금하려는데 문양이 어디있음 [4] 로갤러(211.234) 16:22 24 0
460752 ㄷㅈ) 불법사로 세레보브 어케잡아야해? [4] 로갤러(220.80) 15:31 98 0
460751 ㄷㅍ)시부랄 아트팩트 도둑 맞았다... [7] 로갤러(71.60) 15:04 56 0
460750 ㅌㅈ)정신파괴자 염동슬롯에 템 어케낌? [2] 로갤러(45.64) 14:30 50 0
460749 포켓로그 바닥까는거 어쩌냐 [1] 로갤러(112.165) 14:25 35 0
460748 ㄷㅍ]왜 주민들이 주기적으로 웨어 스컹크로 변하는건데? [4] 로갤러(175.127) 13:08 67 0
460747 ㄷㅈ) 늅이 선택장애 오는데 목걸이 선택좀요 [3] 로갤러(106.71) 12:56 87 0
460746 카타클은 왜 딱 극초반만 재밋는걸까 [9] ㅇㅇ(117.123) 12:54 96 0
460745 어제 침대에 누워서 곰곰히 생각해본건데요.. [9] 팽도리가조은걸요갤로그로 이동합니다. 12:13 150 0
460744 ㄷㅈ) 다운죽 해상도 수정 어케함?? [6] 로갤러(218.52) 11:27 69 0
460743 ㄷㅈ)와! 4층 메뉴얼! [1] blister갤로그로 이동합니다. 11:05 94 1
460742 ㄷㅈ) 심연 도대체 어캐 나오는것임 [3] RZN갤로그로 이동합니다. 10:46 77 0
460741 ㄷㅈ)오카와루 듀얼 롤백했네 [3] 로갤러(223.39) 10:32 119 1
460740 포켓로그 이 템 뭐냐 아는 게이 있음? [2] 로갤러(124.54) 10:11 114 0
460738 ㅌㅈ)아니 그때 그 캐릭은 어케 지하실 턴거지? ㅋㅋ [8] ㅇㅇ(112.170) 09:26 82 0
460737 포케로그 첫판 뉴비 전망 좀 봐줘 [4] 로갤러(124.54) 08:47 103 0
460736 톰죽 번역 어떰? [5] 로갤러(1.228) 08:37 72 0
460735 와 근데 다이스 무섭게 터질땐 진짜 육성으로 어! 소리나옴 [3] 로갤러(112.152) 08:37 100 1
460734 urw) 외국상인 한번 잡아보니까 두번은 쉽네 [1] 로갤러(175.198) 08:33 44 0
460733 드포 cold 지형도 한번 해보고 싶어서 골랐는데 [3] ㅇㅇ갤로그로 이동합니다. 05:56 55 0
460732 ㅋㅌㅋ ㅂㅂ 섬감옥 탈출 은근 어렵네 [2] ㅇㅇ(117.123) 05:46 56 0
460731 ㅋㅌㅋ)예전에 책이 도저히 안나와서 쇼핑물 간적 있는데 ssh0818갤로그로 이동합니다. 05:41 42 1
460730 아 근데 거미줄로 로프만든거 인장력 확인하는 영상 봤는데 ssh0818갤로그로 이동합니다. 04:41 47 0
460729 난 urw 사서 해볼려했는데 시야 시스템 불편해서 못하겠더라 [2] ssh0818갤로그로 이동합니다. 04:34 53 1
460728 하루에 한 번 웨이시 증오하기 114일차 [1] ㅇㅇ(210.222) 03:02 51 6
460727 urw) 외국상인 사냥 성공했다 [1] 로갤러(175.198) 02:48 89 1
460726 주피터헬)사람은 피곤할때 자야한다... [2] 와그너스갤로그로 이동합니다. 02:19 54 0
460725 ㄷㅈ)원래 계단에서 매수 쓰면 아래 브랜치에 적용됨? [3] blister갤로그로 이동합니다. 01:52 93 1
460724 ㄷㅈ) 손가락 늘려주는 목걸이도 있네 [2] ㅇㅇ갤로그로 이동합니다. 01:17 91 0
460723 대마법사 무너 (OpCj) 올룬클! [2] 팽도리가조은걸요갤로그로 이동합니다. 01:07 81 1
460722 ㅌㅈ) 이게 끔살이라는 거구나 [4] 로갤러(116.47) 00:54 84 1
460721 ㅋㅌㅋㅂㅂ)권총렙 올리는건 9미리 실탄 쏴대는게 최고임? [2] ㅇㅇ(223.62) 00:17 52 0
460720 ㄷㅈ)이건 뭐 법사는 대놓고 뒤져라 지형이네 [2] blister갤로그로 이동합니다. 00:14 107 6
460719 트로그 ****** 광폭화tt에 광역 혼란&마비 넣어주면 안되나 [1] 롬롬갤로그로 이동합니다. 05.24 48 1
460718 로틀딱을 위한 스팀기능 [2] 로갤러(1.237) 05.24 90 3
460717 ㅌㅈ) 톰죽 뉴빈데 진짜 꿀잼겜이네 [3] 로갤러(116.47) 05.24 89 1
460716 트로그 진짜 걍 처형부대 소환하는거 멋은있겠다 waagh!!(175.120) 05.24 54 0
460715 ㄷㅈ) 문어 개재밌는데 개어렵다 [3] ㅇㅇ(59.0) 05.24 72 0
460714 pc로 할수있는 로그류 추천좀요 [8] 로갤러(1.253) 05.24 98 0
460713 트로그 상향 이그나이트 매직 ㄷㄷㄷ [2] LF.갤로그로 이동합니다. 05.24 96 0
460712 ㄷㅈ) 개미맨도 큰 바위 던질 수 있게 해줘야함 [7] ㅇㅇ(114.205) 05.24 87 3
460711 ㅋㅌㅋ)거대 곤충도 생명 [1] 로갤러(221.157) 05.24 101 3
460710 엘린) 베타는 25~26일 부터 시작 베타 코드 배포는 6월초 ㅇㅇ(125.136) 05.24 43 1
460709 법사뉴비 질문좀 [3] 로갤러(119.205) 05.24 40 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2