Jump to content

  •  

Bug Tracker Migration

June 3rd
Good news everyone! The staff has decided that it is time to slowly kill off this Bug Tracker. We will begin the process of slowly migrating from this Bug Tracker over to our Github Issues which can be found here: https://github.com/HerculesWS/Hercules/issues

Over the next couple of days, I will be closing off any opportunity to create new reports. However, I still will keep the opportunity to reply to existing Bug Reports. Doing this will allow us to slowly fix any bug reports we have listed here so that we can easily migrate over to our Issue Tracker.

Update - June 7th 2015: Creating new bug posts has been disabled. Please use our https://github.com/HerculesWS/Hercules/issues tracker to post bugs. Users are still able to reply to existing bug posts.

- Administration

Issue Information

  • #007769

  • 0 - None Assigned

  • Duplicate

Issue Confirmations

  • Yes (2)No (0)
Photo

Tatacho Card effect

Posted by kyeme on 15 October 2013 - 05:39 PM

Reduce 20% damage from Neutral Property Monsters.
Posted Image
The code says reduce to neutral attack? Like Asura Strike and other neutral attack. Is this correct?
4442,Tatacho_Card,Tatacho Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5; },{},{}


But in Deviling Card say:
Reduce/Resistance or Tolerance to Neutral Property Attack.

is there a difference between a neutral attack and a neutral monster?
Just asking :)

item Tatacho_Card
event OnStartEquip:
  SubDamage_Property User PROPERTY_Nothing 20
  AddDamage_Property Target PROPERTY_Nothing 5


item Deviling_Card
event OnStartEquip:
  AddAttrTolerace PROPERTY_Nothing 50
  SubAttrTolerace PROPERTY_Poison 50
  SubAttrTolerace PROPERTY_Saint 50
  SubAttrTolerace PROPERTY_Darkness 50
  SubAttrTolerace PROPERTY_Telekinesis 50
  SubAttrTolerace PROPERTY_Undead 50
  SubAttrTolerace PROPERTY_Water 50
  SubAttrTolerace PROPERTY_Ground 50
  SubAttrTolerace PROPERTY_Fire 50
  SubAttrTolerace PROPERTY_Wind 50
return


as it states above that tatacho affects the overall damage from a user/target neutral damage while deviling modifies elemental modifier for neutral...

:meow:

changed status to: Working as Intended

changed status to: New

Confirming on Aegis Server, the "Tatacho Card" only works on neutral race monsters, not from neutral skills or neutral attack of players

Sir SubDamage_Property = bonus2 bAddRace ( http://herc.ws/board...nus/#entry53956 )

But our Tatacho Card is
{
	Id: 4442
	AegisName: "Tatacho_Card"
	Name: "Tatacho Card"
	Type: 6
	Buy: 20
	Weight: 10
	Loc: 32
	Script: <"
		bonus2 bSubEle,Ele_Neutral,20;
		bonus2 bAddEle,Ele_Neutral,5;
	">
},


then how about the other cards? they should be refer to monster element too

4443 Aqua Elemental Card - Water
4444 Draco Card - Earth
4445 Luciola Vespa Card - Wind
4447 Centipede Card - Poison
4448 Cornus Card - Holy
4449 Dark Shadow Card - Shadow

changed status to: Confirmed

so i read this
https://github.com/r...hena/issues/404

this effect only work on monster but not on player?

so i read this
https://github.com/r...hena/issues/404

this effect only work on monster but not on player?

Yes
item Draco_Card
	event OnStartEquip:		
		SubDamage_Property User PROPERTY_Ground 20
		AddDamage_Property Target PROPERTY_Ground 5
	event OnFinishEquip:		
		AddDamage_Property User PROPERTY_Ground 20
		SubDamage_Property Target PROPERTY_Ground 5
	return


Is there even a script that can do this? Cause it doesn't looks like it.

This need a new script,
i hope Malufett working on it, on his "RE thingy"

This need a new script,
i hope Malufett working on it, on his "RE thingy"

what we need is a total revamp of the item script bonuses, to match up with aegis item script bonuses..

:meow:

There are some other things that can't be done as far as a I know.

There's a hat that autocasts Lex Aeterna upon damaging a target with Heal but the only current script supporting something similar is bAutoSpellOnSkill and there's no way to distinguish between a supportive and offensive heal.

Another equip that need to changed :
2684 Ring_Of_Wind
5508 Shark_Hat
5509 Sting_Hat
5593 K_Rabbit_Bonnet
15008 Flame_Sprits_Armor__

changed status to: Duplicate