diff options
34 files changed, 162 insertions, 191 deletions
diff --git a/lib/lsg_irc/alcolog_plugin.ex b/lib/lsg_irc/alcolog_plugin.ex index 0812874..35aa206 100644 --- a/lib/lsg_irc/alcolog_plugin.ex +++ b/lib/lsg_irc/alcolog_plugin.ex @@ -24,128 +24,16 @@ defmodule LSG.IRC.AlcoologPlugin do Annotation: champ libre! - """ + --- - @user_states %{ - :sober => %{ - false => ["n'a pas encore bu", "est actuellement sobre"], - true => ["commence a peine... santé"], - }, - :low => %{ - false => ["est quasiment sobre", "est entrain de redescendre et devrait reboire"], - true => ["commence a monter"], - }, - :legal => %{ - true => ["peut encore conduire, mais plus pour longtemps"], - false => ["peut reconduire", "est en route vers la sobriété"], - }, - :legalhigh => %{ - true => ["est bientôt bourraide", "peut plus conduire"], - false => ["commence a débourrai"], - }, - :high => %{ - true => ["est bourraide!", "est raide"], - false => ["est bourraide mais redescend!"], - }, - :toohigh => ["est totalement bourraide", "est raiiideeeeee"], - :sick => ["est BEAUCOUP trop bourraide"], - } - - - @santai [ - "SANTÉ", - "SANTAIIII", - "SANTAI", - "A LA TIENNE", - "CUL SEC CUL SEC", - "TCHIN TCHIN", - "LONGUE VIE", - "ZUM WOHL", "PROST", - "Կէնաձդ", - "Наздраве", - "SANTAIIIIIIIIII", - "AGLOU", - "AUNG MYIN PAR SAY", - "SALUD", - "SANTAIIIIII", - "ΥΓΕΙΑ", - "Å’KåLÀ MA’LUNA", - "EGÉSZSÉGEDRE", - "FENÉKIG", - "乾杯", - "KANPAI", - "TULGATSGAAYA", - "AGLOU AGLOU", - "БУДЕМ ЗДОРОВЫ", - "НА ЗДОРОВЬЕ", - "SANTAIIIIIIIIIIIII", - "MỘT HAI BA, YO", - "SKÅL", - "NA ZDRAVJE", - "AGLOUUUU AGLOUUU AGLOUUUUUUU", - "فى صحتك", - "GESONDHEID", - "ZHU NIN JIANKANG", - "祝您健康", - "SANTÉ", - "CHEERS", - "Nuş olsun", - "Živjeli", - "Biba", - "Pura vida", - "Terviseks", - "Mabuhay", - "Kippis", - "Sláinte", - "건배", - "į sveikatą", - "Эрүүл мэндийн төлөө", - "Saúde", - "Sanatate", - "živeli", - "Proscht", - "Chai yo", - "Choc tee", - "Şerefe", - "будьмо", - "Budmo", - "Iechyd da", - "Sei gesund", - "за наш", # Russe original. --kienma - ] + ## `!txt`s - @bad_drinks %{ - :negative => [ - "on peut pas boire en négatif...", - "tu crois que ça marche comme ça ? :s", - "e{{'u' | rrepeat}}h" - ], - :null => [ - "tu me prends pas un peu pour un con là ?", - "zéro ? agis comme un homme et bois une pinte de whisky", - "gros naze", - "FATAL ERROR: java.lang.ArithmeticException (cannot divide by zero)", - "?!?!", - "votre médecin vous conseille de boire une bouteille de rouge cul sec plutôt" - ], - :huge => [ - "tu veux pas aller à l'hopital plutôt ?", - "tu me prends pas un peu pour un con là ?", - "ok; j'ai appelé le SAMU, ils arrivent", - "j'accepterais le !santai quand tu m'auras envoyé la preuve vidéo" - ], - :eau => [ - "Le barman, c'est moi ! C'est moi qui suis barman ! Vous êtes la police républicaine ou une bande ? Vous savez qui je suis ? Enfoncez la bouteille, camarades !", - "L'alcool est notre pire ennemi, fuir est lâche !", - "attention... l'alcool permet de rendre l'eau potable", - "{{'QUOI ?' | bold}}", - "QUO{{'I' | rrepeat}}?", - "{{\"COMMENT ÇA DE L'EAU ?\" | red}}", - "resaisis toi et va ouvrir une bonne teille de rouge...", - "bwais tu veux pas un \"petit\" rhum plutôt ?" - ] + * status utilisateur: `alcoolog.user_(sober|legal|legalhigh|high|toohigh|sick)(|_rising)` + * mauvaises boissons: `alcoolog.drink_(negative|zero|negative)` + * santo: `alcoolog.santo` + * santai: `alcoolog.santai` - } + """ def irc_doc, do: @moduledoc @@ -189,7 +77,7 @@ defmodule LSG.IRC.AlcoologPlugin do @eau ["santo", "santeau"] def handle_info({:irc, :trigger, santeau, m = %IRC.Message{trigger: %IRC.Trigger{args: _, type: :bang}}}, state) when santeau in @eau do - m.replyfun.(Tmpl.render(Enum.random(Enum.shuffle(Map.get(@bad_drinks, :eau))), m)) + LSG.IRC.TxtPlugin.reply_random(m, "alcoolog.santo") {:noreply, state} end @@ -417,9 +305,9 @@ defmodule LSG.IRC.AlcoologPlugin do cond do cl == nil -> m.replyfun.(cl_extra) deg == nil -> m.replyfun.(comment) - cl >= 500 || deg >= 100 -> m.replyfun.(Tmpl.render(Enum.random(Enum.shuffle(Map.get(@bad_drinks, :huge))), m)) - cl == 0 || deg == 0 -> m.replyfun.(Tmpl.render(Enum.random(Enum.shuffle(Map.get(@bad_drinks, :null))), m)) - cl < 0 || deg < 0 -> m.replyfun.(Tmpl.render(Enum.random(Enum.shuffle(Map.get(@bad_drinks, :negative))), m)) + cl >= 500 || deg >= 100 -> LSG.IRC.TxtPlugin.reply_random(m, "alcoolog.drink_toohuge") + cl == 0 || deg == 0 -> LSG.IRC.TxtPlugin.reply_random(m, "alcoolog.drink_zero") + cl < 0 || deg < 0 -> LSG.IRC.TxtPlugin.reply_random(m, "alcoolog.drink_negative") true -> points = Alcool.units(cl, deg) now = m.at || DateTime.utc_now() @@ -433,7 +321,8 @@ defmodule LSG.IRC.AlcoologPlugin do meta = Map.put(meta, "sex", user_meta.sex) :ok = :dets.insert(state.dets, {m.account.id, now, points, if(old_stats, do: old_stats.active, else: 0), cl, deg, name, comment, meta}) true = :ets.insert(state.ets, {{m.account.id, now}, points, if(old_stats, do: old_stats.active, else: 0),cl, deg, name, comment, meta}) - sante = @santai |> Enum.map(fn(s) -> String.trim(String.upcase(s)) end) |> Enum.shuffle() |> Enum.random() + #sante = @santai |> Enum.map(fn(s) -> String.trim(String.upcase(s)) end) |> Enum.shuffle() |> Enum.random() + sante = LSG.IRC.TxtPlugin.random("alcoolog.santai") k = if user_meta.sex, do: 0.7, else: 0.6 weight = user_meta.weight peak = Float.round((10*points||0.0)/(k*weight), 4) @@ -519,7 +408,7 @@ defmodule LSG.IRC.AlcoologPlugin do end miss = cond do - points <= 0.6 -> :blague + points <= 0.6 -> :small stats.active30m >= 2.9 && stats.active30m < 3 -> :miss3 stats.active30m >= 1.9 && stats.active30m < 2 -> :miss2 stats.active30m >= 0.9 && stats.active30m < 1 -> :miss1 @@ -534,56 +423,16 @@ defmodule LSG.IRC.AlcoologPlugin do true -> nil end - miss = case miss do - :blague -> [ - "c'est une blague ?!" - ] - :miss025 -> [ - "si peu ?" - ] - :miss05 -> [ - "tu pourras encore conduire, faut boire plus!" - ] - :miss1 -> [ - "alerte, tu vas rater le gramme !" - ] - :miss2 -> [ - "petit joueur ? rater deux grammes de si peu c'est pas sérieux" - ] - :miss3 -> [ - "même pas 3 grammes ? allez ! dernière ligne droite!" - ] - :small025 -> [ - "tu vas quand même pas en rester là si ?" - ] - :small05 -> [ - "c'est un bon début, faut continuer sur cette lancée !" - ] - :small1 -> [ - "un peu plus de motivation sur le gramme et c'est parfait !" - ] - :small15 -> [ - "essaie de garder ton gramme et demi plus longtemps !" - ] - :small2 -> [ - "même pas une demi heure de deux grammes ? allez, fait un effort !", - "installe toi mieux aux deux grammes !" - ] - :small3 -> [ - "ALLAIIIII CONTINUE FAUT MAINTENIR !", - "tu vas quand même pas en rester là ?" - ] - _ -> nil - end if miss do - msg = Enum.random(Enum.shuffle(miss)) - for {net, chan} <- IRC.Membership.notify_channels(m.account) do - user = IRC.UserTrack.find_by_account(net, m.account) - nick = if(user, do: user.nick, else: m.account.name) - IRC.Connection.broadcast_message(net, chan, "#{nick}: #{msg}") + miss = LSG.IRC.TxtPlugin.random("alcoolog.#{to_string(miss)}") + if miss do + for {net, chan} <- IRC.Membership.notify_channels(m.account) do + user = IRC.UserTrack.find_by_account(net, m.account) + nick = if(user, do: user.nick, else: m.account.name) + IRC.Connection.broadcast_message(net, chan, "#{nick}: #{msg}") + end end end - end end @@ -654,14 +503,13 @@ defmodule LSG.IRC.AlcoologPlugin do active <= 2.5 -> :high active < 3 -> :toohigh true -> :sick - end - states = Map.get(@user_states, user_state) - list = if is_list(states) do - states - else - Map.get(states, rising) - end - meta = get_user_meta(state, nick) + end + + rising_file_key = if rising, do: "_rising", else: "" + txt_file = "alcoolog." <> "user_" <> to_string(user_state) <> rising_file_key + user_status = LSG.IRC.TxtPlugin.random(txt_file) + + meta = get_user_meta(state, nick) minutes_til_sober = h1/((meta.loss_factor/100)/60) minutes_til_sober = cond do active < 0 -> 0 @@ -689,9 +537,6 @@ defmodule LSG.IRC.AlcoologPlugin do since_duration = if since, do: Timex.Duration.from_minutes(since_diff) since_s = if since, do: Timex.Format.Duration.Formatter.lformat(since_duration, "fr", :humanized) - user_status = list - |> Enum.shuffle() - |> Enum.random() {total_volumes, total_gl} = user_stats(state, nick) @@ -959,14 +804,14 @@ defmodule LSG.IRC.AlcoologPlugin do old_meta = get_user_meta(state, m.account.id) meta = Map.merge(@default_user_meta, %{sex: h, weight: weight, loss_factor: factor}) put_user_meta(state, m.account.id, meta) - fat = ["t'as grossi...", "bientôt la tonne ?", "t'as encore abusé du fromage ?"] - thin = ["en route vers l'anorexie ?", "t'as vomi...", "t'as grossi...", "faut manger plus de fromage!"] - msg = cond do - old_meta.weight < meta.weight -> Enum.random(Enum.shuffle(fat)) - old_meta.weight == meta.weight -> "ok" - true -> Enum.random(Enum.shuffle(thin)) + cond do + old_meta.weight < meta.weight -> + LSG.IRC.TxtPlugin.reply_random(m, "alcoolog.fatter") + old_meta.weight == meta.weight -> + m.replyfun.("aucun changement!") + true -> + LSG.IRC.TxtPlugin.reply_random(m, "alcoolog.thinner") end - m.replyfun.(msg) end {:noreply, state} @@ -978,7 +823,7 @@ defmodule LSG.IRC.AlcoologPlugin do :dets.delete_object(state.dets, obj) :ets.delete(state.ets, {m.account.id, date}) m.replyfun.("supprimé: #{m.sender.nick} #{points} #{type} #{descr}") - m.replyfun.("faudrait quand même penser à boire") + LSG.IRC.TxtPlugin.reply_random(m, "alcoolog.delete") notify = IRC.Membership.notify_channels(m.account) -- [{m.network,m.channel}] for {net, chan} <- notify do user = IRC.UserTrack.find_by_account(net, m.account) diff --git a/priv/default_irc.txt/alcoolog.delete.txt b/priv/default_irc.txt/alcoolog.delete.txt new file mode 100644 index 0000000..8dac2f7 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.delete.txt @@ -0,0 +1 @@ +faudrait quand même penser à boire diff --git a/priv/default_irc.txt/alcoolog.drink_negative.txt b/priv/default_irc.txt/alcoolog.drink_negative.txt new file mode 100644 index 0000000..5a09767 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.drink_negative.txt @@ -0,0 +1,3 @@ +on peut pas boire en négatif... +tu crois que ça marche comme ça ? :s +e{{'u' | rrepeat}}h diff --git a/priv/default_irc.txt/alcoolog.drink_toohuge.txt b/priv/default_irc.txt/alcoolog.drink_toohuge.txt new file mode 100644 index 0000000..bf454ea --- /dev/null +++ b/priv/default_irc.txt/alcoolog.drink_toohuge.txt @@ -0,0 +1,4 @@ +tu veux pas aller à l'hopital plutôt ? +tu me prends pas un peu pour un con là ? +ok: j'ai appelé le SAMU et ils arrivent +pics or didn't happen diff --git a/priv/default_irc.txt/alcoolog.drink_zero.txt b/priv/default_irc.txt/alcoolog.drink_zero.txt new file mode 100644 index 0000000..fedaae5 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.drink_zero.txt @@ -0,0 +1,6 @@ +tu me prends pas un peu pour un con, là ? +zéro ? Agis comme un homme et bois une pinte de whisky +gros naze +FATAL ERROR: java.lang.ArithmeticException (cannot divide by zero) +?!?! +votre médécin référent vous conseille de boire une bouteille de rouge cul sec plutôt diff --git a/priv/default_irc.txt/alcoolog.fatter.txt b/priv/default_irc.txt/alcoolog.fatter.txt new file mode 100644 index 0000000..7cf1071 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.fatter.txt @@ -0,0 +1,3 @@ +t'as grossi... +bientôt la tonne ? +t'as encore abusé du fromage ? diff --git a/priv/default_irc.txt/alcoolog.miss025.txt b/priv/default_irc.txt/alcoolog.miss025.txt new file mode 100644 index 0000000..8f7911a --- /dev/null +++ b/priv/default_irc.txt/alcoolog.miss025.txt @@ -0,0 +1 @@ +si peu ?! diff --git a/priv/default_irc.txt/alcoolog.miss05.txt b/priv/default_irc.txt/alcoolog.miss05.txt new file mode 100644 index 0000000..0ea888b --- /dev/null +++ b/priv/default_irc.txt/alcoolog.miss05.txt @@ -0,0 +1 @@ +tu pourras encore conduire, faut boire plus! diff --git a/priv/default_irc.txt/alcoolog.miss1.txt b/priv/default_irc.txt/alcoolog.miss1.txt new file mode 100644 index 0000000..032e6e5 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.miss1.txt @@ -0,0 +1 @@ +alerte! tu vas rater le gramme! diff --git a/priv/default_irc.txt/alcoolog.miss2.txt b/priv/default_irc.txt/alcoolog.miss2.txt new file mode 100644 index 0000000..6aa6a0f --- /dev/null +++ b/priv/default_irc.txt/alcoolog.miss2.txt @@ -0,0 +1 @@ +petit joueur?! Rater deux grammes de si peu, c'est pas sérieux diff --git a/priv/default_irc.txt/alcoolog.miss3.txt b/priv/default_irc.txt/alcoolog.miss3.txt new file mode 100644 index 0000000..411c92c --- /dev/null +++ b/priv/default_irc.txt/alcoolog.miss3.txt @@ -0,0 +1 @@ +wtf même pas 3 grammes ? allez! dernière ligne droite! diff --git a/priv/default_irc.txt/alcoolog.santai.txt b/priv/default_irc.txt/alcoolog.santai.txt new file mode 100644 index 0000000..2abdb05 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.santai.txt @@ -0,0 +1,60 @@ +SANTÉ +SANTAIIII +SANTAI +A LA TIENNE +CUL SEC CUL SEC +TCHIN TCHIN +LONGUE VIE +ZUM WOHL +PROST +ԿԷՆԱՁԴ +НАЗДРАВЕ +SANTAIIIIIIIIII +AGLOU +AUNG MYIN PAR SAY +SALUD +SANTAIIIIII +ΥΓΕΙΑ +Å’KÅLÀ MA’LUNA +EGÉSZSÉGEDRE +FENÉKIG +乾杯 +KANPAI +TULGATSGAAYA +AGLOU AGLOU +БУДЕМ ЗДОРОВЫ +НА ЗДОРОВЬЕ +SANTAIIIIIIIIIIIII +MỘT HAI BA, YO +SKÅL +NA ZDRAVJE +AGLOUUUU AGLOUUU AGLOUUUUUUU +فى صحتك +GESONDHEID +ZHU NIN JIANKANG +祝您健康 +SANTÉ +CHEERS +NUŞ OLSUN +ŽIVJELI +BIBA +PURA VIDA +TERVISEKS +MABUHAY +KIPPIS +SLÁINTE +건배 +Į SVEIKATĄ +ЭРҮҮЛ МЭНДИЙН ТӨЛӨӨ +SAÚDE +SANATATE +ŽIVELI +PROSCHT +CHAI YO +CHOC TEE +ŞEREFE +БУДЬМО +BUDMO +IECHYD DA +SEI GESUND +ЗА НАШ
\ No newline at end of file diff --git a/priv/default_irc.txt/alcoolog.santo.txt b/priv/default_irc.txt/alcoolog.santo.txt new file mode 100644 index 0000000..75dc467 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.santo.txt @@ -0,0 +1,8 @@ +L'alcool est notre pire ennemi, fuir est lâche ! +Attention... l'alcool permet de rendre l'eau potable. +{{'QUOI ?' | bold}} +QUO{{'I' | rrepeat}}? +{{"COMMENT ÇA DE L'EAU ?" | red}} +resaisis toi et va ouvrir une bonne teille de rouge... +bwais tu veux pas un "petit" rhum plutôt ?" + diff --git a/priv/default_irc.txt/alcoolog.small025.txt b/priv/default_irc.txt/alcoolog.small025.txt new file mode 100644 index 0000000..c4935bb --- /dev/null +++ b/priv/default_irc.txt/alcoolog.small025.txt @@ -0,0 +1 @@ +tu vas quand même pas en rester là si ? diff --git a/priv/default_irc.txt/alcoolog.small05.txt b/priv/default_irc.txt/alcoolog.small05.txt new file mode 100644 index 0000000..74ac60a --- /dev/null +++ b/priv/default_irc.txt/alcoolog.small05.txt @@ -0,0 +1,2 @@ +c'est un bon début, faut continuer sur cette lancée ! +aaah on commence à être bien là ! bois vite et prends la soeur ! diff --git a/priv/default_irc.txt/alcoolog.small1.txt b/priv/default_irc.txt/alcoolog.small1.txt new file mode 100644 index 0000000..6f1d1e5 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.small1.txt @@ -0,0 +1 @@ +un peu plus de motivation sur le gramme et c'est parfait ! diff --git a/priv/default_irc.txt/alcoolog.small2.txt b/priv/default_irc.txt/alcoolog.small2.txt new file mode 100644 index 0000000..daeeedc --- /dev/null +++ b/priv/default_irc.txt/alcoolog.small2.txt @@ -0,0 +1,2 @@ +même pas une demi heure de deux grammes ? Allez, fait un effort ! +Installe toi mieux aux deux grammes !! diff --git a/priv/default_irc.txt/alcoolog.small3.txt b/priv/default_irc.txt/alcoolog.small3.txt new file mode 100644 index 0000000..052f302 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.small3.txt @@ -0,0 +1,2 @@ +ALLLLAIIIIIIII CONTINUE COMME CA FAUT MAINTENIR LES TROIS GRAMMES +tu va quand même pas en rester sur un 3 grammes ! diff --git a/priv/default_irc.txt/alcoolog.small_drink.txt b/priv/default_irc.txt/alcoolog.small_drink.txt new file mode 100644 index 0000000..d6d631b --- /dev/null +++ b/priv/default_irc.txt/alcoolog.small_drink.txt @@ -0,0 +1 @@ +c'est une blague ?! diff --git a/priv/default_irc.txt/alcoolog.thinner.txt b/priv/default_irc.txt/alcoolog.thinner.txt new file mode 100644 index 0000000..9e7ed50 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.thinner.txt @@ -0,0 +1,4 @@ +en route vers l'anorexie ? +t'as vomi .... +t'as grossi ... +faut manger plus de fromage! diff --git a/priv/default_irc.txt/alcoolog.user_high.txt b/priv/default_irc.txt/alcoolog.user_high.txt new file mode 100644 index 0000000..093b4cc --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_high.txt @@ -0,0 +1 @@ +est bourraide, mais redescends! diff --git a/priv/default_irc.txt/alcoolog.user_high_rising.txt b/priv/default_irc.txt/alcoolog.user_high_rising.txt new file mode 100644 index 0000000..2c2a7fb --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_high_rising.txt @@ -0,0 +1,3 @@ +est bourraide! +est raide! +est paitai! diff --git a/priv/default_irc.txt/alcoolog.user_legal.txt b/priv/default_irc.txt/alcoolog.user_legal.txt new file mode 100644 index 0000000..e27da3c --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_legal.txt @@ -0,0 +1,2 @@ +peut reconduire +est en route vers la sobriété diff --git a/priv/default_irc.txt/alcoolog.user_legal_rising.txt b/priv/default_irc.txt/alcoolog.user_legal_rising.txt new file mode 100644 index 0000000..07b0d15 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_legal_rising.txt @@ -0,0 +1 @@ +peut encore conduire, mais plus pour longtemps diff --git a/priv/default_irc.txt/alcoolog.user_legalhigh.txt b/priv/default_irc.txt/alcoolog.user_legalhigh.txt new file mode 100644 index 0000000..989c0f6 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_legalhigh.txt @@ -0,0 +1 @@ +commence à débourrai diff --git a/priv/default_irc.txt/alcoolog.user_legalhigh_rising.txt b/priv/default_irc.txt/alcoolog.user_legalhigh_rising.txt new file mode 100644 index 0000000..d3daaa7 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_legalhigh_rising.txt @@ -0,0 +1,2 @@ +est bientôt bourraide +ne peut plus conduire diff --git a/priv/default_irc.txt/alcoolog.user_low.txt b/priv/default_irc.txt/alcoolog.user_low.txt new file mode 100644 index 0000000..8b255d9 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_low.txt @@ -0,0 +1,2 @@ +est quasiment sobre +est entrain de redescendre et devrait reboire diff --git a/priv/default_irc.txt/alcoolog.user_low_rising.txt b/priv/default_irc.txt/alcoolog.user_low_rising.txt new file mode 100644 index 0000000..8d00841 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_low_rising.txt @@ -0,0 +1 @@ +commence à monter diff --git a/priv/default_irc.txt/alcoolog.user_sick.txt b/priv/default_irc.txt/alcoolog.user_sick.txt new file mode 100644 index 0000000..807f6d9 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_sick.txt @@ -0,0 +1,2 @@ +est BEAUCOUP trop bourraide + diff --git a/priv/default_irc.txt/alcoolog.user_sick_rising.txt b/priv/default_irc.txt/alcoolog.user_sick_rising.txt new file mode 100644 index 0000000..6be9195 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_sick_rising.txt @@ -0,0 +1 @@ +est TOTALEMENT paitai diff --git a/priv/default_irc.txt/alcoolog.user_sober.txt b/priv/default_irc.txt/alcoolog.user_sober.txt new file mode 100644 index 0000000..478312f --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_sober.txt @@ -0,0 +1,2 @@ +n'a pas encore bu +est actuellement sobre diff --git a/priv/default_irc.txt/alcoolog.user_sober_rising.txt b/priv/default_irc.txt/alcoolog.user_sober_rising.txt new file mode 100644 index 0000000..202013d --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_sober_rising.txt @@ -0,0 +1 @@ +commence à peine… santé! diff --git a/priv/default_irc.txt/alcoolog.user_tooghigh.txt b/priv/default_irc.txt/alcoolog.user_tooghigh.txt new file mode 100644 index 0000000..0064b89 --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_tooghigh.txt @@ -0,0 +1,2 @@ +est totalement paitai +est bourrraiiiiiddeeee diff --git a/priv/default_irc.txt/alcoolog.user_toohigh_rising.txt b/priv/default_irc.txt/alcoolog.user_toohigh_rising.txt new file mode 100644 index 0000000..520c89c --- /dev/null +++ b/priv/default_irc.txt/alcoolog.user_toohigh_rising.txt @@ -0,0 +1,2 @@ +est totalement bourraide +est raiiiideeeeeee |