Skip to content

Commit 1554e3b

Browse files
buff ghimighoul coin
1 parent 8ca6e70 commit 1554e3b

9 files changed

Lines changed: 28 additions & 24 deletions

File tree

app/core/mini-game.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@ export class MiniGame {
124124
const x =
125125
this.centerX +
126126
Math.cos(t + (Math.PI * 2 * item.index) / this.items!.size) *
127-
CAROUSEL_RADIUS_X
127+
CAROUSEL_RADIUS_X
128128
const y =
129129
this.centerY +
130130
Math.sin(t + (Math.PI * 2 * item.index) / this.items!.size) *
131-
CAROUSEL_RADIUS_Y
131+
CAROUSEL_RADIUS_Y
132132
Body.setPosition(itemBody, { x, y })
133133
}
134134
}
@@ -142,11 +142,11 @@ export class MiniGame {
142142
const x =
143143
this.centerX +
144144
Math.cos(t + (Math.PI * 2 * portal.index) / this.portals!.size) *
145-
CAROUSEL_RADIUS_X
145+
CAROUSEL_RADIUS_X
146146
const y =
147147
this.centerY +
148148
Math.sin(t + (Math.PI * 2 * portal.index) / this.portals!.size) *
149-
CAROUSEL_RADIUS_Y
149+
CAROUSEL_RADIUS_Y
150150
Body.setPosition(portalBody, { x, y })
151151
}
152152
}
@@ -300,11 +300,11 @@ export class MiniGame {
300300
avatar.targetX =
301301
this.centerX +
302302
Math.cos((2 * Math.PI * i) / this.alivePlayers.length) *
303-
CAROUSEL_RADIUS_X
303+
CAROUSEL_RADIUS_X
304304
avatar.targetY =
305305
this.centerY +
306306
Math.sin((2 * Math.PI * i) / this.alivePlayers.length) *
307-
CAROUSEL_RADIUS_Y
307+
CAROUSEL_RADIUS_Y
308308
}
309309

