디시인사이드 갤러리

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

갤러리 본문 영역

[저장용] 돌죽스타터팩

팽도리가조은걸요갤로그로 이동합니다. 2024.04.28 08:10:14
조회 835 추천 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/06/03 - -
AD 호요버스 신작 <젠레스 존 제로> 7월 4일 오픈! 운영자 24/06/05 - -
공지 로그라이크 갤러리 이용 안내 [53] 운영자 16.04.08 79659 24
461386 ㄷㅈ) 우지안 선풍에 공속적용 어케됨? ㅇㅇ(118.235) 12:37 1 0
461385 ㄷㅈ) 1층 입구 앞에서 데스 탈리스만 발견 로갤러(106.71) 12:13 12 1
461384 ㅋㅌㅋ 밸런스를 어떻게 잡아야 좋을까 ㅇㅇ(114.203) 11:59 10 0
461383 공부많이하는거냐 로갤러(118.235) 11:58 13 0
461382 카타클 밝밤 모드) 마름쇠 발사기 Elbereth갤로그로 이동합니다. 05:40 66 0
461381 돌죽) 머미 연금술사 올룬 올젬 클리어 [9] 로갤러(220.126) 04:00 145 8
461380 ㄷㅈ)전저 안나와서 뒤졌어 [1] ㅇㅇ갤로그로 이동합니다. 03:32 58 0
461379 포더킹 잼슴? [3] ㅇㅇ(59.9) 03:09 68 0
461378 ㄷㅈ)문어 광전사 스타팅 애매하네 [2] blister갤로그로 이동합니다. 01:55 76 1
461377 ㅌㅈ)법사는 팅커 안배움?? [5] ㅇㅇ(120.142) 01:53 61 0
461376 ㅌㅈ) 법사가 진행이 좀 느린가 원래 [3] 로갤러(27.145) 01:17 63 0
461375 ㄷㅈ) 내일은 꼭 올룬클을 해야지 [1] ㅇㅇ(118.235) 00:15 58 1
461374 ㄷㅈ)가고일 대지법사 올룬 4젬클 + 3연승! [1] 로갤러(39.115) 00:13 64 4
461373 하루에 한 번 웨이시 증오하기 128일차 ㅇㅇ(210.222) 00:00 30 3
461372 ㄷㅈ) 뉴비 오늘 느낀점ㅇ [3] 로갤러(118.235) 06.07 88 0
461371 돌죽도 존나 조울증게임인거같음 [7] ㅇㅇ(118.235) 06.07 155 2
461370 ㅌㅈ 불붕이로 처음 동대륙 왓음 [1] 로갤러(116.121) 06.07 45 0
461369 김치죽 업데이트 이제 안하는것? [3] 로갤러(49.1) 06.07 80 0
461368 ㄷㅈ) 할버드를 든 놀 직접 플레이 해봄 [1] ㅇㅇ(118.235) 06.07 86 0
461367 근데 문득 드는 생각인데 힘장갑이랑 덱스장갑 삭제됨? [4] 로갤러(112.152) 06.07 87 0
461366 코드 열어서 확인해본 밝밤 함정 확률 [9] Elbereth갤로그로 이동합니다. 06.07 146 6
461365 엘린 베타 방송하면 봄? [1] 로갤러(183.99) 06.07 49 1
461364 ㅌㅈ 두려움의 영역에 차원문은 어디로 감? [2] 로갤러(116.121) 06.07 52 0
461363 엘린 베타키 왔네 [11] 5555갤로그로 이동합니다. 06.07 129 3
461361 ㅌㅈ) 아크메이지인데 성가 개꿀 아님? [4] twwh갤로그로 이동합니다. 06.07 80 0
461360 그래픽이 좋아진 돌죽 [9] 덤불갤로그로 이동합니다. 06.07 178 3
461359 ㄷㅈ) 에어스트라이크로 2룬따기 가능함? [4] ㅇㅇ(59.0) 06.07 65 0
461358 ㅋㅌㅋdda)팬티 안입어도되지? [1] ㅇㅇ갤로그로 이동합니다. 06.07 89 0
461357 ㄷㅈ) 44트 만에 오니 매니폴드 올룬 10젬 클 [1] 로갤러(106.71) 06.07 61 2
461356 오늘 하루종일 폰트색이 바뀌어서 rc 만지는 중이었는데 [1] 팽도리가조은걸요갤로그로 이동합니다. 06.07 43 1
461355 콰지모프 준형성 초록풍선이랑 초록대가리 뭐임? [1] ㅇㅇ(218.153) 06.07 35 0
461354 ㄷㅈ) 뭔가 컬러가 바뀐거같은데 [8] 로갤러(220.80) 06.07 100 1
461353 ㄷㅈ) 가끔 자동줍기 해제되는데 이건 왜그런거임? [5] ㅇㅇ갤로그로 이동합니다. 06.07 90 1
461352 ㄷㅈ) 유령나방 삭제좀 [3] 로갤러(221.151) 06.07 99 3
461351 돌죽 아오 지니 그냥 강제 마전사행이네 [1] Lmm갤로그로 이동합니다. 06.07 81 1
461350 오늘 제가 쓰는 RC 정리한 김에 올림당! [9] 팽도리가조은걸요갤로그로 이동합니다. 06.07 116 6
461349 아이작은 그래도 리오레는 로그라이크 맞는데? [6] ㅇㅇ(223.39) 06.07 141 2
461347 ㅋㅌㅋdda)차량탈때 키 너무 크면 안타지는데 ㅇㅇ갤로그로 이동합니다. 06.07 51 0
461346 포켓로그 아이패드 화면밑에 방향키 보이는거 없앨수없냐... [1] 포켓러(1.252) 06.07 110 0
461344 포케로그 동접이 5만 돌파라니;; [4] ㅇㅇ갤로그로 이동합니다. 06.07 167 2
461343 ㅋㅌㅋ)얘네는 진짜 아마추어 집단이네 blister갤로그로 이동합니다. 06.07 83 0
461342 마그나볼트는 구림? [1] ㅇㅇ갤로그로 이동합니다. 06.07 64 1
461341 ㄷㅈ) delver 스타트 개어렵네 [2] 로갤러(49.184) 06.07 62 1
461340 뉴비 돌죽 한글로 하고싶은데 [2] 로갤러(220.117) 06.07 78 0
461339 너희들 이런 건 그냥 체념함? [4] ㅇㅇ(211.205) 06.07 142 1
461338 ㄷㅈ)왤케 법사 초반구간 넘기기가 힘드냐 [6] ㅇㅇ(221.151) 06.07 81 0
461337 ㅋㅌㅋㄷㄷㅇ) 프로판 가스 질문 [4] 로갤러(122.46) 06.07 48 0
461336 돌죽 유령은 삭제된 종족도 나오는거였음? [1] ㅁㄴㅇㄹ(211.180) 06.07 78 1
461335 ㅋㅌㅋdda)파이크는 뭐 수납가능한 가방 없냐?? [2] ㅇㅇ갤로그로 이동합니다. 06.07 59 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2