Firstly you shouldn't mix the old tpt.* and the new lua interface, try not to use the tpt.* stuff.
In your script you first pick a random location anywhere in the 3x3 square surrounding the starting particle, including the location of the starting particle itself (math.random(-1,1) could generate a 0 twice). Then you decrease the life of the starting particle by one if there is a particle at the random location that has the DEADLY propery set.
I suspect that your BTRA has the DEADLY property set and since there is a 1:9 chance that the random location picked will be the location of the BTRA particle itself, there is a 1:9 chance that a BTRA's life will be decremented every frame because it "sees" its own deadlyness. Because a BTRA's life value starts at 100 it would take 900 frames on average for a single BTRA (not surrounded by anything) to die because of its own deadlyness. Would that be right?
The TPT console is a fully functional Lua interpreter, so you can test your Lua expressions by entering them in the console.
If you want to keep your BTRA deadly you can simply skip the decrement if the random location is equal to the starting location, just add and (thatx ~= x or thaty ~= y)
to the first if statement.