diff options
-rw-r--r-- | npc/017-4/refine.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/017-4/refine.txt b/npc/017-4/refine.txt index dddb2e0ef..cb465f5fd 100644 --- a/npc/017-4/refine.txt +++ b/npc/017-4/refine.txt @@ -35,7 +35,7 @@ OnInit: L_Fusus: inventoryplace Iten, 1; mesn; - mesq l("I can fuse an @@ and an @@, besides @@ GP, into 3~6 @@.", getitemlink(CopperIngot), getitemlink(SilkCocoon), 500, getitemlink(Wurtizite)); + mesq l("I can fuse an @@ and 20 @@, besides @@ GP, into 3~5 @@.", getitemlink(CopperIngot), getitemlink(SilkCocoon), 500, getitemlink(Wurtizite)); mesc l("5 @@ can be fused in a @@", getitemlink(Wurtizite), getitemlink(Graphene)); mesc l("5 @@ can be fused in a @@", getitemlink(Graphene), getitemlink(Arcanum)); select @@ -48,10 +48,10 @@ L_Fusus: case 4: close; case 1: - if (!transcheck(CopperIngot, 1, SilkCocoon, 1)) + if (!transcheck(CopperIngot, 1, SilkCocoon, 20)) close; Zeny -= 500; - getitem Wurtizite, any(3,4,4,5,6); + getitem Wurtizite, any(3,3,4,4,4,5); // 3: ~33%. 4: =50%. 5, 6: ~17% each break; case 2: delitem Wurtizite, 5; |