310310
this.avatars!.set(avatar.id, avatar)
@@ -484,16 +484,16 @@ export class MiniGame {
484484
portal.x +
485485
Math.cos(
486486
this.timeElapsed * SYMBOL_ROTATION_SPEED +
487-
(Math.PI * 2 * symbol.index) / symbols.length
487+
(Math.PI * 2 * symbol.index) / symbols.length
488488
) *
489-
25
489+
25
490490
symbol.y =
491491
portal.y +
492492
Math.sin(
493493
this.timeElapsed * SYMBOL_ROTATION_SPEED +
494-
(Math.PI * 2 * symbol.index) / symbols.length
494+
(Math.PI * 2 * symbol.index) / symbols.length
495495
) *
496-
25
496+
25
497497
})
498498
}
499499
})
@@ -841,7 +841,7 @@ export class MiniGame {
841841
giveRandomEgg(player, false)
842842
} else if (item.name === Item.GIMMIGHOUL_COIN) {
843843
player.items.push(item.name)
844-
player.addMoney(3, true, null)
844+
player.addMoney(5, true, null)
845845
} else if (isIn(SynergyGems, item.name)) {
846846
const type = SynergyGivenByGem[item.name]
847847
player.bonusSynergies.set(

app/public/dist/client/changelog/patch-6.9.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,23 +97,27 @@
9797

9898
## Tools
9999

100-
- Partial revert of Electrizier: base SPEED: 0 → 10
100+
- Partial revert of ELECTIRIZER: base SPEED: 0 → 10
101101
- Removed 30 base SPEED from Surfboard
102102

103103
## Dishes
104104

105105
> Nutritious egg requires an Ultra tier 2 so we thought it deserved to be a bit stronger.
106106
107-
- Buff Nutritious Egg: ~~30%~~ → 50% bonus ATK, DEF and SPE_DEF
107+
- Buff NUTRITIOUS_EGG: ~~30%~~ → 50% bonus ATK, DEF and SPE_DEF
108108

109-
## Misc
109+
## Town Items
110110

111-
- Added visual effects for support items on adjacent positions
112-
- Added visual effect for Loaded dice second hit
113-
- Nerf Mission Order: Diversify: reach 8 → 9 different active synergies
111+
- Nerf MISSION_ORDER_GREEN: reach 8 → 9 different active synergies
114112

115113
> I can't nerf the quality of community guides unfortunately, so I have to make this mission more difficult despite being already hard for beginners, in order to keep it balanced for high elo players.
116114
115+
- Buff GIMMIGHOUL_COIN: +3 GOLD → +5 GOLD when obtained
116+
117+
## Misc
118+
119+
- Added visual effects for support items on adjacent positions
120+
- Added visual effect for Loaded dice second hit
117121

118122
# Changes to Gameplay
119123

app/public/dist/client/locales/de/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2622,7 +2622,7 @@
26222622
"RAINBOW_SWIRL_FLAVOR": "Gebacken mit PSYCHIC AMORPHOUS BABY LIGHT Verbündeten. Benutze es auf $t(pkm.MILCERY), um es zu $t(pkm.ALCREMIE_RAINBOW_SWIRL) zu entwickeln. $t(passive_description.RAINBOW_SWIRL_CREAM)",
26232623
"EGG_FOR_SELL": "Ein Ei, welches bei Chansey's Daycare verkauft wurde",
26242624
"AMULET_COIN": "+1 Gold jedes Mal, wenn der Besitzer einen Gegner niederschlägt.\nReduziert die maximale Zinsen-Wert um 10 GOLD.",
2625-
"GIMMIGHOUL_COIN": "+3 Gold wenn erhalten.\nErhöhe den maximalen Zinsen-Wert um 10 GOLD.",
2625+
"GIMMIGHOUL_COIN": "+5 Gold wenn erhalten.\nErhöhe den maximalen Zinsen-Wert um 10 GOLD.",
26262626
"COIN": "Eine alte rostige Münze. +1 GOLD beim ausgraben.",
26272627
"NUGGET": "Ein kleines Goldnugget. +3 GOLD beim ausgraben.",
26282628
"BIG_NUGGET": "Ein großes Goldnugget. +10 GOLD beim ausgraben.",

app/public/dist/client/locales/en/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3048,7 +3048,7 @@
30483048
"RAINBOW_SWIRL_FLAVOR": "Baked with PSYCHIC AMORPHOUS BABY LIGHT allies. Use it on $t(pkm.MILCERY) to evolve into a $t(pkm.ALCREMIE_RAINBOW_SWIRL). $t(passive_description.RAINBOW_SWIRL_CREAM)",
30493049
"EGG_FOR_SELL": "An Egg sold at Chansey's Daycare",
30503050
"AMULET_COIN": "+1 GOLD each time the holder knocks out an opponent.\nReduce max interest cap by 10 GOLD.",
3051-
"GIMMIGHOUL_COIN": "+3 GOLD when obtained.\nIncrease max interest cap by 10 GOLD.",
3051+
"GIMMIGHOUL_COIN": "+5 GOLD when obtained.\nIncrease max interest cap by 10 GOLD.",
30523052
"COIN": "An old rusty coin. +1 GOLD when obtained.",
30533053
"NUGGET": "A small gold nugget. +3 GOLD when obtained.",
30543054
"BIG_NUGGET": "A big gold nugget. +10 GOLD when obtained.",

app/public/dist/client/locales/es/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2798,7 +2798,7 @@
27982798
"RAINBOW_SWIRL_FLAVOR": "Horneado con aliados de tipo PSYCHIC AMORPHOUS BABY LIGHT. Úsalo con $t(pkm.MILCERY) para evolucionarlo a $t(pkm.ALCREMIE_RAINBOW_SWIRL). $t(passive_description.RAINBOW_SWIRL_CREAM)",
27992799
"EGG_FOR_SELL": "Un Huevo vendido en la guardería de Chansey",
28002800
"AMULET_COIN": "+1 de oro cada vez que el poseedor derriba a un oponente.\nReduce el máximo de interés en 10 de GOLD.",
2801-
"GIMMIGHOUL_COIN": "+3 de GOLD cuando se obtiene.\nIncrementa el máximo de interés en 10 de GOLD.",
2801+
"GIMMIGHOUL_COIN": "+5 de GOLD cuando se obtiene.\nIncrementa el máximo de interés en 10 de GOLD.",
28022802
"COIN": "Una moneda antigua oxidada. +1 de GOLD cuando la consigues.",
28032803
"NUGGET": "Una pequeña pepita de oro. +3 GOLD cuando la consigues.",
28042804
"BIG_NUGGET": "Una gran pepita de oro. +10 GOLD cuando la consigues.",

app/public/dist/client/locales/fr/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3003,7 +3003,7 @@
30033003
"RAINBOW_SWIRL_FLAVOR": "Préparé avec des alliés PSYCHIC AMORPHOUS BABY LIGHT. Utilisez-la sur $t(pkm.MILCERY) pour évoluer en $t(pkm.ALCREMIE_RAINBOW_SWIRL). $t(passive_description.RAINBOW_SWIRL_CREAM)",
30043004
"EGG_FOR_SELL": "Un EGG_FOR_SELL vendu à la Garderie $t(pkm.CHANSEY)",
30053005
"AMULET_COIN": "+1 GOLD à chaque fois que le porteur met KO un ennemi.\nRéduit le plafond d'intérêt maximum de 10 GOLD.",
3006-
"GIMMIGHOUL_COIN": "+3 GOLD lorsque obtenu.\nAugmente le plafond d'intérêt maximum de 10 GOLD.",
3006+
"GIMMIGHOUL_COIN": "+5 GOLD lorsque obtenu.\nAugmente le plafond d'intérêt maximum de 10 GOLD.",
30073007
"COIN": "Une vieille pièce rouillée. +1 GOLD une fois obtenue.",
30083008
"NUGGET": "Une petite pépite d'or. +3 GOLD une fois obtenue.",
30093009
"BIG_NUGGET": "Une grosse pépite d'or. +10 GOLD une fois obtenue.",

app/public/dist/client/locales/it/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3000,7 +3000,7 @@
30003000
"RAINBOW_SWIRL_FLAVOR": "Ottenuto da alleati PSYCHIC AMORPHOUS BABY LIGHT. Usalo su $t(pkm.MILCERY) per evolverlo in $t(pkm.ALCREMIE_RAINBOW_SWIRL). $t(passive_description.RAINBOW_SWIRL_CREAM)",
30013001
"EGG_FOR_SELL": "Un Uovo venduto dall'Allevamento di Chansey",
30023002
"AMULET_COIN": "+1 GOLD ogni volta che il possessore mette KO un avversario",
3003-
"GIMMIGHOUL_COIN": "+3 GOLD quando la ottieni.\nIl tuo limite di denaro che frutta interessi è aumentato di 10 GOLD.",
3003+
"GIMMIGHOUL_COIN": "+5 GOLD quando la ottieni.\nIl tuo limite di denaro che frutta interessi è aumentato di 10 GOLD.",
30043004
"COIN": "Una moneta vecchia e arrugginita. +1 GOLD quando la ottieni.",
30053005
"NUGGET": "Una pepita ridicola che non volevo nemmeno. +3 GOLD quando la ottieni",
30063006
"BIG_NUGGET": "Una pepita veramente portentosa. +10 GOLD quando la ottieni.",

app/public/dist/client/locales/ko/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2989,7 +2989,7 @@
29892989
"RAINBOW_SWIRL_FLAVOR": "PSYCHIC AMORPHOUS BABY LIGHT 아군들이 제작. $t(pkm.MILCERY) 에게 사용하여 $t(pkm.ALCREMIE_RAINBOW_SWIRL) 로 진화. $t(passive_description.RAINBOW_SWIRL_CREAM)",
29902990
"EGG_FOR_SELL": "럭키의 키우미집에서 판매하는 알",
29912991
"AMULET_COIN": "장착자가 상대 포켓몬을 기절시킬 시 매 번 +1 GOLD",
2992-
"GIMMIGHOUL_COIN": "획득하며 최대 이자를 1 증가시킨다.",
2992+
"GIMMIGHOUL_COIN": "획득 시 +5 GOLD. 획득하며 최대 이자를 1 증가시킨다.",
29932993
"COIN": "오래된 녹슨 코인이다. 획득 시 +1 GOLD를 얻는다.",
29942994
"NUGGET": "작은 금구슬이다. 획득 시 +3 GOLD를 얻는다.",
29952995
"BIG_NUGGET": "큰 금구슬이다. 획득 시 +10 GOLD를 얻는다.",

app/public/dist/client/locales/zh/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3048,7 +3048,7 @@
30483048
"RAINBOW_SWIRL_FLAVOR": "与PSYCHIC、AMORPHOUS、BABY、LIGHT宝可梦一同制作的调味料。对$t(pkm.MILCERY)使用,使之进化为$t(pkm.ALCREMIE_RAINBOW_SWIRL)。$t(passive_description.RAINBOW_SWIRL_CREAM)",
30493049
"EGG_FOR_SELL": "一枚吉利蛋育蛋铺出售的宝可梦的蛋",
30503050
"AMULET_COIN": "携带者每次击倒敌方宝可梦,玩家获得1 GOLD。利息收入上限-1。",
3051-
"GIMMIGHOUL_COIN": "拾取时立即获得3 GOLD。利息收入上限+1。",
3051+
"GIMMIGHOUL_COIN": "拾取时立即获得5 GOLD。利息收入上限+1。",
30523052
"COIN": "一枚老旧的掉色金币。拾取时立即获得1 GOLD。",
30533053
"NUGGET": "一枚小小的纯金制成的珠子。拾取时立即获得3 GOLD。",
30543054
"BIG_NUGGET": "一枚闪着金光的大珠子。拾取时立即获得10 GOLD。",

0 commit comments

Comments
 (0)