Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="utf-8" ?>
<Patch>
<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="SRTSMkII"]/costList</xpath>
<value>
<costList>
<Plasteel>1000</Plasteel>
<Steel>5000</Steel>
<ComponentIndustrial>75</ComponentIndustrial>
<ThingDef ParentName="BuildingBase">
<defName>SRTSMkIII</defName>
<label>SRTS Mk.III: Phoenix</label>
<description>The Phoenix offers similar fuel efficiency to the Albatross, but with an increased fuel reserve and carry capacity. Additionally, the Mk.II is harder to kill and uses less materials in its construction at the cost of some advanced chemistry.</description>
<graphicData>
<texPath>SRTSDropShip</texPath>
<graphicClass>Graphic_Multi</graphicClass>
<drawSize>(9,9)</drawSize>
<shadowData>
<volume>(0.1, 0.1, 0.1)</volume>
@Neceros
Neceros / Just the patch
Created August 24, 2019 05:49
Rimcuisine 2.0 Coffee Patch
<!--=========================== Non-Food ==============================-->
<ThingDef Name="RC2_CoffeeBase" ParentName="RC2_PlantBase" Abstract="true">
<label>coffee bush</label>
<description>Coffee! This bean is used the worlds over for its caffeine content and delicious taste (when roasted and brewed). Can only be grown in arid regions.</description>
<statBases>
<MaxHitPoints>80</MaxHitPoints>
<Nutrition>0.15</Nutrition>
</statBases>
<graphicData>
@Neceros
Neceros / ResearchProjects_HP_Power.xml
Created August 22, 2019 05:05
Fixed Higher Power research project
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<ResearchProjectDef>
<defName>HP_AdvancedPower</defName>
<label>advanced power</label>
<description>Allows you to build advanced power buildings.</description>
<baseCost>2500</baseCost>
<techLevel>Industrial</techLevel>
<prerequisites>
@Neceros
Neceros / style.css
Created February 20, 2017 07:52
The best Clearfix
.clearfix {zoom: 1}
.clearfix:after {
content: ".";
clear: both;
display: block;
height: 0;
visibility: hidden;
}
<script>
{% block js %}
$(document).ready(function (e) {
var subjects = {{ subjects|safe }};
var whats = {{ whats|safe }};
var wheres = {{ wheres|safe }};
var extras = {{ extras|safe }};
function generateEvents() {
var events_html = '';
@Neceros
Neceros / view.py
Last active October 3, 2016 09:03
from django.shortcuts import render
from django.views.generic import View
from .models import Event
class EventsList(View):
model = Event
title = 'Events'
@Neceros
Neceros / models.py
Last active October 3, 2016 09:03
How do I get a each field within Event to be random, and not correlate with itself? When I call a new Event I wish each of the fields to have a random entry from the database.
from django.db import models
class Event(models.Model):
subject = models.CharField(max_length=256)
what = models.CharField(max_length=512)
where = models.CharField(max_length=256)
extra = models.CharField(max_length=1024)
def __str__(self):
@Neceros
Neceros / ref.html
Last active March 2, 2022 14:30
HTML5 Cheat Sheet
<!DOCTYPE HTML>
<!-- Tells the browser to render the page using the HTML5 specification -->
<!--
1. HyperText Markup Language : Uses tags to tell the browser how to layout the web page
2. Uniform Resource Locator :
a. http:// is used if data is transfered using the HyperText Transfer Protocol (Common standard of communication between web servers)
b. The domain is the unique name for the server / servers hosting the data
c. The URL ends with the path to the data to be served
d. http://newthinktank.com/html5.html