I thought the OP was moving BOTH abilities to the Telecom tech to completely remove the icon from Computers and place it on another tech. What I'd do is:
And then add your description to an UpdateText file:
Or, you could do as Lee suggested and just place the text in the tech description update statement instead of using a LOC tag.
Code:
UPDATE TechnologyModifiers
SET TechnologyType = 'TECH_TELECOMMUNICATIONS'
WHERE ModifierId = 'TECH_GRANT_SPY';
UPDATE TechnologyModifiers
SET TechnologyType = 'TECH_TELECOMMUNICATIONS'
WHERE ModifierId = 'COMPUTERS_BOOST_ALL_TOURISM';
UPDATE Technologies
SET Description = NULL
WHERE TechnologyType = 'TECH_COMPUTERS';
UPDATE Technologies
SET Description = 'LOC_MY_TECH_TELECOMMUNICATIONS_DESCRIPTION'
WHERE TechnologyType = 'TECH_TELECOMMUNICATIONS';
And then add your description to an UpdateText file:
Code:
INSERT INTO LocalizedText
(Language, Tag, Text)
VALUES ('en_US', 'LOC_MY_TECH_TELECOMMUNICATIONS_DESCRIPTION', 'Grants the ability to construct an additional Spy. +100% [ICON_Tourism] Tourism across your empire.');
Or, you could do as Lee suggested and just place the text in the tech description update statement instead of using a LOC tag.